Files
ac-decomp/tools/tmp.py
T
2024-07-27 21:44:33 -04:00

5372 lines
192 KiB
Python

import sys
from ruamel.yaml import YAML
from ruamel.yaml.comments import CommentedSeq
from ruamel.yaml import scalarint
import re
data_int = int("0x8064D500", 16)
# def text_to_yaml(test_lines):
# yaml_dict = {}
# for line in test_lines:
# parts = line.strip().split()
# if len(parts) != 3:
# continue
# offset = parts[0]
# size = parts[1]
# name = parts[2]
# offset_int = int(offset, 16)
# size_int = int(size, 16)
# addrs = CommentedSeq()
# addrs.fa.set_flow_style()
# addrs.append(scalarint.HexCapsInt(data_int + offset_int))
# addrs.append(scalarint.HexCapsInt(data_int + offset_int + size_int))
# if name.endswith(("_tex", "_txt", "_pal")):
# key = f"npc/tex/{name}"
# elif name.endswith("_v"):
# key = f"npc/mdl/{name}"
# else:
# continue
# yaml_dict[key] = {"addrs": addrs}
# if name.endswith("_pal"):
# yaml_dict[key]["type"] = "pal16"
# elif name.endswith("_v"):
# yaml_dict[key]["type"] = "vtx"
# yaml = YAML()
# yaml.default_flow_style = False
# output = yaml.dump(yaml_dict, sys.stdout)
# return output
def text_to_yaml(test_lines):
yaml_dict = {}
current_tu = None
current_tu_path = None
current_tu_beg = 0
current_tu_end = 0
for line in test_lines:
parts = line.strip().split()
if len(parts) != 3:
if current_tu != None:
addrs = CommentedSeq()
addrs.fa.set_flow_style()
addrs.append(scalarint.HexCapsInt(current_tu_beg))
addrs.append(scalarint.HexCapsInt(current_tu_end))
yaml_dict[current_tu_path] = {"addrs": addrs}
current_tu = None
current_tu_beg = 0
current_tu_end = 0
continue
offset = parts[0]
size = parts[1]
name = parts[2]
offset_int = int(offset, 16)
size_int = int(size, 16)
if current_tu == None:
# print(name, re.search("^(\w+_\d+)", name))
current_tu = re.search("^(\w+_\d+)", name).group()
current_tu_beg = data_int + offset_int
if name.endswith(("_tex", "_txt", "_pal")):
current_tu_path = f"data/npc/tex/{name}.c"
elif name.endswith("_v"):
current_tu_path = f"data/npc/mdl/{name}.c"
current_tu_end = data_int + offset_int + size_int
if current_tu != None:
addrs = CommentedSeq()
addrs.fa.set_flow_style()
addrs.append(scalarint.HexCapsInt(current_tu_beg))
addrs.append(scalarint.HexCapsInt(current_tu_end))
yaml_dict[current_tu_path] = {"addrs": addrs}
yaml = YAML()
yaml.default_flow_style = False
output = yaml.dump(yaml_dict, sys.stdout)
return output
# Test lines
test_lines = [
"00092ea0 001a50 bev_1_v",
"000948f0 000260 head_bev_model",
"00094b50 000088 Rarm2_bev_model",
"00094bd8 000078 Rarm1_bev_model",
"00094c50 000088 Larm2_bev_model",
"00094cd8 000078 Larm1_bev_model",
"00094d50 000110 chest_bev_model",
"00094e60 000078 tail1_bev_model",
"00094ed8 000088 tail2_bev_model",
"00094f60 000080 Rfoot2_bev_model",
"00094fe0 000058 Rfoot1_bev_model",
"00095038 000080 Lfoot2_bev_model",
"000950b8 000058 Lfoot1_bev_model",
"00095110 000080 base_bev_model",
"00095190 000138 cKF_je_r_bev_1_tbl",
"000952c8 000008 cKF_bs_r_bev_1",
"",
"000952e0 000020 bev_1_pal",
"00095300 000100 bev_1_eye1_TA_tex_txt",
"00095400 000100 bev_1_eye2_TA_tex_txt",
"00095500 000100 bev_1_eye3_TA_tex_txt",
"00095600 000100 bev_1_eye4_TA_tex_txt",
"00095700 000100 bev_1_eye5_TA_tex_txt",
"00095800 000100 bev_1_eye6_TA_tex_txt",
"00095900 000100 bev_1_eye7_TA_tex_txt",
"00095a00 000100 bev_1_eye8_TA_tex_txt",
"00095b00 000500 bev_1_tmem_txt",
"",
"00096338 001730 ant_1_v",
"00097a68 0001b0 head_ant_model",
"00097c18 000098 mouth_ant_model",
"00097cb0 000088 Rarm2_ant_model",
"00097d38 000078 Rarm1_ant_model",
"00097db0 000088 Larm2_ant_model",
"00097e38 000078 Larm1_ant_model",
"00097eb0 0000b0 chest_ant_model",
"00097f60 0000b0 tail1_ant_model",
"00098010 000080 Rfoot2_ant_model",
"00098090 0000a8 Rfoot1_ant_model",
"00098138 000080 Lfoot2_ant_model",
"000981b8 0000a8 Lfoot1_ant_model",
"00098260 000070 base_ant_model",
"000982d0 000138 cKF_je_r_ant_1_tbl",
"00098408 000008 cKF_bs_r_ant_1",
"",
"00098420 000020 ant_1_pal",
"00098440 000100 ant_1_eye1_TA_tex_txt",
"00098540 000100 ant_1_eye2_TA_tex_txt",
"00098640 000100 ant_1_eye3_TA_tex_txt",
"00098740 000100 ant_1_eye4_TA_tex_txt",
"00098840 000100 ant_1_eye5_TA_tex_txt",
"00098940 000100 ant_1_eye6_TA_tex_txt",
"00098a40 000100 ant_1_eye7_TA_tex_txt",
"00098b40 000100 ant_1_eye8_TA_tex_txt",
"00098c40 000500 ant_1_tmem_txt",
"",
"00099140 000020 ant_2_pal",
"00099160 000100 ant_2_eye1_TA_tex_txt",
"00099260 000100 ant_2_eye2_TA_tex_txt",
"00099360 000100 ant_2_eye3_TA_tex_txt",
"00099460 000100 ant_2_eye4_TA_tex_txt",
"00099560 000100 ant_2_eye5_TA_tex_txt",
"00099660 000100 ant_2_eye6_TA_tex_txt",
"00099760 000100 ant_2_eye7_TA_tex_txt",
"00099860 000100 ant_2_eye8_TA_tex_txt",
"00099960 000500 ant_2_tmem_txt",
"",
"00099e60 000020 ant_3_pal",
"00099e80 000100 ant_3_eye1_TA_tex_txt",
"00099f80 000100 ant_3_eye2_TA_tex_txt",
"0009a080 000100 ant_3_eye3_TA_tex_txt",
"0009a180 000100 ant_3_eye4_TA_tex_txt",
"0009a280 000100 ant_3_eye5_TA_tex_txt",
"0009a380 000100 ant_3_eye6_TA_tex_txt",
"0009a480 000100 ant_3_eye7_TA_tex_txt",
"0009a580 000100 ant_3_eye8_TA_tex_txt",
"0009a680 000500 ant_3_tmem_txt",
"",
"0009ab80 000020 ant_4_pal",
"0009aba0 000100 ant_4_eye1_TA_tex_txt",
"0009aca0 000100 ant_4_eye2_TA_tex_txt",
"0009ada0 000100 ant_4_eye3_TA_tex_txt",
"0009aea0 000100 ant_4_eye4_TA_tex_txt",
"0009afa0 000100 ant_4_eye5_TA_tex_txt",
"0009b0a0 000100 ant_4_eye6_TA_tex_txt",
"0009b1a0 000100 ant_4_eye7_TA_tex_txt",
"0009b2a0 000100 ant_4_eye8_TA_tex_txt",
"0009b3a0 000500 ant_4_tmem_txt",
"",
"0009b8a0 000020 ant_5_pal",
"0009b8c0 000100 ant_5_eye1_TA_tex_txt",
"0009b9c0 000100 ant_5_eye2_TA_tex_txt",
"0009bac0 000100 ant_5_eye3_TA_tex_txt",
"0009bbc0 000100 ant_5_eye4_TA_tex_txt",
"0009bcc0 000100 ant_5_eye5_TA_tex_txt",
"0009bdc0 000100 ant_5_eye6_TA_tex_txt",
"0009bec0 000100 ant_5_eye7_TA_tex_txt",
"0009bfc0 000100 ant_5_eye8_TA_tex_txt",
"0009c0c0 000500 ant_5_tmem_txt",
"",
"0009c5c0 001a50 wls_1_v",
"0009e010 0001a0 head_wls_model",
"0009e1b0 000060 mouth_wls_model",
"0009e210 0000e8 Rarm2_wls_model",
"0009e2f8 000078 Rarm1_wls_model",
"0009e370 000088 Larm2_wls_model",
"0009e3f8 000078 Larm1_wls_model",
"0009e470 000218 chest_wls_model",
"0009e688 000088 Rfoot3_wls_model",
"0009e710 000078 Rfoot2_wls_model",
"0009e788 000058 Rfoot1_wls_model",
"0009e7e0 000088 Lfoot3_wls_model",
"0009e868 000078 Lfoot2_wls_model",
"0009e8e0 000058 Lfoot1_wls_model",
"0009e938 000078 base_wls_model",
"0009e9b0 000138 cKF_je_r_wls_1_tbl",
"0009eae8 000008 cKF_bs_r_wls_1",
"",
"0009eb00 000020 wls_1_pal",
"0009eb20 000100 wls_1_eye1_TA_tex_txt",
"0009ec20 000100 wls_1_eye2_TA_tex_txt",
"0009ed20 000100 wls_1_eye3_TA_tex_txt",
"0009ee20 000100 wls_1_eye4_TA_tex_txt",
"0009ef20 000100 wls_1_eye5_TA_tex_txt",
"0009f020 000100 wls_1_eye6_TA_tex_txt",
"0009f120 000100 wls_1_eye7_TA_tex_txt",
"0009f220 000100 wls_1_eye8_TA_tex_txt",
"0009f320 000780 wls_1_tmem_txt",
"",
"000a1b78 001720 bea_1_v",
"000a3298 000158 head_bea_model",
"000a33f0 000080 Rarm2_bea_model",
"000a3470 000080 Rarm1_bea_model",
"000a34f0 000080 Larm2_bea_model",
"000a3570 000080 Larm1_bea_model",
"000a35f0 0000b8 chest_bea_model",
"000a36a8 000088 tail1_bea_model",
"000a3730 000088 Rfoot2_bea_model",
"000a37b8 000088 Rfoot1_bea_model",
"000a3840 000088 Lfoot2_bea_model",
"000a38c8 000088 Lfoot1_bea_model",
"000a3950 0000a0 base_bea_model",
"000a39f0 000138 cKF_je_r_bea_1_tbl",
"000a3b28 000008 cKF_bs_r_bea_1",
"",
"000a3b40 000020 bea_1_pal",
"000a3b60 000100 bea_1_eye1_TA_tex_txt",
"000a3c60 000100 bea_1_eye2_TA_tex_txt",
"000a3d60 000100 bea_1_eye3_TA_tex_txt",
"000a3e60 000100 bea_1_eye4_TA_tex_txt",
"000a3f60 000100 bea_1_eye5_TA_tex_txt",
"000a4060 000100 bea_1_eye6_TA_tex_txt",
"000a4160 000100 bea_1_eye7_TA_tex_txt",
"000a4260 000100 bea_1_eye8_TA_tex_txt",
"000a4360 000100 bea_1_mouth1_TA_tex_txt",
"000a4460 000100 bea_1_mouth2_TA_tex_txt",
"000a4560 000100 bea_1_mouth3_TA_tex_txt",
"000a4660 000100 bea_1_mouth4_TA_tex_txt",
"000a4760 000100 bea_1_mouth5_TA_tex_txt",
"000a4860 000100 bea_1_mouth6_TA_tex_txt",
"000a4960 000400 bea_1_tmem_txt",
"",
"000a4d60 000020 bea_2_pal",
"000a4d80 000100 bea_2_eye1_TA_tex_txt",
"000a4e80 000100 bea_2_eye2_TA_tex_txt",
"000a4f80 000100 bea_2_eye3_TA_tex_txt",
"000a5080 000100 bea_2_eye4_TA_tex_txt",
"000a5180 000100 bea_2_eye5_TA_tex_txt",
"000a5280 000100 bea_2_eye6_TA_tex_txt",
"000a5380 000100 bea_2_eye7_TA_tex_txt",
"000a5480 000100 bea_2_eye8_TA_tex_txt",
"000a5580 000100 bea_2_mouth1_TA_tex_txt",
"000a5680 000100 bea_2_mouth2_TA_tex_txt",
"000a5780 000100 bea_2_mouth3_TA_tex_txt",
"000a5880 000100 bea_2_mouth4_TA_tex_txt",
"000a5980 000100 bea_2_mouth5_TA_tex_txt",
"000a5a80 000100 bea_2_mouth6_TA_tex_txt",
"000a5b80 000400 bea_2_tmem_txt",
"",
"000a5f80 000020 bea_3_pal",
"000a5fa0 000100 bea_3_eye1_TA_tex_txt",
"000a60a0 000100 bea_3_eye2_TA_tex_txt",
"000a61a0 000100 bea_3_eye3_TA_tex_txt",
"000a62a0 000100 bea_3_eye4_TA_tex_txt",
"000a63a0 000100 bea_3_eye5_TA_tex_txt",
"000a64a0 000100 bea_3_eye6_TA_tex_txt",
"000a65a0 000100 bea_3_eye7_TA_tex_txt",
"000a66a0 000100 bea_3_eye8_TA_tex_txt",
"000a67a0 000100 bea_3_mouth1_TA_tex_txt",
"000a68a0 000100 bea_3_mouth2_TA_tex_txt",
"000a69a0 000100 bea_3_mouth3_TA_tex_txt",
"000a6aa0 000100 bea_3_mouth4_TA_tex_txt",
"000a6ba0 000100 bea_3_mouth5_TA_tex_txt",
"000a6ca0 000100 bea_3_mouth6_TA_tex_txt",
"000a6da0 000400 bea_3_tmem_txt",
"",
"000a71a0 000020 bea_5_pal",
"000a71c0 000100 bea_5_eye1_TA_tex_txt",
"000a72c0 000100 bea_5_eye2_TA_tex_txt",
"000a73c0 000100 bea_5_eye3_TA_tex_txt",
"000a74c0 000100 bea_5_eye4_TA_tex_txt",
"000a75c0 000100 bea_5_eye5_TA_tex_txt",
"000a76c0 000100 bea_5_eye6_TA_tex_txt",
"000a77c0 000100 bea_5_eye7_TA_tex_txt",
"000a78c0 000100 bea_5_eye8_TA_tex_txt",
"000a79c0 000100 bea_5_mouth1_TA_tex_txt",
"000a7ac0 000100 bea_5_mouth2_TA_tex_txt",
"000a7bc0 000100 bea_5_mouth3_TA_tex_txt",
"000a7cc0 000100 bea_5_mouth4_TA_tex_txt",
"000a7dc0 000100 bea_5_mouth5_TA_tex_txt",
"000a7ec0 000100 bea_5_mouth6_TA_tex_txt",
"000a7fc0 000400 bea_5_tmem_txt",
"",
"000a83c0 000020 bea_6_pal",
"000a83e0 000100 bea_6_eye1_TA_tex_txt",
"000a84e0 000100 bea_6_eye2_TA_tex_txt",
"000a85e0 000100 bea_6_eye3_TA_tex_txt",
"000a86e0 000100 bea_6_eye4_TA_tex_txt",
"000a87e0 000100 bea_6_eye5_TA_tex_txt",
"000a88e0 000100 bea_6_eye6_TA_tex_txt",
"000a89e0 000100 bea_6_eye7_TA_tex_txt",
"000a8ae0 000100 bea_6_eye8_TA_tex_txt",
"000a8be0 000100 bea_6_mouth1_TA_tex_txt",
"000a8ce0 000100 bea_6_mouth2_TA_tex_txt",
"000a8de0 000100 bea_6_mouth3_TA_tex_txt",
"000a8ee0 000100 bea_6_mouth4_TA_tex_txt",
"000a8fe0 000100 bea_6_mouth5_TA_tex_txt",
"000a90e0 000100 bea_6_mouth6_TA_tex_txt",
"000a91e0 000400 bea_6_tmem_txt",
"",
"000a95e0 000020 bea_7_pal",
"000a9600 000100 bea_7_eye1_TA_tex_txt",
"000a9700 000100 bea_7_eye2_TA_tex_txt",
"000a9800 000100 bea_7_eye3_TA_tex_txt",
"000a9900 000100 bea_7_eye4_TA_tex_txt",
"000a9a00 000100 bea_7_eye5_TA_tex_txt",
"000a9b00 000100 bea_7_eye6_TA_tex_txt",
"000a9c00 000100 bea_7_eye7_TA_tex_txt",
"000a9d00 000100 bea_7_eye8_TA_tex_txt",
"000a9e00 000100 bea_7_mouth1_TA_tex_txt",
"000a9f00 000100 bea_7_mouth2_TA_tex_txt",
"000aa000 000100 bea_7_mouth3_TA_tex_txt",
"000aa100 000100 bea_7_mouth4_TA_tex_txt",
"000aa200 000100 bea_7_mouth5_TA_tex_txt",
"000aa300 000100 bea_7_mouth6_TA_tex_txt",
"000aa400 000400 bea_7_tmem_txt",
"",
"000aa800 000020 bea_8_pal",
"000aa820 000100 bea_8_eye1_TA_tex_txt",
"000aa920 000100 bea_8_eye2_TA_tex_txt",
"000aaa20 000100 bea_8_eye3_TA_tex_txt",
"000aab20 000100 bea_8_eye4_TA_tex_txt",
"000aac20 000100 bea_8_eye5_TA_tex_txt",
"000aad20 000100 bea_8_eye6_TA_tex_txt",
"000aae20 000100 bea_8_eye7_TA_tex_txt",
"000aaf20 000100 bea_8_eye8_TA_tex_txt",
"000ab020 000100 bea_8_mouth1_TA_tex_txt",
"000ab120 000100 bea_8_mouth2_TA_tex_txt",
"000ab220 000100 bea_8_mouth3_TA_tex_txt",
"000ab320 000100 bea_8_mouth4_TA_tex_txt",
"000ab420 000100 bea_8_mouth5_TA_tex_txt",
"000ab520 000100 bea_8_mouth6_TA_tex_txt",
"000ab620 000400 bea_8_tmem_txt",
"",
"000aba20 000020 bea_9_pal",
"000aba40 000100 bea_9_eye1_TA_tex_txt",
"000abb40 000100 bea_9_eye2_TA_tex_txt",
"000abc40 000100 bea_9_eye3_TA_tex_txt",
"000abd40 000100 bea_9_eye4_TA_tex_txt",
"000abe40 000100 bea_9_eye5_TA_tex_txt",
"000abf40 000100 bea_9_eye6_TA_tex_txt",
"000ac040 000100 bea_9_eye7_TA_tex_txt",
"000ac140 000100 bea_9_eye8_TA_tex_txt",
"000ac240 000100 bea_9_mouth1_TA_tex_txt",
"000ac340 000100 bea_9_mouth2_TA_tex_txt",
"000ac440 000100 bea_9_mouth3_TA_tex_txt",
"000ac540 000100 bea_9_mouth4_TA_tex_txt",
"000ac640 000100 bea_9_mouth5_TA_tex_txt",
"000ac740 000100 bea_9_mouth6_TA_tex_txt",
"000ac840 000400 bea_9_tmem_txt",
"",
"000acc40 000020 bea_10_pal",
"000acc60 000100 bea_10_eye1_TA_tex_txt",
"000acd60 000100 bea_10_eye2_TA_tex_txt",
"000ace60 000100 bea_10_eye3_TA_tex_txt",
"000acf60 000100 bea_10_eye4_TA_tex_txt",
"000ad060 000100 bea_10_eye5_TA_tex_txt",
"000ad160 000100 bea_10_eye6_TA_tex_txt",
"000ad260 000100 bea_10_eye7_TA_tex_txt",
"000ad360 000100 bea_10_eye8_TA_tex_txt",
"000ad460 000100 bea_10_mouth1_TA_tex_txt",
"000ad560 000100 bea_10_mouth2_TA_tex_txt",
"000ad660 000100 bea_10_mouth3_TA_tex_txt",
"000ad760 000100 bea_10_mouth4_TA_tex_txt",
"000ad860 000100 bea_10_mouth5_TA_tex_txt",
"000ad960 000100 bea_10_mouth6_TA_tex_txt",
"000ada60 000400 bea_10_tmem_txt",
"",
"00120aa8 001740 pbr_1_v",
"001221e8 0001c8 head_pbr_model",
"001223b0 000080 mouth_pbr_model",
"00122430 000080 Rarm2_pbr_model",
"001224b0 000078 Rarm1_pbr_model",
"00122528 000080 Larm2_pbr_model",
"001225a8 000078 Larm1_pbr_model",
"00122620 0000d8 chest_pbr_model",
"001226f8 0000b0 tail1_pbr_model",
"001227a8 0000b0 Rfoot3_pbr_model",
"00122858 000080 Rfoot2_pbr_model",
"001228d8 000058 Rfoot1_pbr_model",
"00122930 0000b0 Lfoot3_pbr_model",
"001229e0 000080 Lfoot2_pbr_model",
"00122a60 000058 Lfoot1_pbr_model",
"00122ab8 000080 base_pbr_model",
"00122b38 000138 cKF_je_r_pbr_1_tbl",
"00122c70 000008 cKF_bs_r_pbr_1",
"",
"00122c80 000020 pbr_1_pal",
"00122ca0 000100 pbr_1_eye1_TA_tex_txt",
"00122da0 000100 pbr_1_eye2_TA_tex_txt",
"00122ea0 000100 pbr_1_eye3_TA_tex_txt",
"00122fa0 000100 pbr_1_eye4_TA_tex_txt",
"001230a0 000100 pbr_1_eye5_TA_tex_txt",
"001231a0 000100 pbr_1_eye6_TA_tex_txt",
"001232a0 000100 pbr_1_eye7_TA_tex_txt",
"001233a0 000100 pbr_1_eye8_TA_tex_txt",
"001234a0 000500 pbr_1_tmem_txt",
"",
"001239a0 000020 pbr_2_pal",
"001239c0 000100 pbr_2_eye1_TA_tex_txt",
"00123ac0 000100 pbr_2_eye2_TA_tex_txt",
"00123bc0 000100 pbr_2_eye3_TA_tex_txt",
"00123cc0 000100 pbr_2_eye4_TA_tex_txt",
"00123dc0 000100 pbr_2_eye5_TA_tex_txt",
"00123ec0 000100 pbr_2_eye6_TA_tex_txt",
"00123fc0 000100 pbr_2_eye7_TA_tex_txt",
"001240c0 000100 pbr_2_eye8_TA_tex_txt",
"001241c0 000500 pbr_2_tmem_txt",
"",
"001246c0 000020 pbr_3_pal",
"001246e0 000100 pbr_3_eye1_TA_tex_txt",
"001247e0 000100 pbr_3_eye2_TA_tex_txt",
"001248e0 000100 pbr_3_eye3_TA_tex_txt",
"001249e0 000100 pbr_3_eye4_TA_tex_txt",
"00124ae0 000100 pbr_3_eye5_TA_tex_txt",
"00124be0 000100 pbr_3_eye6_TA_tex_txt",
"00124ce0 000100 pbr_3_eye7_TA_tex_txt",
"00124de0 000100 pbr_3_eye8_TA_tex_txt",
"00124ee0 000500 pbr_3_tmem_txt",
"",
"001253e0 000020 pbr_4_pal",
"00125400 000100 pbr_4_eye1_TA_tex_txt",
"00125500 000100 pbr_4_eye2_TA_tex_txt",
"00125600 000100 pbr_4_eye3_TA_tex_txt",
"00125700 000100 pbr_4_eye4_TA_tex_txt",
"00125800 000100 pbr_4_eye5_TA_tex_txt",
"00125900 000100 pbr_4_eye6_TA_tex_txt",
"00125a00 000100 pbr_4_eye7_TA_tex_txt",
"00125b00 000100 pbr_4_eye8_TA_tex_txt",
"00125c00 000500 pbr_4_tmem_txt",
"",
"00126100 000020 pbr_5_pal",
"00126120 000100 pbr_5_eye1_TA_tex_txt",
"00126220 000100 pbr_5_eye2_TA_tex_txt",
"00126320 000100 pbr_5_eye3_TA_tex_txt",
"00126420 000100 pbr_5_eye4_TA_tex_txt",
"00126520 000100 pbr_5_eye5_TA_tex_txt",
"00126620 000100 pbr_5_eye6_TA_tex_txt",
"00126720 000100 pbr_5_eye7_TA_tex_txt",
"00126820 000100 pbr_5_eye8_TA_tex_txt",
"00126920 000500 pbr_5_tmem_txt",
"",
"00126e20 001600 brd_1_v",
"00128420 000180 head_brd_model",
"001285a0 000078 mouth_brd_model",
"00128618 000080 Rarm2_brd_model",
"00128698 000078 Rarm1_brd_model",
"00128710 000080 Larm2_brd_model",
"00128790 000078 Larm1_brd_model",
"00128808 0000c8 chest_brd_model",
"001288d0 0000d0 tail1_brd_model",
"001289a0 0000a0 Rfoot3_brd_model",
"00128a40 000080 Rfoot2_brd_model",
"00128ac0 000058 Rfoot1_brd_model",
"00128b18 0000a0 Lfoot3_brd_model",
"00128bb8 000080 Lfoot2_brd_model",
"00128c38 000058 Lfoot1_brd_model",
"00128c90 000088 base_brd_model",
"00128d18 000138 cKF_je_r_brd_1_tbl",
"00128e50 000008 cKF_bs_r_brd_1",
"",
"00128e60 000020 brd_1_pal",
"00128e80 000100 brd_1_eye1_TA_tex_txt",
"00128f80 000100 brd_1_eye2_TA_tex_txt",
"00129080 000100 brd_1_eye3_TA_tex_txt",
"00129180 000100 brd_1_eye4_TA_tex_txt",
"00129280 000100 brd_1_eye5_TA_tex_txt",
"00129380 000100 brd_1_eye6_TA_tex_txt",
"00129480 000100 brd_1_eye7_TA_tex_txt",
"00129580 000100 brd_1_eye8_TA_tex_txt",
"00129680 000500 brd_1_tmem_txt",
"",
"00129b80 000020 brd_2_pal",
"00129ba0 000100 brd_2_eye1_TA_tex_txt",
"00129ca0 000100 brd_2_eye2_TA_tex_txt",
"00129da0 000100 brd_2_eye3_TA_tex_txt",
"00129ea0 000100 brd_2_eye4_TA_tex_txt",
"00129fa0 000100 brd_2_eye5_TA_tex_txt",
"0012a0a0 000100 brd_2_eye6_TA_tex_txt",
"0012a1a0 000100 brd_2_eye7_TA_tex_txt",
"0012a2a0 000100 brd_2_eye8_TA_tex_txt",
"0012a3a0 000500 brd_2_tmem_txt",
"",
"0012a8a0 000020 brd_11_pal",
"0012a8c0 000100 brd_11_eye1_TA_tex_txt",
"0012a9c0 000100 brd_11_eye2_TA_tex_txt",
"0012aac0 000100 brd_11_eye3_TA_tex_txt",
"0012abc0 000100 brd_11_eye4_TA_tex_txt",
"0012acc0 000100 brd_11_eye5_TA_tex_txt",
"0012adc0 000100 brd_11_eye6_TA_tex_txt",
"0012aec0 000100 brd_11_eye7_TA_tex_txt",
"0012afc0 000100 brd_11_eye8_TA_tex_txt",
"0012b0c0 000500 brd_11_tmem_txt",
"",
"0012b5c0 000020 brd_3_pal",
"0012b5e0 000100 brd_3_eye1_TA_tex_txt",
"0012b6e0 000100 brd_3_eye2_TA_tex_txt",
"0012b7e0 000100 brd_3_eye3_TA_tex_txt",
"0012b8e0 000100 brd_3_eye4_TA_tex_txt",
"0012b9e0 000100 brd_3_eye5_TA_tex_txt",
"0012bae0 000100 brd_3_eye6_TA_tex_txt",
"0012bbe0 000100 brd_3_eye7_TA_tex_txt",
"0012bce0 000100 brd_3_eye8_TA_tex_txt",
"0012bde0 000500 brd_3_tmem_txt",
"",
"0012c2e0 000020 brd_4_pal",
"0012c300 000100 brd_4_eye1_TA_tex_txt",
"0012c400 000100 brd_4_eye2_TA_tex_txt",
"0012c500 000100 brd_4_eye3_TA_tex_txt",
"0012c600 000100 brd_4_eye4_TA_tex_txt",
"0012c700 000100 brd_4_eye5_TA_tex_txt",
"0012c800 000100 brd_4_eye6_TA_tex_txt",
"0012c900 000100 brd_4_eye7_TA_tex_txt",
"0012ca00 000100 brd_4_eye8_TA_tex_txt",
"0012cb00 000500 brd_4_tmem_txt",
"",
"0012d000 000020 brd_5_pal",
"0012d020 000100 brd_5_eye1_TA_tex_txt",
"0012d120 000100 brd_5_eye2_TA_tex_txt",
"0012d220 000100 brd_5_eye3_TA_tex_txt",
"0012d320 000100 brd_5_eye4_TA_tex_txt",
"0012d420 000100 brd_5_eye5_TA_tex_txt",
"0012d520 000100 brd_5_eye6_TA_tex_txt",
"0012d620 000100 brd_5_eye7_TA_tex_txt",
"0012d720 000100 brd_5_eye8_TA_tex_txt",
"0012d820 000500 brd_5_tmem_txt",
"",
"0012dd20 000020 brd_6_pal",
"0012dd40 000100 brd_6_eye1_TA_tex_txt",
"0012de40 000100 brd_6_eye2_TA_tex_txt",
"0012df40 000100 brd_6_eye3_TA_tex_txt",
"0012e040 000100 brd_6_eye4_TA_tex_txt",
"0012e140 000100 brd_6_eye5_TA_tex_txt",
"0012e240 000100 brd_6_eye6_TA_tex_txt",
"0012e340 000100 brd_6_eye7_TA_tex_txt",
"0012e440 000100 brd_6_eye8_TA_tex_txt",
"0012e540 000500 brd_6_tmem_txt",
"",
"0012ea40 000020 brd_7_pal",
"0012ea60 000100 brd_7_eye1_TA_tex_txt",
"0012eb60 000100 brd_7_eye2_TA_tex_txt",
"0012ec60 000100 brd_7_eye3_TA_tex_txt",
"0012ed60 000100 brd_7_eye4_TA_tex_txt",
"0012ee60 000100 brd_7_eye5_TA_tex_txt",
"0012ef60 000100 brd_7_eye6_TA_tex_txt",
"0012f060 000100 brd_7_eye7_TA_tex_txt",
"0012f160 000100 brd_7_eye8_TA_tex_txt",
"0012f260 000500 brd_7_tmem_txt",
"",
"0012f760 000020 brd_8_pal",
"0012f780 000100 brd_8_eye1_TA_tex_txt",
"0012f880 000100 brd_8_eye2_TA_tex_txt",
"0012f980 000100 brd_8_eye3_TA_tex_txt",
"0012fa80 000100 brd_8_eye4_TA_tex_txt",
"0012fb80 000100 brd_8_eye5_TA_tex_txt",
"0012fc80 000100 brd_8_eye6_TA_tex_txt",
"0012fd80 000100 brd_8_eye7_TA_tex_txt",
"0012fe80 000100 brd_8_eye8_TA_tex_txt",
"0012ff80 000500 brd_8_tmem_txt",
"",
"00130480 000020 brd_9_pal",
"001304a0 000100 brd_9_eye1_TA_tex_txt",
"001305a0 000100 brd_9_eye2_TA_tex_txt",
"001306a0 000100 brd_9_eye3_TA_tex_txt",
"001307a0 000100 brd_9_eye4_TA_tex_txt",
"001308a0 000100 brd_9_eye5_TA_tex_txt",
"001309a0 000100 brd_9_eye6_TA_tex_txt",
"00130aa0 000100 brd_9_eye7_TA_tex_txt",
"00130ba0 000100 brd_9_eye8_TA_tex_txt",
"00130ca0 000500 brd_9_tmem_txt",
"",
"001311a0 000020 brd_10_pal",
"001311c0 000100 brd_10_eye1_TA_tex_txt",
"001312c0 000100 brd_10_eye2_TA_tex_txt",
"001313c0 000100 brd_10_eye3_TA_tex_txt",
"001314c0 000100 brd_10_eye4_TA_tex_txt",
"001315c0 000100 brd_10_eye5_TA_tex_txt",
"001316c0 000100 brd_10_eye6_TA_tex_txt",
"001317c0 000100 brd_10_eye7_TA_tex_txt",
"001318c0 000100 brd_10_eye8_TA_tex_txt",
"001319c0 000500 brd_10_tmem_txt",
"",
"00188ae8 001700 fox_1_v",
"0018a1e8 000130 head_fox_model",
"0018a318 000088 mouth_fox_model",
"0018a3a0 000088 Rarm2_fox_model",
"0018a428 000078 Rarm1_fox_model",
"0018a4a0 000088 Larm2_fox_model",
"0018a528 000078 Larm1_fox_model",
"0018a5a0 000108 chest_fox_model",
"0018a6a8 000078 tail1_fox_model",
"0018a720 0000b8 tail2_fox_model",
"0018a7d8 000080 Rfoot2_fox_model",
"0018a858 000058 Rfoot1_fox_model",
"0018a8b0 000080 Lfoot2_fox_model",
"0018a930 000058 Lfoot1_fox_model",
"0018a988 0000d0 base_fox_model",
"0018aa58 000138 cKF_je_r_fox_1_tbl",
"0018ab90 000008 cKF_bs_r_fox_1",
"",
"0018aba0 000020 fox_1_pal",
"0018abc0 000100 fox_1_eye1_TA_tex_txt",
"0018acc0 000100 fox_1_eye2_TA_tex_txt",
"0018adc0 000100 fox_1_eye3_TA_tex_txt",
"0018aec0 000100 fox_1_eye4_TA_tex_txt",
"0018afc0 000100 fox_1_eye5_TA_tex_txt",
"0018b0c0 000100 fox_1_eye6_TA_tex_txt",
"0018b1c0 000100 fox_1_eye7_TA_tex_txt",
"0018b2c0 000100 fox_1_eye8_TA_tex_txt",
"0018b3c0 000700 fox_1_tmem_txt",
"",
"0018bac0 001680 bul_1_v",
"0018d140 000208 head_bul_model",
"0018d348 000088 Rarm2_bul_model",
"0018d3d0 000078 Rarm1_bul_model",
"0018d448 000088 Larm2_bul_model",
"0018d4d0 000078 Larm1_bul_model",
"0018d548 0000a0 chest_bul_model",
"0018d5e8 000060 tail1_bul_model",
"0018d648 000090 tail2_bul_model",
"0018d6d8 000080 Rfoot2_bul_model",
"0018d758 000080 Rfoot1_bul_model",
"0018d7d8 000080 Lfoot2_bul_model",
"0018d858 000080 Lfoot1_bul_model",
"0018d8d8 000098 base_bul_model",
"0018d970 000138 cKF_je_r_bul_1_tbl",
"0018daa8 000008 cKF_bs_r_bul_1",
"",
"0018dac0 000020 bul_1_pal",
"0018dae0 000100 bul_1_eye1_TA_tex_txt",
"0018dbe0 000100 bul_1_eye2_TA_tex_txt",
"0018dce0 000100 bul_1_eye3_TA_tex_txt",
"0018dde0 000100 bul_1_eye4_TA_tex_txt",
"0018dee0 000100 bul_1_eye5_TA_tex_txt",
"0018dfe0 000100 bul_1_eye6_TA_tex_txt",
"0018e0e0 000100 bul_1_eye7_TA_tex_txt",
"0018e1e0 000100 bul_1_eye8_TA_tex_txt",
"0018e2e0 000100 bul_1_mouth1_TA_tex_txt",
"0018e3e0 000100 bul_1_mouth2_TA_tex_txt",
"0018e4e0 000100 bul_1_mouth3_TA_tex_txt",
"0018e5e0 000100 bul_1_mouth4_TA_tex_txt",
"0018e6e0 000100 bul_1_mouth5_TA_tex_txt",
"0018e7e0 000100 bul_1_mouth6_TA_tex_txt",
"0018e8e0 000400 bul_1_tmem_txt",
"",
"0018ece0 000020 bul_2_pal",
"0018ed00 000100 bul_2_eye1_TA_tex_txt",
"0018ee00 000100 bul_2_eye2_TA_tex_txt",
"0018ef00 000100 bul_2_eye3_TA_tex_txt",
"0018f000 000100 bul_2_eye4_TA_tex_txt",
"0018f100 000100 bul_2_eye5_TA_tex_txt",
"0018f200 000100 bul_2_eye6_TA_tex_txt",
"0018f300 000100 bul_2_eye7_TA_tex_txt",
"0018f400 000100 bul_2_eye8_TA_tex_txt",
"0018f500 000100 bul_2_mouth1_TA_tex_txt",
"0018f600 000100 bul_2_mouth2_TA_tex_txt",
"0018f700 000100 bul_2_mouth3_TA_tex_txt",
"0018f800 000100 bul_2_mouth4_TA_tex_txt",
"0018f900 000100 bul_2_mouth5_TA_tex_txt",
"0018fa00 000100 bul_2_mouth6_TA_tex_txt",
"0018fb00 000400 bul_2_tmem_txt",
"",
"0018ff00 000020 bul_3_pal",
"0018ff20 000100 bul_3_eye1_TA_tex_txt",
"00190020 000100 bul_3_eye2_TA_tex_txt",
"00190120 000100 bul_3_eye3_TA_tex_txt",
"00190220 000100 bul_3_eye4_TA_tex_txt",
"00190320 000100 bul_3_eye5_TA_tex_txt",
"00190420 000100 bul_3_eye6_TA_tex_txt",
"00190520 000100 bul_3_eye7_TA_tex_txt",
"00190620 000100 bul_3_eye8_TA_tex_txt",
"00190720 000100 bul_3_mouth1_TA_tex_txt",
"00190820 000100 bul_3_mouth2_TA_tex_txt",
"00190920 000100 bul_3_mouth3_TA_tex_txt",
"00190a20 000100 bul_3_mouth4_TA_tex_txt",
"00190b20 000100 bul_3_mouth5_TA_tex_txt",
"00190c20 000100 bul_3_mouth6_TA_tex_txt",
"00190d20 000400 bul_3_tmem_txt",
"",
"00191120 000020 bul_4_pal",
"00191140 000100 bul_4_eye1_TA_tex_txt",
"00191240 000100 bul_4_eye2_TA_tex_txt",
"00191340 000100 bul_4_eye3_TA_tex_txt",
"00191440 000100 bul_4_eye4_TA_tex_txt",
"00191540 000100 bul_4_eye5_TA_tex_txt",
"00191640 000100 bul_4_eye6_TA_tex_txt",
"00191740 000100 bul_4_eye7_TA_tex_txt",
"00191840 000100 bul_4_eye8_TA_tex_txt",
"00191940 000100 bul_4_mouth1_TA_tex_txt",
"00191a40 000100 bul_4_mouth2_TA_tex_txt",
"00191b40 000100 bul_4_mouth3_TA_tex_txt",
"00191c40 000100 bul_4_mouth4_TA_tex_txt",
"00191d40 000100 bul_4_mouth5_TA_tex_txt",
"00191e40 000100 bul_4_mouth6_TA_tex_txt",
"00191f40 000400 bul_4_tmem_txt",
"",
"00192340 001c30 cml_1_v",
"00193f70 0001c0 head_cml_model",
"00194130 0000c0 mouth_cml_model",
"001941f0 000088 Rarm2_cml_model",
"00194278 000078 Rarm1_cml_model",
"001942f0 000088 Larm2_cml_model",
"00194378 000078 Larm1_cml_model",
"001943f0 000250 chest_cml_model",
"00194640 000080 Rfoot2_cml_model",
"001946c0 000058 Rfoot1_cml_model",
"00194718 000080 Lfoot2_cml_model",
"00194798 000058 Lfoot1_cml_model",
"001947f0 000078 base_cml_model",
"00194868 000138 cKF_je_r_cml_1_tbl",
"001949a0 000008 cKF_bs_r_cml_1",
"",
"001949c0 000020 cml_1_pal",
"001949e0 000100 cml_1_eye1_TA_tex_txt",
"00194ae0 000100 cml_1_eye2_TA_tex_txt",
"00194be0 000100 cml_1_eye3_TA_tex_txt",
"00194ce0 000100 cml_1_eye4_TA_tex_txt",
"00194de0 000100 cml_1_eye5_TA_tex_txt",
"00194ee0 000100 cml_1_eye6_TA_tex_txt",
"00194fe0 000100 cml_1_eye7_TA_tex_txt",
"001950e0 000100 cml_1_eye8_TA_tex_txt",
"001951e0 000780 cml_1_tmem_txt",
"",
"00195960 001430 cat_1_v",
"00196d90 000158 head_cat_model",
"00196ee8 000088 Rarm2_cat_model",
"00196f70 000078 Rarm1_cat_model",
"00196fe8 000088 Larm2_cat_model",
"00197070 000078 Larm1_cat_model",
"001970e8 000090 chest_cat_model",
"00197178 000058 tail1_cat_model",
"001971d0 000090 tail2_cat_model",
"00197260 000090 Rfoot2_cat_model",
"001972f0 0000c0 Rfoot1_cat_model",
"001973b0 000090 Lfoot2_cat_model",
"00197440 0000c0 Lfoot1_cat_model",
"00197500 000070 base_cat_model",
"00197570 000138 cKF_je_r_cat_1_tbl",
"001976a8 000008 cKF_bs_r_cat_1",
"",
"001976c0 000020 cat_1_pal",
"001976e0 000100 cat_1_eye1_TA_tex_txt",
"001977e0 000100 cat_1_eye2_TA_tex_txt",
"001978e0 000100 cat_1_eye3_TA_tex_txt",
"001979e0 000100 cat_1_eye4_TA_tex_txt",
"00197ae0 000100 cat_1_eye5_TA_tex_txt",
"00197be0 000100 cat_1_eye6_TA_tex_txt",
"00197ce0 000100 cat_1_eye7_TA_tex_txt",
"00197de0 000100 cat_1_eye8_TA_tex_txt",
"00197ee0 000100 cat_1_mouth1_TA_tex_txt",
"00197fe0 000100 cat_1_mouth2_TA_tex_txt",
"001980e0 000100 cat_1_mouth3_TA_tex_txt",
"001981e0 000100 cat_1_mouth4_TA_tex_txt",
"001982e0 000100 cat_1_mouth5_TA_tex_txt",
"001983e0 000100 cat_1_mouth6_TA_tex_txt",
"001984e0 000400 cat_1_tmem_txt",
"",
"001988e0 000020 cat_2_pal",
"00198900 000100 cat_2_eye1_TA_tex_txt",
"00198a00 000100 cat_2_eye2_TA_tex_txt",
"00198b00 000100 cat_2_eye3_TA_tex_txt",
"00198c00 000100 cat_2_eye4_TA_tex_txt",
"00198d00 000100 cat_2_eye5_TA_tex_txt",
"00198e00 000100 cat_2_eye6_TA_tex_txt",
"00198f00 000100 cat_2_eye7_TA_tex_txt",
"00199000 000100 cat_2_eye8_TA_tex_txt",
"00199100 000100 cat_2_mouth1_TA_tex_txt",
"00199200 000100 cat_2_mouth2_TA_tex_txt",
"00199300 000100 cat_2_mouth3_TA_tex_txt",
"00199400 000100 cat_2_mouth4_TA_tex_txt",
"00199500 000100 cat_2_mouth5_TA_tex_txt",
"00199600 000100 cat_2_mouth6_TA_tex_txt",
"00199700 000400 cat_2_tmem_txt",
"",
"00199b00 000020 cat_11_pal",
"00199b20 000100 cat_11_eye1_TA_tex_txt",
"00199c20 000100 cat_11_eye2_TA_tex_txt",
"00199d20 000100 cat_11_eye3_TA_tex_txt",
"00199e20 000100 cat_11_eye4_TA_tex_txt",
"00199f20 000100 cat_11_eye5_TA_tex_txt",
"0019a020 000100 cat_11_eye6_TA_tex_txt",
"0019a120 000100 cat_11_eye7_TA_tex_txt",
"0019a220 000100 cat_11_eye8_TA_tex_txt",
"0019a320 000100 cat_11_mouth1_TA_tex_txt",
"0019a420 000100 cat_11_mouth2_TA_tex_txt",
"0019a520 000100 cat_11_mouth3_TA_tex_txt",
"0019a620 000100 cat_11_mouth4_TA_tex_txt",
"0019a720 000100 cat_11_mouth5_TA_tex_txt",
"0019a820 000100 cat_11_mouth6_TA_tex_txt",
"0019a920 000400 cat_11_tmem_txt",
"",
"0019ad20 000020 cat_12_pal",
"0019ad40 000100 cat_12_eye1_TA_tex_txt",
"0019ae40 000100 cat_12_eye2_TA_tex_txt",
"0019af40 000100 cat_12_eye3_TA_tex_txt",
"0019b040 000100 cat_12_eye4_TA_tex_txt",
"0019b140 000100 cat_12_eye5_TA_tex_txt",
"0019b240 000100 cat_12_eye6_TA_tex_txt",
"0019b340 000100 cat_12_eye7_TA_tex_txt",
"0019b440 000100 cat_12_eye8_TA_tex_txt",
"0019b540 000100 cat_12_mouth1_TA_tex_txt",
"0019b640 000100 cat_12_mouth2_TA_tex_txt",
"0019b740 000100 cat_12_mouth3_TA_tex_txt",
"0019b840 000100 cat_12_mouth4_TA_tex_txt",
"0019b940 000100 cat_12_mouth5_TA_tex_txt",
"0019ba40 000100 cat_12_mouth6_TA_tex_txt",
"0019bb40 000400 cat_12_tmem_txt",
"",
"0019bf40 000020 cat_13_pal",
"0019bf60 000100 cat_13_eye1_TA_tex_txt",
"0019c060 000100 cat_13_eye2_TA_tex_txt",
"0019c160 000100 cat_13_eye3_TA_tex_txt",
"0019c260 000100 cat_13_eye4_TA_tex_txt",
"0019c360 000100 cat_13_eye5_TA_tex_txt",
"0019c460 000100 cat_13_eye6_TA_tex_txt",
"0019c560 000100 cat_13_eye7_TA_tex_txt",
"0019c660 000100 cat_13_eye8_TA_tex_txt",
"0019c760 000100 cat_13_mouth1_TA_tex_txt",
"0019c860 000100 cat_13_mouth2_TA_tex_txt",
"0019c960 000100 cat_13_mouth3_TA_tex_txt",
"0019ca60 000100 cat_13_mouth4_TA_tex_txt",
"0019cb60 000100 cat_13_mouth5_TA_tex_txt",
"0019cc60 000100 cat_13_mouth6_TA_tex_txt",
"0019cd60 000400 cat_13_tmem_txt",
"",
"0019d160 000020 cat_14_pal",
"0019d180 000100 cat_14_eye1_TA_tex_txt",
"0019d280 000100 cat_14_eye2_TA_tex_txt",
"0019d380 000100 cat_14_eye3_TA_tex_txt",
"0019d480 000100 cat_14_eye4_TA_tex_txt",
"0019d580 000100 cat_14_eye5_TA_tex_txt",
"0019d680 000100 cat_14_eye6_TA_tex_txt",
"0019d780 000100 cat_14_eye7_TA_tex_txt",
"0019d880 000100 cat_14_eye8_TA_tex_txt",
"0019d980 000100 cat_14_mouth1_TA_tex_txt",
"0019da80 000100 cat_14_mouth2_TA_tex_txt",
"0019db80 000100 cat_14_mouth3_TA_tex_txt",
"0019dc80 000100 cat_14_mouth4_TA_tex_txt",
"0019dd80 000100 cat_14_mouth5_TA_tex_txt",
"0019de80 000100 cat_14_mouth6_TA_tex_txt",
"0019df80 000400 cat_14_tmem_txt",
"",
"0019e380 000020 cat_15_pal",
"0019e3a0 000100 cat_15_eye1_TA_tex_txt",
"0019e4a0 000100 cat_15_eye2_TA_tex_txt",
"0019e5a0 000100 cat_15_eye3_TA_tex_txt",
"0019e6a0 000100 cat_15_eye4_TA_tex_txt",
"0019e7a0 000100 cat_15_eye5_TA_tex_txt",
"0019e8a0 000100 cat_15_eye6_TA_tex_txt",
"0019e9a0 000100 cat_15_eye7_TA_tex_txt",
"0019eaa0 000100 cat_15_eye8_TA_tex_txt",
"0019eba0 000100 cat_15_mouth1_TA_tex_txt",
"0019eca0 000100 cat_15_mouth2_TA_tex_txt",
"0019eda0 000100 cat_15_mouth3_TA_tex_txt",
"0019eea0 000100 cat_15_mouth4_TA_tex_txt",
"0019efa0 000100 cat_15_mouth5_TA_tex_txt",
"0019f0a0 000100 cat_15_mouth6_TA_tex_txt",
"0019f1a0 000400 cat_15_tmem_txt",
"",
"0019f5a0 000020 cat_3_pal",
"0019f5c0 000100 cat_3_eye1_TA_tex_txt",
"0019f6c0 000100 cat_3_eye2_TA_tex_txt",
"0019f7c0 000100 cat_3_eye3_TA_tex_txt",
"0019f8c0 000100 cat_3_eye4_TA_tex_txt",
"0019f9c0 000100 cat_3_eye5_TA_tex_txt",
"0019fac0 000100 cat_3_eye6_TA_tex_txt",
"0019fbc0 000100 cat_3_eye7_TA_tex_txt",
"0019fcc0 000100 cat_3_eye8_TA_tex_txt",
"0019fdc0 000100 cat_3_mouth1_TA_tex_txt",
"0019fec0 000100 cat_3_mouth2_TA_tex_txt",
"0019ffc0 000100 cat_3_mouth3_TA_tex_txt",
"001a00c0 000100 cat_3_mouth4_TA_tex_txt",
"001a01c0 000100 cat_3_mouth5_TA_tex_txt",
"001a02c0 000100 cat_3_mouth6_TA_tex_txt",
"001a03c0 000400 cat_3_tmem_txt",
"",
"001a07c0 000020 cat_4_pal",
"001a07e0 000100 cat_4_eye1_TA_tex_txt",
"001a08e0 000100 cat_4_eye2_TA_tex_txt",
"001a09e0 000100 cat_4_eye3_TA_tex_txt",
"001a0ae0 000100 cat_4_eye4_TA_tex_txt",
"001a0be0 000100 cat_4_eye5_TA_tex_txt",
"001a0ce0 000100 cat_4_eye6_TA_tex_txt",
"001a0de0 000100 cat_4_eye7_TA_tex_txt",
"001a0ee0 000100 cat_4_eye8_TA_tex_txt",
"001a0fe0 000100 cat_4_mouth1_TA_tex_txt",
"001a10e0 000100 cat_4_mouth2_TA_tex_txt",
"001a11e0 000100 cat_4_mouth3_TA_tex_txt",
"001a12e0 000100 cat_4_mouth4_TA_tex_txt",
"001a13e0 000100 cat_4_mouth5_TA_tex_txt",
"001a14e0 000100 cat_4_mouth6_TA_tex_txt",
"001a15e0 000400 cat_4_tmem_txt",
"",
"001a19e0 000020 cat_5_pal",
"001a1a00 000100 cat_5_eye1_TA_tex_txt",
"001a1b00 000100 cat_5_eye2_TA_tex_txt",
"001a1c00 000100 cat_5_eye3_TA_tex_txt",
"001a1d00 000100 cat_5_eye4_TA_tex_txt",
"001a1e00 000100 cat_5_eye5_TA_tex_txt",
"001a1f00 000100 cat_5_eye6_TA_tex_txt",
"001a2000 000100 cat_5_eye7_TA_tex_txt",
"001a2100 000100 cat_5_eye8_TA_tex_txt",
"001a2200 000100 cat_5_mouth1_TA_tex_txt",
"001a2300 000100 cat_5_mouth2_TA_tex_txt",
"001a2400 000100 cat_5_mouth3_TA_tex_txt",
"001a2500 000100 cat_5_mouth4_TA_tex_txt",
"001a2600 000100 cat_5_mouth5_TA_tex_txt",
"001a2700 000100 cat_5_mouth6_TA_tex_txt",
"001a2800 000400 cat_5_tmem_txt",
"",
"001a2c00 000020 cat_6_pal",
"001a2c20 000100 cat_6_eye1_TA_tex_txt",
"001a2d20 000100 cat_6_eye2_TA_tex_txt",
"001a2e20 000100 cat_6_eye3_TA_tex_txt",
"001a2f20 000100 cat_6_eye4_TA_tex_txt",
"001a3020 000100 cat_6_eye5_TA_tex_txt",
"001a3120 000100 cat_6_eye6_TA_tex_txt",
"001a3220 000100 cat_6_eye7_TA_tex_txt",
"001a3320 000100 cat_6_eye8_TA_tex_txt",
"001a3420 000100 cat_6_mouth1_TA_tex_txt",
"001a3520 000100 cat_6_mouth2_TA_tex_txt",
"001a3620 000100 cat_6_mouth3_TA_tex_txt",
"001a3720 000100 cat_6_mouth4_TA_tex_txt",
"001a3820 000100 cat_6_mouth5_TA_tex_txt",
"001a3920 000100 cat_6_mouth6_TA_tex_txt",
"001a3a20 000400 cat_6_tmem_txt",
"",
"001a3e20 000020 cat_7_pal",
"001a3e40 000100 cat_7_eye1_TA_tex_txt",
"001a3f40 000100 cat_7_eye2_TA_tex_txt",
"001a4040 000100 cat_7_eye3_TA_tex_txt",
"001a4140 000100 cat_7_eye4_TA_tex_txt",
"001a4240 000100 cat_7_eye5_TA_tex_txt",
"001a4340 000100 cat_7_eye6_TA_tex_txt",
"001a4440 000100 cat_7_eye7_TA_tex_txt",
"001a4540 000100 cat_7_eye8_TA_tex_txt",
"001a4640 000100 cat_7_mouth1_TA_tex_txt",
"001a4740 000100 cat_7_mouth2_TA_tex_txt",
"001a4840 000100 cat_7_mouth3_TA_tex_txt",
"001a4940 000100 cat_7_mouth4_TA_tex_txt",
"001a4a40 000100 cat_7_mouth5_TA_tex_txt",
"001a4b40 000100 cat_7_mouth6_TA_tex_txt",
"001a4c40 000400 cat_7_tmem_txt",
"",
"001a5040 000020 cat_8_pal",
"001a5060 000100 cat_8_eye1_TA_tex_txt",
"001a5160 000100 cat_8_eye2_TA_tex_txt",
"001a5260 000100 cat_8_eye3_TA_tex_txt",
"001a5360 000100 cat_8_eye4_TA_tex_txt",
"001a5460 000100 cat_8_eye5_TA_tex_txt",
"001a5560 000100 cat_8_eye6_TA_tex_txt",
"001a5660 000100 cat_8_eye7_TA_tex_txt",
"001a5760 000100 cat_8_eye8_TA_tex_txt",
"001a5860 000100 cat_8_mouth1_TA_tex_txt",
"001a5960 000100 cat_8_mouth2_TA_tex_txt",
"001a5a60 000100 cat_8_mouth3_TA_tex_txt",
"001a5b60 000100 cat_8_mouth4_TA_tex_txt",
"001a5c60 000100 cat_8_mouth5_TA_tex_txt",
"001a5d60 000100 cat_8_mouth6_TA_tex_txt",
"001a5e60 000400 cat_8_tmem_txt",
"",
"001a6260 000020 cat_9_pal",
"001a6280 000100 cat_9_eye1_TA_tex_txt",
"001a6380 000100 cat_9_eye2_TA_tex_txt",
"001a6480 000100 cat_9_eye3_TA_tex_txt",
"001a6580 000100 cat_9_eye4_TA_tex_txt",
"001a6680 000100 cat_9_eye5_TA_tex_txt",
"001a6780 000100 cat_9_eye6_TA_tex_txt",
"001a6880 000100 cat_9_eye7_TA_tex_txt",
"001a6980 000100 cat_9_eye8_TA_tex_txt",
"001a6a80 000100 cat_9_mouth1_TA_tex_txt",
"001a6b80 000100 cat_9_mouth2_TA_tex_txt",
"001a6c80 000100 cat_9_mouth3_TA_tex_txt",
"001a6d80 000100 cat_9_mouth4_TA_tex_txt",
"001a6e80 000100 cat_9_mouth5_TA_tex_txt",
"001a6f80 000100 cat_9_mouth6_TA_tex_txt",
"001a7080 000400 cat_9_tmem_txt",
"",
"001a7480 000020 cat_10_pal",
"001a74a0 000100 cat_10_eye1_TA_tex_txt",
"001a75a0 000100 cat_10_eye2_TA_tex_txt",
"001a76a0 000100 cat_10_eye3_TA_tex_txt",
"001a77a0 000100 cat_10_eye4_TA_tex_txt",
"001a78a0 000100 cat_10_eye5_TA_tex_txt",
"001a79a0 000100 cat_10_eye6_TA_tex_txt",
"001a7aa0 000100 cat_10_eye7_TA_tex_txt",
"001a7ba0 000100 cat_10_eye8_TA_tex_txt",
"001a7ca0 000100 cat_10_mouth1_TA_tex_txt",
"001a7da0 000100 cat_10_mouth2_TA_tex_txt",
"001a7ea0 000100 cat_10_mouth3_TA_tex_txt",
"001a7fa0 000100 cat_10_mouth4_TA_tex_txt",
"001a80a0 000100 cat_10_mouth5_TA_tex_txt",
"001a81a0 000100 cat_10_mouth6_TA_tex_txt",
"001a82a0 000400 cat_10_tmem_txt",
"",
"001a86a0 001c20 chn_1_v",
"001aa2c0 000240 head_chn_model",
"001aa500 000078 mouth_chn_model",
"001aa578 000080 Rarm2_chn_model",
"001aa5f8 000078 Rarm1_chn_model",
"001aa670 000080 Larm2_chn_model",
"001aa6f0 000078 Larm1_chn_model",
"001aa768 0000c0 chest_chn_model",
"001aa828 0000c0 tail1_chn_model",
"001aa8e8 000098 Rfoot3_chn_model",
"001aa980 000080 Rfoot2_chn_model",
"001aaa00 0000c0 Rfoot1_chn_model",
"001aaac0 000098 Lfoot3_chn_model",
"001aab58 000080 Lfoot2_chn_model",
"001aabd8 0000c0 Lfoot1_chn_model",
"001aac98 000070 base_chn_model",
"001aad08 000138 cKF_je_r_chn_1_tbl",
"001aae40 000008 cKF_bs_r_chn_1",
"",
"001aae60 000020 chn_1_pal",
"001aae80 000100 chn_1_eye1_TA_tex_txt",
"001aaf80 000100 chn_1_eye2_TA_tex_txt",
"001ab080 000100 chn_1_eye3_TA_tex_txt",
"001ab180 000100 chn_1_eye4_TA_tex_txt",
"001ab280 000100 chn_1_eye5_TA_tex_txt",
"001ab380 000100 chn_1_eye6_TA_tex_txt",
"001ab480 000100 chn_1_eye7_TA_tex_txt",
"001ab580 000100 chn_1_eye8_TA_tex_txt",
"001ab680 0004c0 chn_1_tmem_txt",
"",
"001abb40 000020 chn_2_pal",
"001abb60 000100 chn_2_eye1_TA_tex_txt",
"001abc60 000100 chn_2_eye2_TA_tex_txt",
"001abd60 000100 chn_2_eye3_TA_tex_txt",
"001abe60 000100 chn_2_eye4_TA_tex_txt",
"001abf60 000100 chn_2_eye5_TA_tex_txt",
"001ac060 000100 chn_2_eye6_TA_tex_txt",
"001ac160 000100 chn_2_eye7_TA_tex_txt",
"001ac260 000100 chn_2_eye8_TA_tex_txt",
"001ac360 0004c0 chn_2_tmem_txt",
"",
"001ac820 000020 chn_3_pal",
"001ac840 000100 chn_3_eye1_TA_tex_txt",
"001ac940 000100 chn_3_eye2_TA_tex_txt",
"001aca40 000100 chn_3_eye3_TA_tex_txt",
"001acb40 000100 chn_3_eye4_TA_tex_txt",
"001acc40 000100 chn_3_eye5_TA_tex_txt",
"001acd40 000100 chn_3_eye6_TA_tex_txt",
"001ace40 000100 chn_3_eye7_TA_tex_txt",
"001acf40 000100 chn_3_eye8_TA_tex_txt",
"001ad040 0004c0 chn_3_tmem_txt",
"",
"001ad500 000020 chn_4_pal",
"001ad520 000100 chn_4_eye1_TA_tex_txt",
"001ad620 000100 chn_4_eye2_TA_tex_txt",
"001ad720 000100 chn_4_eye3_TA_tex_txt",
"001ad820 000100 chn_4_eye4_TA_tex_txt",
"001ad920 000100 chn_4_eye5_TA_tex_txt",
"001ada20 000100 chn_4_eye6_TA_tex_txt",
"001adb20 000100 chn_4_eye7_TA_tex_txt",
"001adc20 000100 chn_4_eye8_TA_tex_txt",
"001add20 0004c0 chn_4_tmem_txt",
"",
"001ae1e0 000020 chn_5_pal",
"001ae200 000100 chn_5_eye1_TA_tex_txt",
"001ae300 000100 chn_5_eye2_TA_tex_txt",
"001ae400 000100 chn_5_eye3_TA_tex_txt",
"001ae500 000100 chn_5_eye4_TA_tex_txt",
"001ae600 000100 chn_5_eye5_TA_tex_txt",
"001ae700 000100 chn_5_eye6_TA_tex_txt",
"001ae800 000100 chn_5_eye7_TA_tex_txt",
"001ae900 000100 chn_5_eye8_TA_tex_txt",
"001aea00 0004c0 chn_5_tmem_txt",
"",
"001aeec0 000020 chn_6_pal",
"001aeee0 000100 chn_6_eye1_TA_tex_txt",
"001aefe0 000100 chn_6_eye2_TA_tex_txt",
"001af0e0 000100 chn_6_eye3_TA_tex_txt",
"001af1e0 000100 chn_6_eye4_TA_tex_txt",
"001af2e0 000100 chn_6_eye5_TA_tex_txt",
"001af3e0 000100 chn_6_eye6_TA_tex_txt",
"001af4e0 000100 chn_6_eye7_TA_tex_txt",
"001af5e0 000100 chn_6_eye8_TA_tex_txt",
"001af6e0 0004c0 chn_6_tmem_txt",
"",
"001afba0 000020 chn_7_pal",
"001afbc0 000100 chn_7_eye1_TA_tex_txt",
"001afcc0 000100 chn_7_eye2_TA_tex_txt",
"001afdc0 000100 chn_7_eye3_TA_tex_txt",
"001afec0 000100 chn_7_eye4_TA_tex_txt",
"001affc0 000100 chn_7_eye5_TA_tex_txt",
"001b00c0 000100 chn_7_eye6_TA_tex_txt",
"001b01c0 000100 chn_7_eye7_TA_tex_txt",
"001b02c0 000100 chn_7_eye8_TA_tex_txt",
"001b03c0 0004c0 chn_7_tmem_txt",
"",
"001b0880 000020 chn_8_pal",
"001b08a0 000100 chn_8_eye1_TA_tex_txt",
"001b09a0 000100 chn_8_eye2_TA_tex_txt",
"001b0aa0 000100 chn_8_eye3_TA_tex_txt",
"001b0ba0 000100 chn_8_eye4_TA_tex_txt",
"001b0ca0 000100 chn_8_eye5_TA_tex_txt",
"001b0da0 000100 chn_8_eye6_TA_tex_txt",
"001b0ea0 000100 chn_8_eye7_TA_tex_txt",
"001b0fa0 000100 chn_8_eye8_TA_tex_txt",
"001b10a0 0004c0 chn_8_tmem_txt",
"",
"001b1560 000020 chn_9_pal",
"001b1580 000100 chn_9_eye1_TA_tex_txt",
"001b1680 000100 chn_9_eye2_TA_tex_txt",
"001b1780 000100 chn_9_eye3_TA_tex_txt",
"001b1880 000100 chn_9_eye4_TA_tex_txt",
"001b1980 000100 chn_9_eye5_TA_tex_txt",
"001b1a80 000100 chn_9_eye6_TA_tex_txt",
"001b1b80 000100 chn_9_eye7_TA_tex_txt",
"001b1c80 000100 chn_9_eye8_TA_tex_txt",
"001b1d80 0004c0 chn_9_tmem_txt",
"",
"001b2240 0015a0 cbr_1_v",
"001b37e0 0001d8 head_cbr_model",
"001b39b8 000090 Rarm2_cbr_model",
"001b3a48 000088 Rarm1_cbr_model",
"001b3ad0 000090 Larm2_cbr_model",
"001b3b60 000088 Larm1_cbr_model",
"001b3be8 0000c0 chest_cbr_model",
"001b3ca8 000068 tail1_cbr_model",
"001b3d10 000098 Rfoot2_cbr_model",
"001b3da8 000068 Rfoot1_cbr_model",
"001b3e10 000098 Lfoot2_cbr_model",
"001b3ea8 000068 Lfoot1_cbr_model",
"001b3f10 0000d0 base_cbr_model",
"001b3fe0 000138 cKF_je_r_cbr_1_tbl",
"001b4118 000008 cKF_bs_r_cbr_1",
"",
"001b4120 000020 cbr_1_pal",
"001b4140 000100 cbr_1_eye1_TA_tex_txt",
"001b4240 000100 cbr_1_eye2_TA_tex_txt",
"001b4340 000100 cbr_1_eye3_TA_tex_txt",
"001b4440 000100 cbr_1_eye4_TA_tex_txt",
"001b4540 000100 cbr_1_eye5_TA_tex_txt",
"001b4640 000100 cbr_1_eye6_TA_tex_txt",
"001b4740 000100 cbr_1_eye7_TA_tex_txt",
"001b4840 000100 cbr_1_eye8_TA_tex_txt",
"001b4940 000100 cbr_1_mouth1_TA_tex_txt",
"001b4a40 000100 cbr_1_mouth2_TA_tex_txt",
"001b4b40 000100 cbr_1_mouth3_TA_tex_txt",
"001b4c40 000100 cbr_1_mouth4_TA_tex_txt",
"001b4d40 000100 cbr_1_mouth5_TA_tex_txt",
"001b4e40 000100 cbr_1_mouth6_TA_tex_txt",
"001b4f40 000400 cbr_1_tmem_txt",
"",
"001b5340 000020 cbr_2_pal",
"001b5360 000100 cbr_2_eye1_TA_tex_txt",
"001b5460 000100 cbr_2_eye2_TA_tex_txt",
"001b5560 000100 cbr_2_eye3_TA_tex_txt",
"001b5660 000100 cbr_2_eye4_TA_tex_txt",
"001b5760 000100 cbr_2_eye5_TA_tex_txt",
"001b5860 000100 cbr_2_eye6_TA_tex_txt",
"001b5960 000100 cbr_2_eye7_TA_tex_txt",
"001b5a60 000100 cbr_2_eye8_TA_tex_txt",
"001b5b60 000100 cbr_2_mouth1_TA_tex_txt",
"001b5c60 000100 cbr_2_mouth2_TA_tex_txt",
"001b5d60 000100 cbr_2_mouth3_TA_tex_txt",
"001b5e60 000100 cbr_2_mouth4_TA_tex_txt",
"001b5f60 000100 cbr_2_mouth5_TA_tex_txt",
"001b6060 000100 cbr_2_mouth6_TA_tex_txt",
"001b6160 000400 cbr_2_tmem_txt",
"",
"001b6560 000020 cbr_11_pal",
"001b6580 000100 cbr_11_eye1_TA_tex_txt",
"001b6680 000100 cbr_11_eye2_TA_tex_txt",
"001b6780 000100 cbr_11_eye3_TA_tex_txt",
"001b6880 000100 cbr_11_eye4_TA_tex_txt",
"001b6980 000100 cbr_11_eye5_TA_tex_txt",
"001b6a80 000100 cbr_11_eye6_TA_tex_txt",
"001b6b80 000100 cbr_11_eye7_TA_tex_txt",
"001b6c80 000100 cbr_11_eye8_TA_tex_txt",
"001b6d80 000100 cbr_11_mouth1_TA_tex_txt",
"001b6e80 000100 cbr_11_mouth2_TA_tex_txt",
"001b6f80 000100 cbr_11_mouth3_TA_tex_txt",
"001b7080 000100 cbr_11_mouth4_TA_tex_txt",
"001b7180 000100 cbr_11_mouth5_TA_tex_txt",
"001b7280 000100 cbr_11_mouth6_TA_tex_txt",
"001b7380 000400 cbr_11_tmem_txt",
"",
"001b7780 000020 cbr_3_pal",
"001b77a0 000100 cbr_3_eye1_TA_tex_txt",
"001b78a0 000100 cbr_3_eye2_TA_tex_txt",
"001b79a0 000100 cbr_3_eye3_TA_tex_txt",
"001b7aa0 000100 cbr_3_eye4_TA_tex_txt",
"001b7ba0 000100 cbr_3_eye5_TA_tex_txt",
"001b7ca0 000100 cbr_3_eye6_TA_tex_txt",
"001b7da0 000100 cbr_3_eye7_TA_tex_txt",
"001b7ea0 000100 cbr_3_eye8_TA_tex_txt",
"001b7fa0 000100 cbr_3_mouth1_TA_tex_txt",
"001b80a0 000100 cbr_3_mouth2_TA_tex_txt",
"001b81a0 000100 cbr_3_mouth3_TA_tex_txt",
"001b82a0 000100 cbr_3_mouth4_TA_tex_txt",
"001b83a0 000100 cbr_3_mouth5_TA_tex_txt",
"001b84a0 000100 cbr_3_mouth6_TA_tex_txt",
"001b85a0 000400 cbr_3_tmem_txt",
"",
"001b89a0 000020 cbr_4_pal",
"001b89c0 000100 cbr_4_eye1_TA_tex_txt",
"001b8ac0 000100 cbr_4_eye2_TA_tex_txt",
"001b8bc0 000100 cbr_4_eye3_TA_tex_txt",
"001b8cc0 000100 cbr_4_eye4_TA_tex_txt",
"001b8dc0 000100 cbr_4_eye5_TA_tex_txt",
"001b8ec0 000100 cbr_4_eye6_TA_tex_txt",
"001b8fc0 000100 cbr_4_eye7_TA_tex_txt",
"001b90c0 000100 cbr_4_eye8_TA_tex_txt",
"001b91c0 000100 cbr_4_mouth1_TA_tex_txt",
"001b92c0 000100 cbr_4_mouth2_TA_tex_txt",
"001b93c0 000100 cbr_4_mouth3_TA_tex_txt",
"001b94c0 000100 cbr_4_mouth4_TA_tex_txt",
"001b95c0 000100 cbr_4_mouth5_TA_tex_txt",
"001b96c0 000100 cbr_4_mouth6_TA_tex_txt",
"001b97c0 000400 cbr_4_tmem_txt",
"",
"001b9bc0 000020 cbr_5_pal",
"001b9be0 000100 cbr_5_eye1_TA_tex_txt",
"001b9ce0 000100 cbr_5_eye2_TA_tex_txt",
"001b9de0 000100 cbr_5_eye3_TA_tex_txt",
"001b9ee0 000100 cbr_5_eye4_TA_tex_txt",
"001b9fe0 000100 cbr_5_eye5_TA_tex_txt",
"001ba0e0 000100 cbr_5_eye6_TA_tex_txt",
"001ba1e0 000100 cbr_5_eye7_TA_tex_txt",
"001ba2e0 000100 cbr_5_eye8_TA_tex_txt",
"001ba3e0 000100 cbr_5_mouth1_TA_tex_txt",
"001ba4e0 000100 cbr_5_mouth2_TA_tex_txt",
"001ba5e0 000100 cbr_5_mouth3_TA_tex_txt",
"001ba6e0 000100 cbr_5_mouth4_TA_tex_txt",
"001ba7e0 000100 cbr_5_mouth5_TA_tex_txt",
"001ba8e0 000100 cbr_5_mouth6_TA_tex_txt",
"001ba9e0 000400 cbr_5_tmem_txt",
"",
"001bade0 000020 cbr_6_pal",
"001bae00 000100 cbr_6_eye1_TA_tex_txt",
"001baf00 000100 cbr_6_eye2_TA_tex_txt",
"001bb000 000100 cbr_6_eye3_TA_tex_txt",
"001bb100 000100 cbr_6_eye4_TA_tex_txt",
"001bb200 000100 cbr_6_eye5_TA_tex_txt",
"001bb300 000100 cbr_6_eye6_TA_tex_txt",
"001bb400 000100 cbr_6_eye7_TA_tex_txt",
"001bb500 000100 cbr_6_eye8_TA_tex_txt",
"001bb600 000100 cbr_6_mouth1_TA_tex_txt",
"001bb700 000100 cbr_6_mouth2_TA_tex_txt",
"001bb800 000100 cbr_6_mouth3_TA_tex_txt",
"001bb900 000100 cbr_6_mouth4_TA_tex_txt",
"001bba00 000100 cbr_6_mouth5_TA_tex_txt",
"001bbb00 000100 cbr_6_mouth6_TA_tex_txt",
"001bbc00 000400 cbr_6_tmem_txt",
"",
"001bc000 000020 cbr_7_pal",
"001bc020 000100 cbr_7_eye1_TA_tex_txt",
"001bc120 000100 cbr_7_eye2_TA_tex_txt",
"001bc220 000100 cbr_7_eye3_TA_tex_txt",
"001bc320 000100 cbr_7_eye4_TA_tex_txt",
"001bc420 000100 cbr_7_eye5_TA_tex_txt",
"001bc520 000100 cbr_7_eye6_TA_tex_txt",
"001bc620 000100 cbr_7_eye7_TA_tex_txt",
"001bc720 000100 cbr_7_eye8_TA_tex_txt",
"001bc820 000100 cbr_7_mouth1_TA_tex_txt",
"001bc920 000100 cbr_7_mouth2_TA_tex_txt",
"001bca20 000100 cbr_7_mouth3_TA_tex_txt",
"001bcb20 000100 cbr_7_mouth4_TA_tex_txt",
"001bcc20 000100 cbr_7_mouth5_TA_tex_txt",
"001bcd20 000100 cbr_7_mouth6_TA_tex_txt",
"001bce20 000400 cbr_7_tmem_txt",
"",
"001bd220 000020 cbr_8_pal",
"001bd240 000100 cbr_8_eye1_TA_tex_txt",
"001bd340 000100 cbr_8_eye2_TA_tex_txt",
"001bd440 000100 cbr_8_eye3_TA_tex_txt",
"001bd540 000100 cbr_8_eye4_TA_tex_txt",
"001bd640 000100 cbr_8_eye5_TA_tex_txt",
"001bd740 000100 cbr_8_eye6_TA_tex_txt",
"001bd840 000100 cbr_8_eye7_TA_tex_txt",
"001bd940 000100 cbr_8_eye8_TA_tex_txt",
"001bda40 000100 cbr_8_mouth1_TA_tex_txt",
"001bdb40 000100 cbr_8_mouth2_TA_tex_txt",
"001bdc40 000100 cbr_8_mouth3_TA_tex_txt",
"001bdd40 000100 cbr_8_mouth4_TA_tex_txt",
"001bde40 000100 cbr_8_mouth5_TA_tex_txt",
"001bdf40 000100 cbr_8_mouth6_TA_tex_txt",
"001be040 000400 cbr_8_tmem_txt",
"",
"001be440 000020 cbr_9_pal",
"001be460 000100 cbr_9_eye1_TA_tex_txt",
"001be560 000100 cbr_9_eye2_TA_tex_txt",
"001be660 000100 cbr_9_eye3_TA_tex_txt",
"001be760 000100 cbr_9_eye4_TA_tex_txt",
"001be860 000100 cbr_9_eye5_TA_tex_txt",
"001be960 000100 cbr_9_eye6_TA_tex_txt",
"001bea60 000100 cbr_9_eye7_TA_tex_txt",
"001beb60 000100 cbr_9_eye8_TA_tex_txt",
"001bec60 000100 cbr_9_mouth1_TA_tex_txt",
"001bed60 000100 cbr_9_mouth2_TA_tex_txt",
"001bee60 000100 cbr_9_mouth3_TA_tex_txt",
"001bef60 000100 cbr_9_mouth4_TA_tex_txt",
"001bf060 000100 cbr_9_mouth5_TA_tex_txt",
"001bf160 000100 cbr_9_mouth6_TA_tex_txt",
"001bf260 000400 cbr_9_tmem_txt",
"",
"001bf660 000020 cbr_10_pal",
"001bf680 000100 cbr_10_eye1_TA_tex_txt",
"001bf780 000100 cbr_10_eye2_TA_tex_txt",
"001bf880 000100 cbr_10_eye3_TA_tex_txt",
"001bf980 000100 cbr_10_eye4_TA_tex_txt",
"001bfa80 000100 cbr_10_eye5_TA_tex_txt",
"001bfb80 000100 cbr_10_eye6_TA_tex_txt",
"001bfc80 000100 cbr_10_eye7_TA_tex_txt",
"001bfd80 000100 cbr_10_eye8_TA_tex_txt",
"001bfe80 000100 cbr_10_mouth1_TA_tex_txt",
"001bff80 000100 cbr_10_mouth2_TA_tex_txt",
"001c0080 000100 cbr_10_mouth3_TA_tex_txt",
"001c0180 000100 cbr_10_mouth4_TA_tex_txt",
"001c0280 000100 cbr_10_mouth5_TA_tex_txt",
"001c0380 000100 cbr_10_mouth6_TA_tex_txt",
"001c0480 000400 cbr_10_tmem_txt",
"",
"001c1128 0015b0 rcc_1_v",
"001c26d8 000208 head_rcc_model",
"001c28e0 000078 mouth_rcc_model",
"001c2958 0000b8 Rarm2_rcc_model",
"001c2a10 000078 Rarm1_rcc_model",
"001c2a88 0000b8 Larm2_rcc_model",
"001c2b40 000078 Larm1_rcc_model",
"001c2bb8 0000c8 chest_rcc_model",
"001c2c80 000078 tail1_rcc_model",
"001c2cf8 0000a0 tail2_rcc_model",
"001c2d98 000080 Rfoot2_rcc_model",
"001c2e18 000058 Rfoot1_rcc_model",
"001c2e70 000080 Lfoot2_rcc_model",
"001c2ef0 000058 Lfoot1_rcc_model",
"001c2f48 000080 base_rcc_model",
"001c2fc8 000138 cKF_je_r_rcc_1_tbl",
"001c3100 000008 cKF_bs_r_rcc_1",
"",
"001c3120 000020 rcc_1_pal",
"001c3140 000100 rcc_1_eye1_TA_tex_txt",
"001c3240 000100 rcc_1_eye2_TA_tex_txt",
"001c3340 000100 rcc_1_eye3_TA_tex_txt",
"001c3440 000100 rcc_1_eye4_TA_tex_txt",
"001c3540 000100 rcc_1_eye5_TA_tex_txt",
"001c3640 000100 rcc_1_eye6_TA_tex_txt",
"001c3740 000100 rcc_1_eye7_TA_tex_txt",
"001c3840 000100 rcc_1_eye8_TA_tex_txt",
"001c3940 0006c0 rcc_1_tmem_txt",
"",
"001c4000 001630 cow_1_v",
"001c5630 0001e8 head_cow_model",
"001c5818 000088 Rarm2_cow_model",
"001c58a0 000078 Rarm1_cow_model",
"001c5918 000088 Larm2_cow_model",
"001c59a0 000078 Larm1_cow_model",
"001c5a18 0000a8 chest_cow_model",
"001c5ac0 000060 tail1_cow_model",
"001c5b20 000090 tail2_cow_model",
"001c5bb0 000080 Rfoot2_cow_model",
"001c5c30 0000c0 Rfoot1_cow_model",
"001c5cf0 000080 Lfoot2_cow_model",
"001c5d70 0000c0 Lfoot1_cow_model",
"001c5e30 000070 base_cow_model",
"001c5ea0 000138 cKF_je_r_cow_1_tbl",
"001c5fd8 000008 cKF_bs_r_cow_1",
"",
"001c5fe0 000020 cow_1_pal",
"001c6000 000100 cow_1_eye1_TA_tex_txt",
"001c6100 000100 cow_1_eye2_TA_tex_txt",
"001c6200 000100 cow_1_eye3_TA_tex_txt",
"001c6300 000100 cow_1_eye4_TA_tex_txt",
"001c6400 000100 cow_1_eye5_TA_tex_txt",
"001c6500 000100 cow_1_eye6_TA_tex_txt",
"001c6600 000100 cow_1_eye7_TA_tex_txt",
"001c6700 000100 cow_1_eye8_TA_tex_txt",
"001c6800 000100 cow_1_mouth1_TA_tex_txt",
"001c6900 000100 cow_1_mouth2_TA_tex_txt",
"001c6a00 000100 cow_1_mouth3_TA_tex_txt",
"001c6b00 000100 cow_1_mouth4_TA_tex_txt",
"001c6c00 000100 cow_1_mouth5_TA_tex_txt",
"001c6d00 000100 cow_1_mouth6_TA_tex_txt",
"001c6e00 000400 cow_1_tmem_txt",
"",
"001c7200 000020 cow_2_pal",
"001c7220 000100 cow_2_eye1_TA_tex_txt",
"001c7320 000100 cow_2_eye2_TA_tex_txt",
"001c7420 000100 cow_2_eye3_TA_tex_txt",
"001c7520 000100 cow_2_eye4_TA_tex_txt",
"001c7620 000100 cow_2_eye5_TA_tex_txt",
"001c7720 000100 cow_2_eye6_TA_tex_txt",
"001c7820 000100 cow_2_eye7_TA_tex_txt",
"001c7920 000100 cow_2_eye8_TA_tex_txt",
"001c7a20 000100 cow_2_mouth1_TA_tex_txt",
"001c7b20 000100 cow_2_mouth2_TA_tex_txt",
"001c7c20 000100 cow_2_mouth3_TA_tex_txt",
"001c7d20 000100 cow_2_mouth4_TA_tex_txt",
"001c7e20 000100 cow_2_mouth5_TA_tex_txt",
"001c7f20 000100 cow_2_mouth6_TA_tex_txt",
"001c8020 000400 cow_2_tmem_txt",
"",
"001c8420 000020 cow_3_pal",
"001c8440 000100 cow_3_eye1_TA_tex_txt",
"001c8540 000100 cow_3_eye2_TA_tex_txt",
"001c8640 000100 cow_3_eye3_TA_tex_txt",
"001c8740 000100 cow_3_eye4_TA_tex_txt",
"001c8840 000100 cow_3_eye5_TA_tex_txt",
"001c8940 000100 cow_3_eye6_TA_tex_txt",
"001c8a40 000100 cow_3_eye7_TA_tex_txt",
"001c8b40 000100 cow_3_eye8_TA_tex_txt",
"001c8c40 000100 cow_3_mouth1_TA_tex_txt",
"001c8d40 000100 cow_3_mouth2_TA_tex_txt",
"001c8e40 000100 cow_3_mouth3_TA_tex_txt",
"001c8f40 000100 cow_3_mouth4_TA_tex_txt",
"001c9040 000100 cow_3_mouth5_TA_tex_txt",
"001c9140 000100 cow_3_mouth6_TA_tex_txt",
"001c9240 000400 cow_3_tmem_txt",
"",
"001c9640 000020 cow_4_pal",
"001c9660 000100 cow_4_eye1_TA_tex_txt",
"001c9760 000100 cow_4_eye2_TA_tex_txt",
"001c9860 000100 cow_4_eye3_TA_tex_txt",
"001c9960 000100 cow_4_eye4_TA_tex_txt",
"001c9a60 000100 cow_4_eye5_TA_tex_txt",
"001c9b60 000100 cow_4_eye6_TA_tex_txt",
"001c9c60 000100 cow_4_eye7_TA_tex_txt",
"001c9d60 000100 cow_4_eye8_TA_tex_txt",
"001c9e60 000100 cow_4_mouth1_TA_tex_txt",
"001c9f60 000100 cow_4_mouth2_TA_tex_txt",
"001ca060 000100 cow_4_mouth3_TA_tex_txt",
"001ca160 000100 cow_4_mouth4_TA_tex_txt",
"001ca260 000100 cow_4_mouth5_TA_tex_txt",
"001ca360 000100 cow_4_mouth6_TA_tex_txt",
"001ca460 000400 cow_4_tmem_txt",
"",
"001ca860 001790 crd_1_v",
"001cbff0 0001a8 head_crd_model",
"001cc198 000108 mouth_crd_model",
"001cc2a0 000088 Rarm2_crd_model",
"001cc328 000078 Rarm1_crd_model",
"001cc3a0 000088 Larm2_crd_model",
"001cc428 000078 Larm1_crd_model",
"001cc4a0 0000c8 chest_crd_model",
"001cc568 000080 tail1_crd_model",
"001cc5e8 000088 tail2_crd_model",
"001cc670 000080 Rfoot2_crd_model",
"001cc6f0 000058 Rfoot1_crd_model",
"001cc748 000080 Lfoot2_crd_model",
"001cc7c8 000058 Lfoot1_crd_model",
"001cc820 000088 base_crd_model",
"001cc8a8 000138 cKF_je_r_crd_1_tbl",
"001cc9e0 000008 cKF_bs_r_crd_1",
"",
"001cca00 000020 crd_1_pal",
"001cca20 000100 crd_1_eye1_TA_tex_txt",
"001ccb20 000100 crd_1_eye2_TA_tex_txt",
"001ccc20 000100 crd_1_eye3_TA_tex_txt",
"001ccd20 000100 crd_1_eye4_TA_tex_txt",
"001cce20 000100 crd_1_eye5_TA_tex_txt",
"001ccf20 000100 crd_1_eye6_TA_tex_txt",
"001cd020 000100 crd_1_eye7_TA_tex_txt",
"001cd120 000100 crd_1_eye8_TA_tex_txt",
"001cd220 000500 crd_1_tmem_txt",
"",
"001cd720 000020 crd_2_pal",
"001cd740 000100 crd_2_eye1_TA_tex_txt",
"001cd840 000100 crd_2_eye2_TA_tex_txt",
"001cd940 000100 crd_2_eye3_TA_tex_txt",
"001cda40 000100 crd_2_eye4_TA_tex_txt",
"001cdb40 000100 crd_2_eye5_TA_tex_txt",
"001cdc40 000100 crd_2_eye6_TA_tex_txt",
"001cdd40 000100 crd_2_eye7_TA_tex_txt",
"001cde40 000100 crd_2_eye8_TA_tex_txt",
"001cdf40 000500 crd_2_tmem_txt",
"",
"001ce440 000020 crd_3_pal",
"001ce460 000100 crd_3_eye1_TA_tex_txt",
"001ce560 000100 crd_3_eye2_TA_tex_txt",
"001ce660 000100 crd_3_eye3_TA_tex_txt",
"001ce760 000100 crd_3_eye4_TA_tex_txt",
"001ce860 000100 crd_3_eye5_TA_tex_txt",
"001ce960 000100 crd_3_eye6_TA_tex_txt",
"001cea60 000100 crd_3_eye7_TA_tex_txt",
"001ceb60 000100 crd_3_eye8_TA_tex_txt",
"001cec60 000500 crd_3_tmem_txt",
"",
"001cf160 000020 crd_4_pal",
"001cf180 000100 crd_4_eye1_TA_tex_txt",
"001cf280 000100 crd_4_eye2_TA_tex_txt",
"001cf380 000100 crd_4_eye3_TA_tex_txt",
"001cf480 000100 crd_4_eye4_TA_tex_txt",
"001cf580 000100 crd_4_eye5_TA_tex_txt",
"001cf680 000100 crd_4_eye6_TA_tex_txt",
"001cf780 000100 crd_4_eye7_TA_tex_txt",
"001cf880 000100 crd_4_eye8_TA_tex_txt",
"001cf980 000500 crd_4_tmem_txt",
"",
"001cfe80 001a90 owl_1_v",
"001d1910 000240 head_owl_model",
"001d1b50 000098 mouth_owl_model",
"001d1be8 0000d0 Rarm2_owl_model",
"001d1cb8 000078 Rarm1_owl_model",
"001d1d30 0000d0 Larm2_owl_model",
"001d1e00 000078 Larm1_owl_model",
"001d1e78 0000d0 chest_owl_model",
"001d1f48 0000a8 tail1_owl_model",
"001d1ff0 0000a8 Rfoot3_owl_model",
"001d2098 000080 Rfoot2_owl_model",
"001d2118 000058 Rfoot1_owl_model",
"001d2170 0000a8 Lfoot3_owl_model",
"001d2218 000080 Lfoot2_owl_model",
"001d2298 000058 Lfoot1_owl_model",
"001d22f0 000078 base_owl_model",
"001d2368 000138 cKF_je_r_owl_1_tbl",
"001d24a0 000008 cKF_bs_r_owl_1",
"",
"001d24c0 000020 owl_1_pal",
"001d24e0 000100 owl_1_eye1_TA_tex_txt",
"001d25e0 000100 owl_1_eye2_TA_tex_txt",
"001d26e0 000100 owl_1_eye3_TA_tex_txt",
"001d27e0 000100 owl_1_eye4_TA_tex_txt",
"001d28e0 000100 owl_1_eye5_TA_tex_txt",
"001d29e0 000100 owl_1_eye6_TA_tex_txt",
"001d2ae0 000100 owl_1_eye7_TA_tex_txt",
"001d2be0 000100 owl_1_eye8_TA_tex_txt",
"001d2ce0 000640 owl_1_tmem_txt",
"",
"001d3320 001520 rcd_1_v",
"001d4840 0001b8 head_rcd_model",
"001d49f8 000078 mouth_rcd_model",
"001d4a70 0000b8 Rarm2_rcd_model",
"001d4b28 000078 Rarm1_rcd_model",
"001d4ba0 0000b8 Larm2_rcd_model",
"001d4c58 000078 Larm1_rcd_model",
"001d4cd0 0000c8 chest_rcd_model",
"001d4d98 000078 tail1_rcd_model",
"001d4e10 0000a0 tail2_rcd_model",
"001d4eb0 000080 Rfoot2_rcd_model",
"001d4f30 000058 Rfoot1_rcd_model",
"001d4f88 000080 Lfoot2_rcd_model",
"001d5008 000058 Lfoot1_rcd_model",
"001d5060 000080 base_rcd_model",
"001d50e0 000138 cKF_je_r_rcd_1_tbl",
"001d5218 000008 cKF_bs_r_rcd_1",
"",
"001d5220 000020 rcd_1_pal",
"001d5240 000100 rcd_1_eye1_TA_tex_txt",
"001d5340 000100 rcd_1_eye2_TA_tex_txt",
"001d5440 000100 rcd_1_eye3_TA_tex_txt",
"001d5540 000100 rcd_1_eye4_TA_tex_txt",
"001d5640 000100 rcd_1_eye5_TA_tex_txt",
"001d5740 000100 rcd_1_eye6_TA_tex_txt",
"001d5840 000100 rcd_1_eye7_TA_tex_txt",
"001d5940 000100 rcd_1_eye8_TA_tex_txt",
"001d5a40 000640 rcd_1_tmem_txt",
"",
"001d6080 001ae0 grf_1_v",
"001d7b60 000220 head_grf_model",
"001d7d80 0000d8 mouth_grf_model",
"001d7e58 000088 Rarm2_grf_model",
"001d7ee0 000078 Rarm1_grf_model",
"001d7f58 000088 Larm2_grf_model",
"001d7fe0 000078 Larm1_grf_model",
"001d8058 000130 chest_grf_model",
"001d8188 000058 tail1_grf_model",
"001d81e0 000090 tail2_grf_model",
"001d8270 0000a0 Rfoot2_grf_model",
"001d8310 000060 Rfoot1_grf_model",
"001d8370 0000a0 Lfoot2_grf_model",
"001d8410 000060 Lfoot1_grf_model",
"001d8470 000078 base_grf_model",
"001d84e8 000138 cKF_je_r_grf_1_tbl",
"001d8620 000008 cKF_bs_r_grf_1",
"",
"001d8640 000020 grf_1_pal",
"001d8660 000100 grf_1_eye1_TA_tex_txt",
"001d8760 000100 grf_1_eye2_TA_tex_txt",
"001d8860 000100 grf_1_eye3_TA_tex_txt",
"001d8960 000100 grf_1_eye4_TA_tex_txt",
"001d8a60 000100 grf_1_eye5_TA_tex_txt",
"001d8b60 000100 grf_1_eye6_TA_tex_txt",
"001d8c60 000100 grf_1_eye7_TA_tex_txt",
"001d8d60 000100 grf_1_eye8_TA_tex_txt",
"001d8e60 000700 grf_1_tmem_txt",
"",
"001d9560 0016b0 dog_1_v",
"001dac10 0001e8 head_dog_model",
"001dadf8 000080 Rarm2_dog_model",
"001dae78 000078 Rarm_dog_model",
"001daef0 000080 Larm2_dog_model",
"001daf70 000078 Larm1_dog_model",
"001dafe8 0000a8 chest_dog_model",
"001db090 000058 tail1_dog_model",
"001db0e8 000090 tail2_dog_model",
"001db178 000088 Rfoot2_dog_model",
"001db200 000080 Rfoot1_dog_model",
"001db280 000088 Lfoot2_dog_model",
"001db308 000080 Lfoot1_dog_model",
"001db388 000078 base_dog_model",
"001db400 000138 cKF_je_r_dog_1_tbl",
"001db538 000008 cKF_bs_r_dog_1",
"",
"001db540 000020 dog_1_pal",
"001db560 000100 dog_1_eye1_TA_tex_txt",
"001db660 000100 dog_1_eye2_TA_tex_txt",
"001db760 000100 dog_1_eye3_TA_tex_txt",
"001db860 000100 dog_1_eye4_TA_tex_txt",
"001db960 000100 dog_1_eye5_TA_tex_txt",
"001dba60 000100 dog_1_eye6_TA_tex_txt",
"001dbb60 000100 dog_1_eye7_TA_tex_txt",
"001dbc60 000100 dog_1_eye8_TA_tex_txt",
"001dbd60 000100 dog_1_mouth1_TA_tex_txt",
"001dbe60 000100 dog_1_mouth2_TA_tex_txt",
"001dbf60 000100 dog_1_mouth3_TA_tex_txt",
"001dc060 000100 dog_1_mouth4_TA_tex_txt",
"001dc160 000100 dog_1_mouth5_TA_tex_txt",
"001dc260 000100 dog_1_mouth6_TA_tex_txt",
"001dc360 000400 dog_1_tmem_txt",
"",
"001dc760 000020 dog_2_pal",
"001dc780 000100 dog_2_eye1_TA_tex_txt",
"001dc880 000100 dog_2_eye2_TA_tex_txt",
"001dc980 000100 dog_2_eye3_TA_tex_txt",
"001dca80 000100 dog_2_eye4_TA_tex_txt",
"001dcb80 000100 dog_2_eye5_TA_tex_txt",
"001dcc80 000100 dog_2_eye6_TA_tex_txt",
"001dcd80 000100 dog_2_eye7_TA_tex_txt",
"001dce80 000100 dog_2_eye8_TA_tex_txt",
"001dcf80 000100 dog_2_mouth1_TA_tex_txt",
"001dd080 000100 dog_2_mouth2_TA_tex_txt",
"001dd180 000100 dog_2_mouth3_TA_tex_txt",
"001dd280 000100 dog_2_mouth4_TA_tex_txt",
"001dd380 000100 dog_2_mouth5_TA_tex_txt",
"001dd480 000100 dog_2_mouth6_TA_tex_txt",
"001dd580 000400 dog_2_tmem_txt",
"",
"001dd980 000020 dog_3_pal",
"001dd9a0 000100 dog_3_eye1_TA_tex_txt",
"001ddaa0 000100 dog_3_eye2_TA_tex_txt",
"001ddba0 000100 dog_3_eye3_TA_tex_txt",
"001ddca0 000100 dog_3_eye4_TA_tex_txt",
"001ddda0 000100 dog_3_eye5_TA_tex_txt",
"001ddea0 000100 dog_3_eye6_TA_tex_txt",
"001ddfa0 000100 dog_3_eye7_TA_tex_txt",
"001de0a0 000100 dog_3_eye8_TA_tex_txt",
"001de1a0 000100 dog_3_mouth1_TA_tex_txt",
"001de2a0 000100 dog_3_mouth2_TA_tex_txt",
"001de3a0 000100 dog_3_mouth3_TA_tex_txt",
"001de4a0 000100 dog_3_mouth4_TA_tex_txt",
"001de5a0 000100 dog_3_mouth5_TA_tex_txt",
"001de6a0 000100 dog_3_mouth6_TA_tex_txt",
"001de7a0 000400 dog_3_tmem_txt",
"",
"001deba0 000020 dog_4_pal",
"001debc0 000100 dog_4_eye1_TA_tex_txt",
"001decc0 000100 dog_4_eye2_TA_tex_txt",
"001dedc0 000100 dog_4_eye3_TA_tex_txt",
"001deec0 000100 dog_4_eye4_TA_tex_txt",
"001defc0 000100 dog_4_eye5_TA_tex_txt",
"001df0c0 000100 dog_4_eye6_TA_tex_txt",
"001df1c0 000100 dog_4_eye7_TA_tex_txt",
"001df2c0 000100 dog_4_eye8_TA_tex_txt",
"001df3c0 000100 dog_4_mouth1_TA_tex_txt",
"001df4c0 000100 dog_4_mouth2_TA_tex_txt",
"001df5c0 000100 dog_4_mouth3_TA_tex_txt",
"001df6c0 000100 dog_4_mouth4_TA_tex_txt",
"001df7c0 000100 dog_4_mouth5_TA_tex_txt",
"001df8c0 000100 dog_4_mouth6_TA_tex_txt",
"001df9c0 000400 dog_4_tmem_txt",
"",
"001dfdc0 000020 dog_5_pal",
"001dfde0 000100 dog_5_eye1_TA_tex_txt",
"001dfee0 000100 dog_5_eye2_TA_tex_txt",
"001dffe0 000100 dog_5_eye3_TA_tex_txt",
"001e00e0 000100 dog_5_eye4_TA_tex_txt",
"001e01e0 000100 dog_5_eye5_TA_tex_txt",
"001e02e0 000100 dog_5_eye6_TA_tex_txt",
"001e03e0 000100 dog_5_eye7_TA_tex_txt",
"001e04e0 000100 dog_5_eye8_TA_tex_txt",
"001e05e0 000100 dog_5_mouth1_TA_tex_txt",
"001e06e0 000100 dog_5_mouth2_TA_tex_txt",
"001e07e0 000100 dog_5_mouth3_TA_tex_txt",
"001e08e0 000100 dog_5_mouth4_TA_tex_txt",
"001e09e0 000100 dog_5_mouth5_TA_tex_txt",
"001e0ae0 000100 dog_5_mouth6_TA_tex_txt",
"001e0be0 000400 dog_5_tmem_txt",
"",
"001e0fe0 000020 dog_6_pal",
"001e1000 000100 dog_6_eye1_TA_tex_txt",
"001e1100 000100 dog_6_eye2_TA_tex_txt",
"001e1200 000100 dog_6_eye3_TA_tex_txt",
"001e1300 000100 dog_6_eye4_TA_tex_txt",
"001e1400 000100 dog_6_eye5_TA_tex_txt",
"001e1500 000100 dog_6_eye6_TA_tex_txt",
"001e1600 000100 dog_6_eye7_TA_tex_txt",
"001e1700 000100 dog_6_eye8_TA_tex_txt",
"001e1800 000100 dog_6_mouth1_TA_tex_txt",
"001e1900 000100 dog_6_mouth2_TA_tex_txt",
"001e1a00 000100 dog_6_mouth3_TA_tex_txt",
"001e1b00 000100 dog_6_mouth4_TA_tex_txt",
"001e1c00 000100 dog_6_mouth5_TA_tex_txt",
"001e1d00 000100 dog_6_mouth6_TA_tex_txt",
"001e1e00 000400 dog_6_tmem_txt",
"",
"001e2200 000020 dog_7_pal",
"001e2220 000100 dog_7_eye1_TA_tex_txt",
"001e2320 000100 dog_7_eye2_TA_tex_txt",
"001e2420 000100 dog_7_eye3_TA_tex_txt",
"001e2520 000100 dog_7_eye4_TA_tex_txt",
"001e2620 000100 dog_7_eye5_TA_tex_txt",
"001e2720 000100 dog_7_eye6_TA_tex_txt",
"001e2820 000100 dog_7_eye7_TA_tex_txt",
"001e2920 000100 dog_7_eye8_TA_tex_txt",
"001e2a20 000100 dog_7_mouth1_TA_tex_txt",
"001e2b20 000100 dog_7_mouth2_TA_tex_txt",
"001e2c20 000100 dog_7_mouth3_TA_tex_txt",
"001e2d20 000100 dog_7_mouth4_TA_tex_txt",
"001e2e20 000100 dog_7_mouth5_TA_tex_txt",
"001e2f20 000100 dog_7_mouth6_TA_tex_txt",
"001e3020 000400 dog_7_tmem_txt",
"",
"001e3420 000020 dog_8_pal",
"001e3440 000100 dog_8_eye1_TA_tex_txt",
"001e3540 000100 dog_8_eye2_TA_tex_txt",
"001e3640 000100 dog_8_eye3_TA_tex_txt",
"001e3740 000100 dog_8_eye4_TA_tex_txt",
"001e3840 000100 dog_8_eye5_TA_tex_txt",
"001e3940 000100 dog_8_eye6_TA_tex_txt",
"001e3a40 000100 dog_8_eye7_TA_tex_txt",
"001e3b40 000100 dog_8_eye8_TA_tex_txt",
"001e3c40 000100 dog_8_mouth1_TA_tex_txt",
"001e3d40 000100 dog_8_mouth2_TA_tex_txt",
"001e3e40 000100 dog_8_mouth3_TA_tex_txt",
"001e3f40 000100 dog_8_mouth4_TA_tex_txt",
"001e4040 000100 dog_8_mouth5_TA_tex_txt",
"001e4140 000100 dog_8_mouth6_TA_tex_txt",
"001e4240 000400 dog_8_tmem_txt",
"",
"001e4640 000020 dog_9_pal",
"001e4660 000100 dog_9_eye1_TA_tex_txt",
"001e4760 000100 dog_9_eye2_TA_tex_txt",
"001e4860 000100 dog_9_eye3_TA_tex_txt",
"001e4960 000100 dog_9_eye4_TA_tex_txt",
"001e4a60 000100 dog_9_eye5_TA_tex_txt",
"001e4b60 000100 dog_9_eye6_TA_tex_txt",
"001e4c60 000100 dog_9_eye7_TA_tex_txt",
"001e4d60 000100 dog_9_eye8_TA_tex_txt",
"001e4e60 000100 dog_9_mouth1_TA_tex_txt",
"001e4f60 000100 dog_9_mouth2_TA_tex_txt",
"001e5060 000100 dog_9_mouth3_TA_tex_txt",
"001e5160 000100 dog_9_mouth4_TA_tex_txt",
"001e5260 000100 dog_9_mouth5_TA_tex_txt",
"001e5360 000100 dog_9_mouth6_TA_tex_txt",
"001e5460 000400 dog_9_tmem_txt",
"",
"001e5860 000020 dog_10_pal",
"001e5880 000100 dog_10_eye1_TA_tex_txt",
"001e5980 000100 dog_10_eye2_TA_tex_txt",
"001e5a80 000100 dog_10_eye3_TA_tex_txt",
"001e5b80 000100 dog_10_eye4_TA_tex_txt",
"001e5c80 000100 dog_10_eye5_TA_tex_txt",
"001e5d80 000100 dog_10_eye6_TA_tex_txt",
"001e5e80 000100 dog_10_eye7_TA_tex_txt",
"001e5f80 000100 dog_10_eye8_TA_tex_txt",
"001e6080 000100 dog_10_mouth1_TA_tex_txt",
"001e6180 000100 dog_10_mouth2_TA_tex_txt",
"001e6280 000100 dog_10_mouth3_TA_tex_txt",
"001e6380 000100 dog_10_mouth4_TA_tex_txt",
"001e6480 000100 dog_10_mouth5_TA_tex_txt",
"001e6580 000100 dog_10_mouth6_TA_tex_txt",
"001e6680 000400 dog_10_tmem_txt",
"",
"001e6a80 001860 seg_1_v",
"001e82e0 000198 head_seg_model",
"001e8478 000080 mouth_seg_model",
"001e84f8 0000c8 Rarm2_seg_model",
"001e85c0 000068 Rarm1_seg_model",
"001e8628 0000c8 Larm2_seg_model",
"001e86f0 000068 Larm1_seg_model",
"001e8758 000108 chest_seg_model",
"001e8860 000080 tail1_seg_model",
"001e88e0 000088 tail2_seg_model",
"001e8968 000088 Rfoot3_seg_model",
"001e89f0 000080 Rfoot2_seg_model",
"001e8a70 000058 Rfoot1_seg_model",
"001e8ac8 000088 Lfoot3_seg_model",
"001e8b50 000080 Lfoot2_seg_model",
"001e8bd0 000058 Lfoot1_seg_model",
"001e8c28 000080 base_seg_model",
"001e8ca8 000138 cKF_je_r_seg_1_tbl",
"001e8de0 000008 cKF_bs_r_seg_1",
"",
"001e8e00 000020 seg_1_pal",
"001e8e20 000100 seg_1_eye1_TA_tex_txt",
"001e8f20 000100 seg_1_eye2_TA_tex_txt",
"001e9020 000100 seg_1_eye3_TA_tex_txt",
"001e9120 000100 seg_1_eye4_TA_tex_txt",
"001e9220 000100 seg_1_eye5_TA_tex_txt",
"001e9320 000100 seg_1_eye6_TA_tex_txt",
"001e9420 000100 seg_1_eye7_TA_tex_txt",
"001e9520 000100 seg_1_eye8_TA_tex_txt",
"001e9620 000640 seg_1_tmem_txt",
"",
"001e9c60 001580 duk_1_v",
"001eb1e0 000148 head_duk_model",
"001eb328 000090 mouth_duk_model",
"001eb3b8 000080 Rarm2_duk_model",
"001eb438 000078 Rarm1_duk_model",
"001eb4b0 000080 Larm2_duk_model",
"001eb530 000078 Larm1_duk_model",
"001eb5a8 0000c8 chest_duk_model",
"001eb670 000078 tail1_duk_model",
"001eb6e8 000088 Rfoot3_duk_model",
"001eb770 000080 Rfoot2_duk_model",
"001eb7f0 000058 Rfoot1_duk_model",
"001eb848 000088 Lfoot3_duk_model",
"001eb8d0 000080 Lfoot2_duk_model",
"001eb950 000058 Lfoot1_duk_model",
"001eb9a8 000088 base_duk_model",
"001eba30 000138 cKF_je_r_duk_1_tbl",
"001ebb68 000008 cKF_bs_r_duk_1",
"",
"001ebb80 000020 duk_1_pal",
"001ebba0 000100 duk_1_eye1_TA_tex_txt",
"001ebca0 000100 duk_1_eye2_TA_tex_txt",
"001ebda0 000100 duk_1_eye3_TA_tex_txt",
"001ebea0 000100 duk_1_eye4_TA_tex_txt",
"001ebfa0 000100 duk_1_eye5_TA_tex_txt",
"001ec0a0 000100 duk_1_eye6_TA_tex_txt",
"001ec1a0 000100 duk_1_eye7_TA_tex_txt",
"001ec2a0 000100 duk_1_eye8_TA_tex_txt",
"001ec3a0 000100 duk_1_mouth1_TA_tex_txt",
"001ec4a0 000100 duk_1_mouth2_TA_tex_txt",
"001ec5a0 000100 duk_1_mouth3_TA_tex_txt",
"001ec6a0 000100 duk_1_mouth4_TA_tex_txt",
"001ec7a0 000100 duk_1_mouth5_TA_tex_txt",
"001ec8a0 000100 duk_1_mouth6_TA_tex_txt",
"001ec9a0 000400 duk_1_tmem_txt",
"",
"001ecda0 000020 duk_2_pal",
"001ecdc0 000100 duk_2_eye1_TA_tex_txt",
"001ecec0 000100 duk_2_eye2_TA_tex_txt",
"001ecfc0 000100 duk_2_eye3_TA_tex_txt",
"001ed0c0 000100 duk_2_eye4_TA_tex_txt",
"001ed1c0 000100 duk_2_eye5_TA_tex_txt",
"001ed2c0 000100 duk_2_eye6_TA_tex_txt",
"001ed3c0 000100 duk_2_eye7_TA_tex_txt",
"001ed4c0 000100 duk_2_eye8_TA_tex_txt",
"001ed5c0 000100 duk_2_mouth1_TA_tex_txt",
"001ed6c0 000100 duk_2_mouth2_TA_tex_txt",
"001ed7c0 000100 duk_2_mouth3_TA_tex_txt",
"001ed8c0 000100 duk_2_mouth4_TA_tex_txt",
"001ed9c0 000100 duk_2_mouth5_TA_tex_txt",
"001edac0 000100 duk_2_mouth6_TA_tex_txt",
"001edbc0 000400 duk_2_tmem_txt",
"",
"001edfc0 000020 duk_11_pal",
"001edfe0 000100 duk_11_eye1_TA_tex_txt",
"001ee0e0 000100 duk_11_eye2_TA_tex_txt",
"001ee1e0 000100 duk_11_eye3_TA_tex_txt",
"001ee2e0 000100 duk_11_eye4_TA_tex_txt",
"001ee3e0 000100 duk_11_eye5_TA_tex_txt",
"001ee4e0 000100 duk_11_eye6_TA_tex_txt",
"001ee5e0 000100 duk_11_eye7_TA_tex_txt",
"001ee6e0 000100 duk_11_eye8_TA_tex_txt",
"001ee7e0 000100 duk_11_mouth1_TA_tex_txt",
"001ee8e0 000100 duk_11_mouth2_TA_tex_txt",
"001ee9e0 000100 duk_11_mouth3_TA_tex_txt",
"001eeae0 000100 duk_11_mouth4_TA_tex_txt",
"001eebe0 000100 duk_11_mouth5_TA_tex_txt",
"001eece0 000100 duk_11_mouth6_TA_tex_txt",
"001eede0 000400 duk_11_tmem_txt",
"",
"001ef1e0 000020 duk_3_pal",
"001ef200 000100 duk_3_eye1_TA_tex_txt",
"001ef300 000100 duk_3_eye2_TA_tex_txt",
"001ef400 000100 duk_3_eye3_TA_tex_txt",
"001ef500 000100 duk_3_eye4_TA_tex_txt",
"001ef600 000100 duk_3_eye5_TA_tex_txt",
"001ef700 000100 duk_3_eye6_TA_tex_txt",
"001ef800 000100 duk_3_eye7_TA_tex_txt",
"001ef900 000100 duk_3_eye8_TA_tex_txt",
"001efa00 000100 duk_3_mouth1_TA_tex_txt",
"001efb00 000100 duk_3_mouth2_TA_tex_txt",
"001efc00 000100 duk_3_mouth3_TA_tex_txt",
"001efd00 000100 duk_3_mouth4_TA_tex_txt",
"001efe00 000100 duk_3_mouth5_TA_tex_txt",
"001eff00 000100 duk_3_mouth6_TA_tex_txt",
"001f0000 000400 duk_3_tmem_txt",
"",
"001f0400 000020 duk_4_pal",
"001f0420 000100 duk_4_eye1_TA_tex_txt",
"001f0520 000100 duk_4_eye2_TA_tex_txt",
"001f0620 000100 duk_4_eye3_TA_tex_txt",
"001f0720 000100 duk_4_eye4_TA_tex_txt",
"001f0820 000100 duk_4_eye5_TA_tex_txt",
"001f0920 000100 duk_4_eye6_TA_tex_txt",
"001f0a20 000100 duk_4_eye7_TA_tex_txt",
"001f0b20 000100 duk_4_eye8_TA_tex_txt",
"001f0c20 000100 duk_4_mouth1_TA_tex_txt",
"001f0d20 000100 duk_4_mouth2_TA_tex_txt",
"001f0e20 000100 duk_4_mouth3_TA_tex_txt",
"001f0f20 000100 duk_4_mouth4_TA_tex_txt",
"001f1020 000100 duk_4_mouth5_TA_tex_txt",
"001f1120 000100 duk_4_mouth6_TA_tex_txt",
"001f1220 000400 duk_4_tmem_txt",
"",
"001f1620 000020 duk_5_pal",
"001f1640 000100 duk_5_eye1_TA_tex_txt",
"001f1740 000100 duk_5_eye2_TA_tex_txt",
"001f1840 000100 duk_5_eye3_TA_tex_txt",
"001f1940 000100 duk_5_eye4_TA_tex_txt",
"001f1a40 000100 duk_5_eye5_TA_tex_txt",
"001f1b40 000100 duk_5_eye6_TA_tex_txt",
"001f1c40 000100 duk_5_eye7_TA_tex_txt",
"001f1d40 000100 duk_5_eye8_TA_tex_txt",
"001f1e40 000100 duk_5_mouth1_TA_tex_txt",
"001f1f40 000100 duk_5_mouth2_TA_tex_txt",
"001f2040 000100 duk_5_mouth3_TA_tex_txt",
"001f2140 000100 duk_5_mouth4_TA_tex_txt",
"001f2240 000100 duk_5_mouth5_TA_tex_txt",
"001f2340 000100 duk_5_mouth6_TA_tex_txt",
"001f2440 000400 duk_5_tmem_txt",
"",
"001f2840 000020 duk_6_pal",
"001f2860 000100 duk_6_eye1_TA_tex_txt",
"001f2960 000100 duk_6_eye2_TA_tex_txt",
"001f2a60 000100 duk_6_eye3_TA_tex_txt",
"001f2b60 000100 duk_6_eye4_TA_tex_txt",
"001f2c60 000100 duk_6_eye5_TA_tex_txt",
"001f2d60 000100 duk_6_eye6_TA_tex_txt",
"001f2e60 000100 duk_6_eye7_TA_tex_txt",
"001f2f60 000100 duk_6_eye8_TA_tex_txt",
"001f3060 000100 duk_6_mouth1_TA_tex_txt",
"001f3160 000100 duk_6_mouth2_TA_tex_txt",
"001f3260 000100 duk_6_mouth3_TA_tex_txt",
"001f3360 000100 duk_6_mouth4_TA_tex_txt",
"001f3460 000100 duk_6_mouth5_TA_tex_txt",
"001f3560 000100 duk_6_mouth6_TA_tex_txt",
"001f3660 000400 duk_6_tmem_txt",
"",
"001f3a60 000020 duk_7_pal",
"001f3a80 000100 duk_7_eye1_TA_tex_txt",
"001f3b80 000100 duk_7_eye2_TA_tex_txt",
"001f3c80 000100 duk_7_eye3_TA_tex_txt",
"001f3d80 000100 duk_7_eye4_TA_tex_txt",
"001f3e80 000100 duk_7_eye5_TA_tex_txt",
"001f3f80 000100 duk_7_eye6_TA_tex_txt",
"001f4080 000100 duk_7_eye7_TA_tex_txt",
"001f4180 000100 duk_7_eye8_TA_tex_txt",
"001f4280 000100 duk_7_mouth1_TA_tex_txt",
"001f4380 000100 duk_7_mouth2_TA_tex_txt",
"001f4480 000100 duk_7_mouth3_TA_tex_txt",
"001f4580 000100 duk_7_mouth4_TA_tex_txt",
"001f4680 000100 duk_7_mouth5_TA_tex_txt",
"001f4780 000100 duk_7_mouth6_TA_tex_txt",
"001f4880 000400 duk_7_tmem_txt",
"",
"001f4c80 000020 duk_8_pal",
"001f4ca0 000100 duk_8_eye1_TA_tex_txt",
"001f4da0 000100 duk_8_eye2_TA_tex_txt",
"001f4ea0 000100 duk_8_eye3_TA_tex_txt",
"001f4fa0 000100 duk_8_eye4_TA_tex_txt",
"001f50a0 000100 duk_8_eye5_TA_tex_txt",
"001f51a0 000100 duk_8_eye6_TA_tex_txt",
"001f52a0 000100 duk_8_eye7_TA_tex_txt",
"001f53a0 000100 duk_8_eye8_TA_tex_txt",
"001f54a0 000100 duk_8_mouth1_TA_tex_txt",
"001f55a0 000100 duk_8_mouth2_TA_tex_txt",
"001f56a0 000100 duk_8_mouth3_TA_tex_txt",
"001f57a0 000100 duk_8_mouth4_TA_tex_txt",
"001f58a0 000100 duk_8_mouth5_TA_tex_txt",
"001f59a0 000100 duk_8_mouth6_TA_tex_txt",
"001f5aa0 000400 duk_8_tmem_txt",
"",
"001f5ea0 000020 duk_9_pal",
"001f5ec0 000100 duk_9_eye1_TA_tex_txt",
"001f5fc0 000100 duk_9_eye2_TA_tex_txt",
"001f60c0 000100 duk_9_eye3_TA_tex_txt",
"001f61c0 000100 duk_9_eye4_TA_tex_txt",
"001f62c0 000100 duk_9_eye5_TA_tex_txt",
"001f63c0 000100 duk_9_eye6_TA_tex_txt",
"001f64c0 000100 duk_9_eye7_TA_tex_txt",
"001f65c0 000100 duk_9_eye8_TA_tex_txt",
"001f66c0 000100 duk_9_mouth1_TA_tex_txt",
"001f67c0 000100 duk_9_mouth2_TA_tex_txt",
"001f68c0 000100 duk_9_mouth3_TA_tex_txt",
"001f69c0 000100 duk_9_mouth4_TA_tex_txt",
"001f6ac0 000100 duk_9_mouth5_TA_tex_txt",
"001f6bc0 000100 duk_9_mouth6_TA_tex_txt",
"001f6cc0 000400 duk_9_tmem_txt",
"",
"001f70c0 000020 duk_10_pal",
"001f70e0 000100 duk_10_eye1_TA_tex_txt",
"001f71e0 000100 duk_10_eye2_TA_tex_txt",
"001f72e0 000100 duk_10_eye3_TA_tex_txt",
"001f73e0 000100 duk_10_eye4_TA_tex_txt",
"001f74e0 000100 duk_10_eye5_TA_tex_txt",
"001f75e0 000100 duk_10_eye6_TA_tex_txt",
"001f76e0 000100 duk_10_eye7_TA_tex_txt",
"001f77e0 000100 duk_10_eye8_TA_tex_txt",
"001f78e0 000100 duk_10_mouth1_TA_tex_txt",
"001f79e0 000100 duk_10_mouth2_TA_tex_txt",
"001f7ae0 000100 duk_10_mouth3_TA_tex_txt",
"001f7be0 000100 duk_10_mouth4_TA_tex_txt",
"001f7ce0 000100 duk_10_mouth5_TA_tex_txt",
"001f7de0 000100 duk_10_mouth6_TA_tex_txt",
"001f7ee0 000400 duk_10_tmem_txt",
"",
"001f8330 0017c0 elp_1_v",
"001f9af0 0001c0 head_elp_model",
"001f9cb0 000090 mouth_elp_model",
"001f9d40 000088 Rarm2_elp_model",
"001f9dc8 000078 Rarm1_elp_model",
"001f9e40 000088 Larm2_elp_model",
"001f9ec8 000078 Larm1_elp_model",
"001f9f40 0000a0 chest_elp_model",
"001f9fe0 000058 tail1_elp_model",
"001fa038 000090 tail2_elp_model",
"001fa0c8 000090 Rfoot2_elp_model",
"001fa158 000080 Rfoot1_elp_model",
"001fa1d8 000090 Lfoot2_elp_model",
"001fa268 000080 Lfoot1_elp_model",
"001fa2e8 000078 base_elp_model",
"001fa360 000138 cKF_je_r_elp_1_tbl",
"001fa498 000008 cKF_bs_r_elp_1",
"",
"001fa4a0 000020 elp_1_pal",
"001fa4c0 000100 elp_1_eye1_TA_tex_txt",
"001fa5c0 000100 elp_1_eye2_TA_tex_txt",
"001fa6c0 000100 elp_1_eye3_TA_tex_txt",
"001fa7c0 000100 elp_1_eye4_TA_tex_txt",
"001fa8c0 000100 elp_1_eye5_TA_tex_txt",
"001fa9c0 000100 elp_1_eye6_TA_tex_txt",
"001faac0 000100 elp_1_eye7_TA_tex_txt",
"001fabc0 000100 elp_1_eye8_TA_tex_txt",
"001facc0 000100 elp_1_mouth1_TA_tex_txt",
"001fadc0 000100 elp_1_mouth2_TA_tex_txt",
"001faec0 000100 elp_1_mouth3_TA_tex_txt",
"001fafc0 000100 elp_1_mouth4_TA_tex_txt",
"001fb0c0 000100 elp_1_mouth5_TA_tex_txt",
"001fb1c0 000100 elp_1_mouth6_TA_tex_txt",
"001fb2c0 000400 elp_1_tmem_txt",
"",
"001fb6c0 000020 elp_2_pal",
"001fb6e0 000100 elp_2_eye1_TA_tex_txt",
"001fb7e0 000100 elp_2_eye2_TA_tex_txt",
"001fb8e0 000100 elp_2_eye3_TA_tex_txt",
"001fb9e0 000100 elp_2_eye4_TA_tex_txt",
"001fbae0 000100 elp_2_eye5_TA_tex_txt",
"001fbbe0 000100 elp_2_eye6_TA_tex_txt",
"001fbce0 000100 elp_2_eye7_TA_tex_txt",
"001fbde0 000100 elp_2_eye8_TA_tex_txt",
"001fbee0 000100 elp_2_mouth1_TA_tex_txt",
"001fbfe0 000100 elp_2_mouth2_TA_tex_txt",
"001fc0e0 000100 elp_2_mouth3_TA_tex_txt",
"001fc1e0 000100 elp_2_mouth4_TA_tex_txt",
"001fc2e0 000100 elp_2_mouth5_TA_tex_txt",
"001fc3e0 000100 elp_2_mouth6_TA_tex_txt",
"001fc4e0 000400 elp_2_tmem_txt",
"",
"001fc8e0 000020 elp_3_pal",
"001fc900 000100 elp_3_eye1_TA_tex_txt",
"001fca00 000100 elp_3_eye2_TA_tex_txt",
"001fcb00 000100 elp_3_eye3_TA_tex_txt",
"001fcc00 000100 elp_3_eye4_TA_tex_txt",
"001fcd00 000100 elp_3_eye5_TA_tex_txt",
"001fce00 000100 elp_3_eye6_TA_tex_txt",
"001fcf00 000100 elp_3_eye7_TA_tex_txt",
"001fd000 000100 elp_3_eye8_TA_tex_txt",
"001fd100 000100 elp_3_mouth1_TA_tex_txt",
"001fd200 000100 elp_3_mouth2_TA_tex_txt",
"001fd300 000100 elp_3_mouth3_TA_tex_txt",
"001fd400 000100 elp_3_mouth4_TA_tex_txt",
"001fd500 000100 elp_3_mouth5_TA_tex_txt",
"001fd600 000100 elp_3_mouth6_TA_tex_txt",
"001fd700 000400 elp_3_tmem_txt",
"",
"001fdb00 000020 elp_4_pal",
"001fdb20 000100 elp_4_eye1_TA_tex_txt",
"001fdc20 000100 elp_4_eye2_TA_tex_txt",
"001fdd20 000100 elp_4_eye3_TA_tex_txt",
"001fde20 000100 elp_4_eye4_TA_tex_txt",
"001fdf20 000100 elp_4_eye5_TA_tex_txt",
"001fe020 000100 elp_4_eye6_TA_tex_txt",
"001fe120 000100 elp_4_eye7_TA_tex_txt",
"001fe220 000100 elp_4_eye8_TA_tex_txt",
"001fe320 000100 elp_4_mouth1_TA_tex_txt",
"001fe420 000100 elp_4_mouth2_TA_tex_txt",
"001fe520 000100 elp_4_mouth3_TA_tex_txt",
"001fe620 000100 elp_4_mouth4_TA_tex_txt",
"001fe720 000100 elp_4_mouth5_TA_tex_txt",
"001fe820 000100 elp_4_mouth6_TA_tex_txt",
"001fe920 000400 elp_4_tmem_txt",
"",
"001fed20 000020 elp_5_pal",
"001fed40 000100 elp_5_eye1_TA_tex_txt",
"001fee40 000100 elp_5_eye2_TA_tex_txt",
"001fef40 000100 elp_5_eye3_TA_tex_txt",
"001ff040 000100 elp_5_eye4_TA_tex_txt",
"001ff140 000100 elp_5_eye5_TA_tex_txt",
"001ff240 000100 elp_5_eye6_TA_tex_txt",
"001ff340 000100 elp_5_eye7_TA_tex_txt",
"001ff440 000100 elp_5_eye8_TA_tex_txt",
"001ff540 000100 elp_5_mouth1_TA_tex_txt",
"001ff640 000100 elp_5_mouth2_TA_tex_txt",
"001ff740 000100 elp_5_mouth3_TA_tex_txt",
"001ff840 000100 elp_5_mouth4_TA_tex_txt",
"001ff940 000100 elp_5_mouth5_TA_tex_txt",
"001ffa40 000100 elp_5_mouth6_TA_tex_txt",
"001ffb40 000400 elp_5_tmem_txt",
"",
"001fff40 000020 elp_6_pal",
"001fff60 000100 elp_6_eye1_TA_tex_txt",
"00200060 000100 elp_6_eye2_TA_tex_txt",
"00200160 000100 elp_6_eye3_TA_tex_txt",
"00200260 000100 elp_6_eye4_TA_tex_txt",
"00200360 000100 elp_6_eye5_TA_tex_txt",
"00200460 000100 elp_6_eye6_TA_tex_txt",
"00200560 000100 elp_6_eye7_TA_tex_txt",
"00200660 000100 elp_6_eye8_TA_tex_txt",
"00200760 000100 elp_6_mouth1_TA_tex_txt",
"00200860 000100 elp_6_mouth2_TA_tex_txt",
"00200960 000100 elp_6_mouth3_TA_tex_txt",
"00200a60 000100 elp_6_mouth4_TA_tex_txt",
"00200b60 000100 elp_6_mouth5_TA_tex_txt",
"00200c60 000100 elp_6_mouth6_TA_tex_txt",
"00200d60 000400 elp_6_tmem_txt",
"",
"00201160 000020 elp_7_pal",
"00201180 000100 elp_7_eye1_TA_tex_txt",
"00201280 000100 elp_7_eye2_TA_tex_txt",
"00201380 000100 elp_7_eye3_TA_tex_txt",
"00201480 000100 elp_7_eye4_TA_tex_txt",
"00201580 000100 elp_7_eye5_TA_tex_txt",
"00201680 000100 elp_7_eye6_TA_tex_txt",
"00201780 000100 elp_7_eye7_TA_tex_txt",
"00201880 000100 elp_7_eye8_TA_tex_txt",
"00201980 000100 elp_7_mouth1_TA_tex_txt",
"00201a80 000100 elp_7_mouth2_TA_tex_txt",
"00201b80 000100 elp_7_mouth3_TA_tex_txt",
"00201c80 000100 elp_7_mouth4_TA_tex_txt",
"00201d80 000100 elp_7_mouth5_TA_tex_txt",
"00201e80 000100 elp_7_mouth6_TA_tex_txt",
"00201f80 000400 elp_7_tmem_txt",
"",
"0020a880 001240 flg_1_v",
"0020bac0 000148 head_flg_model",
"0020bc08 000088 Rarm2_flg_model",
"0020bc90 000078 Rarm1_flg_model",
"0020bd08 000088 Larm2_flg_model",
"0020bd90 000078 Larm1_flg_model",
"0020be08 0000a8 chest_flg_model",
"0020beb0 000080 Rfoot2_flg_model",
"0020bf30 0000c0 Rfoot1_flg_model",
"0020bff0 000080 Lfoot2_flg_model",
"0020c070 0000c0 Lfoot1_flg_model",
"0020c130 000070 base_flg_model",
"0020c1a0 000138 cKF_je_r_flg_1_tbl",
"0020c2d8 000008 cKF_bs_r_flg_1",
"",
"0020c2e0 000020 flg_1_pal",
"0020c300 000100 flg_1_eye1_TA_tex_txt",
"0020c400 000100 flg_1_eye2_TA_tex_txt",
"0020c500 000100 flg_1_eye3_TA_tex_txt",
"0020c600 000100 flg_1_eye4_TA_tex_txt",
"0020c700 000100 flg_1_eye5_TA_tex_txt",
"0020c800 000100 flg_1_eye6_TA_tex_txt",
"0020c900 000100 flg_1_eye7_TA_tex_txt",
"0020ca00 000100 flg_1_eye8_TA_tex_txt",
"0020cb00 000100 flg_1_mouth1_TA_tex_txt",
"0020cc00 000100 flg_1_mouth2_TA_tex_txt",
"0020cd00 000100 flg_1_mouth3_TA_tex_txt",
"0020ce00 000100 flg_1_mouth4_TA_tex_txt",
"0020cf00 000100 flg_1_mouth5_TA_tex_txt",
"0020d000 000100 flg_1_mouth6_TA_tex_txt",
"0020d100 000400 flg_1_tmem_txt",
"",
"0020d500 000020 flg_2_pal",
"0020d520 000100 flg_2_eye1_TA_tex_txt",
"0020d620 000100 flg_2_eye2_TA_tex_txt",
"0020d720 000100 flg_2_eye3_TA_tex_txt",
"0020d820 000100 flg_2_eye4_TA_tex_txt",
"0020d920 000100 flg_2_eye5_TA_tex_txt",
"0020da20 000100 flg_2_eye6_TA_tex_txt",
"0020db20 000100 flg_2_eye7_TA_tex_txt",
"0020dc20 000100 flg_2_eye8_TA_tex_txt",
"0020dd20 000100 flg_2_mouth1_TA_tex_txt",
"0020de20 000100 flg_2_mouth2_TA_tex_txt",
"0020df20 000100 flg_2_mouth3_TA_tex_txt",
"0020e020 000100 flg_2_mouth4_TA_tex_txt",
"0020e120 000100 flg_2_mouth5_TA_tex_txt",
"0020e220 000100 flg_2_mouth6_TA_tex_txt",
"0020e320 000400 flg_2_tmem_txt",
"",
"0020e720 000020 flg_11_pal",
"0020e740 000100 flg_11_eye1_TA_tex_txt",
"0020e840 000100 flg_11_eye2_TA_tex_txt",
"0020e940 000100 flg_11_eye3_TA_tex_txt",
"0020ea40 000100 flg_11_eye4_TA_tex_txt",
"0020eb40 000100 flg_11_eye5_TA_tex_txt",
"0020ec40 000100 flg_11_eye6_TA_tex_txt",
"0020ed40 000100 flg_11_eye7_TA_tex_txt",
"0020ee40 000100 flg_11_eye8_TA_tex_txt",
"0020ef40 000100 flg_11_mouth1_TA_tex_txt",
"0020f040 000100 flg_11_mouth2_TA_tex_txt",
"0020f140 000100 flg_11_mouth3_TA_tex_txt",
"0020f240 000100 flg_11_mouth4_TA_tex_txt",
"0020f340 000100 flg_11_mouth5_TA_tex_txt",
"0020f440 000100 flg_11_mouth6_TA_tex_txt",
"0020f540 000400 flg_11_tmem_txt",
"",
"0020f940 000020 flg_12_pal",
"0020f960 000100 flg_12_eye1_TA_tex_txt",
"0020fa60 000100 flg_12_eye2_TA_tex_txt",
"0020fb60 000100 flg_12_eye3_TA_tex_txt",
"0020fc60 000100 flg_12_eye4_TA_tex_txt",
"0020fd60 000100 flg_12_eye5_TA_tex_txt",
"0020fe60 000100 flg_12_eye6_TA_tex_txt",
"0020ff60 000100 flg_12_eye7_TA_tex_txt",
"00210060 000100 flg_12_eye8_TA_tex_txt",
"00210160 000100 flg_12_mouth1_TA_tex_txt",
"00210260 000100 flg_12_mouth2_TA_tex_txt",
"00210360 000100 flg_12_mouth3_TA_tex_txt",
"00210460 000100 flg_12_mouth4_TA_tex_txt",
"00210560 000100 flg_12_mouth5_TA_tex_txt",
"00210660 000100 flg_12_mouth6_TA_tex_txt",
"00210760 000380 flg_12_tmem_txt",
"",
"00210ae0 000020 flg_13_pal",
"00210b00 000100 flg_13_eye1_TA_tex_txt",
"00210c00 000100 flg_13_eye2_TA_tex_txt",
"00210d00 000100 flg_13_eye3_TA_tex_txt",
"00210e00 000100 flg_13_eye4_TA_tex_txt",
"00210f00 000100 flg_13_eye5_TA_tex_txt",
"00211000 000100 flg_13_eye6_TA_tex_txt",
"00211100 000100 flg_13_eye7_TA_tex_txt",
"00211200 000100 flg_13_eye8_TA_tex_txt",
"00211300 000100 flg_13_mouth1_TA_tex_txt",
"00211400 000100 flg_13_mouth2_TA_tex_txt",
"00211500 000100 flg_13_mouth3_TA_tex_txt",
"00211600 000100 flg_13_mouth4_TA_tex_txt",
"00211700 000100 flg_13_mouth5_TA_tex_txt",
"00211800 000100 flg_13_mouth6_TA_tex_txt",
"00211900 000400 flg_13_tmem_txt",
"",
"00211d00 000020 flg_3_pal",
"00211d20 000100 flg_3_eye1_TA_tex_txt",
"00211e20 000100 flg_3_eye2_TA_tex_txt",
"00211f20 000100 flg_3_eye3_TA_tex_txt",
"00212020 000100 flg_3_eye4_TA_tex_txt",
"00212120 000100 flg_3_eye5_TA_tex_txt",
"00212220 000100 flg_3_eye6_TA_tex_txt",
"00212320 000100 flg_3_eye7_TA_tex_txt",
"00212420 000100 flg_3_eye8_TA_tex_txt",
"00212520 000100 flg_3_mouth1_TA_tex_txt",
"00212620 000100 flg_3_mouth2_TA_tex_txt",
"00212720 000100 flg_3_mouth3_TA_tex_txt",
"00212820 000100 flg_3_mouth4_TA_tex_txt",
"00212920 000100 flg_3_mouth5_TA_tex_txt",
"00212a20 000100 flg_3_mouth6_TA_tex_txt",
"00212b20 000400 flg_3_tmem_txt",
"",
"00212f20 000020 flg_4_pal",
"00212f40 000100 flg_4_eye1_TA_tex_txt",
"00213040 000100 flg_4_eye2_TA_tex_txt",
"00213140 000100 flg_4_eye3_TA_tex_txt",
"00213240 000100 flg_4_eye4_TA_tex_txt",
"00213340 000100 flg_4_eye5_TA_tex_txt",
"00213440 000100 flg_4_eye6_TA_tex_txt",
"00213540 000100 flg_4_eye7_TA_tex_txt",
"00213640 000100 flg_4_eye8_TA_tex_txt",
"00213740 000100 flg_4_mouth1_TA_tex_txt",
"00213840 000100 flg_4_mouth2_TA_tex_txt",
"00213940 000100 flg_4_mouth3_TA_tex_txt",
"00213a40 000100 flg_4_mouth4_TA_tex_txt",
"00213b40 000100 flg_4_mouth5_TA_tex_txt",
"00213c40 000100 flg_4_mouth6_TA_tex_txt",
"00213d40 000400 flg_4_tmem_txt",
"",
"00214140 000020 flg_5_pal",
"00214160 000100 flg_5_eye1_TA_tex_txt",
"00214260 000100 flg_5_eye2_TA_tex_txt",
"00214360 000100 flg_5_eye3_TA_tex_txt",
"00214460 000100 flg_5_eye4_TA_tex_txt",
"00214560 000100 flg_5_eye5_TA_tex_txt",
"00214660 000100 flg_5_eye6_TA_tex_txt",
"00214760 000100 flg_5_eye7_TA_tex_txt",
"00214860 000100 flg_5_eye8_TA_tex_txt",
"00214960 000100 flg_5_mouth1_TA_tex_txt",
"00214a60 000100 flg_5_mouth2_TA_tex_txt",
"00214b60 000100 flg_5_mouth3_TA_tex_txt",
"00214c60 000100 flg_5_mouth4_TA_tex_txt",
"00214d60 000100 flg_5_mouth5_TA_tex_txt",
"00214e60 000100 flg_5_mouth6_TA_tex_txt",
"00214f60 000400 flg_5_tmem_txt",
"",
"00215360 000020 flg_6_pal",
"00215380 000100 flg_6_eye1_TA_tex_txt",
"00215480 000100 flg_6_eye2_TA_tex_txt",
"00215580 000100 flg_6_eye3_TA_tex_txt",
"00215680 000100 flg_6_eye4_TA_tex_txt",
"00215780 000100 flg_6_eye5_TA_tex_txt",
"00215880 000100 flg_6_eye6_TA_tex_txt",
"00215980 000100 flg_6_eye7_TA_tex_txt",
"00215a80 000100 flg_6_eye8_TA_tex_txt",
"00215b80 000100 flg_6_mouth1_TA_tex_txt",
"00215c80 000100 flg_6_mouth2_TA_tex_txt",
"00215d80 000100 flg_6_mouth3_TA_tex_txt",
"00215e80 000100 flg_6_mouth4_TA_tex_txt",
"00215f80 000100 flg_6_mouth5_TA_tex_txt",
"00216080 000100 flg_6_mouth6_TA_tex_txt",
"00216180 000400 flg_6_tmem_txt",
"",
"00216580 000020 flg_7_pal",
"002165a0 000100 flg_7_eye1_TA_tex_txt",
"002166a0 000100 flg_7_eye2_TA_tex_txt",
"002167a0 000100 flg_7_eye3_TA_tex_txt",
"002168a0 000100 flg_7_eye4_TA_tex_txt",
"002169a0 000100 flg_7_eye5_TA_tex_txt",
"00216aa0 000100 flg_7_eye6_TA_tex_txt",
"00216ba0 000100 flg_7_eye7_TA_tex_txt",
"00216ca0 000100 flg_7_eye8_TA_tex_txt",
"00216da0 000100 flg_7_mouth1_TA_tex_txt",
"00216ea0 000100 flg_7_mouth2_TA_tex_txt",
"00216fa0 000100 flg_7_mouth3_TA_tex_txt",
"002170a0 000100 flg_7_mouth4_TA_tex_txt",
"002171a0 000100 flg_7_mouth5_TA_tex_txt",
"002172a0 000100 flg_7_mouth6_TA_tex_txt",
"002173a0 000400 flg_7_tmem_txt",
"",
"002177a0 000020 flg_8_pal",
"002177c0 000100 flg_8_eye1_TA_tex_txt",
"002178c0 000100 flg_8_eye2_TA_tex_txt",
"002179c0 000100 flg_8_eye3_TA_tex_txt",
"00217ac0 000100 flg_8_eye4_TA_tex_txt",
"00217bc0 000100 flg_8_eye5_TA_tex_txt",
"00217cc0 000100 flg_8_eye6_TA_tex_txt",
"00217dc0 000100 flg_8_eye7_TA_tex_txt",
"00217ec0 000100 flg_8_eye8_TA_tex_txt",
"00217fc0 000100 flg_8_mouth1_TA_tex_txt",
"002180c0 000100 flg_8_mouth2_TA_tex_txt",
"002181c0 000100 flg_8_mouth3_TA_tex_txt",
"002182c0 000100 flg_8_mouth4_TA_tex_txt",
"002183c0 000100 flg_8_mouth5_TA_tex_txt",
"002184c0 000100 flg_8_mouth6_TA_tex_txt",
"002185c0 000400 flg_8_tmem_txt",
"",
"002189c0 000020 flg_9_pal",
"002189e0 000100 flg_9_eye1_TA_tex_txt",
"00218ae0 000100 flg_9_eye2_TA_tex_txt",
"00218be0 000100 flg_9_eye3_TA_tex_txt",
"00218ce0 000100 flg_9_eye4_TA_tex_txt",
"00218de0 000100 flg_9_eye5_TA_tex_txt",
"00218ee0 000100 flg_9_eye6_TA_tex_txt",
"00218fe0 000100 flg_9_eye7_TA_tex_txt",
"002190e0 000100 flg_9_eye8_TA_tex_txt",
"002191e0 000100 flg_9_mouth1_TA_tex_txt",
"002192e0 000100 flg_9_mouth2_TA_tex_txt",
"002193e0 000100 flg_9_mouth3_TA_tex_txt",
"002194e0 000100 flg_9_mouth4_TA_tex_txt",
"002195e0 000100 flg_9_mouth5_TA_tex_txt",
"002196e0 000100 flg_9_mouth6_TA_tex_txt",
"002197e0 000400 flg_9_tmem_txt",
"",
"00219be0 000020 flg_10_pal",
"00219c00 000100 flg_10_eye1_TA_tex_txt",
"00219d00 000100 flg_10_eye2_TA_tex_txt",
"00219e00 000100 flg_10_eye3_TA_tex_txt",
"00219f00 000100 flg_10_eye4_TA_tex_txt",
"0021a000 000100 flg_10_eye5_TA_tex_txt",
"0021a100 000100 flg_10_eye6_TA_tex_txt",
"0021a200 000100 flg_10_eye7_TA_tex_txt",
"0021a300 000100 flg_10_eye8_TA_tex_txt",
"0021a400 000100 flg_10_mouth1_TA_tex_txt",
"0021a500 000100 flg_10_mouth2_TA_tex_txt",
"0021a600 000100 flg_10_mouth3_TA_tex_txt",
"0021a700 000100 flg_10_mouth4_TA_tex_txt",
"0021a800 000100 flg_10_mouth5_TA_tex_txt",
"0021a900 000100 flg_10_mouth6_TA_tex_txt",
"0021aa00 000400 flg_10_tmem_txt",
"",
"0021ae00 001b30 rcf_1_v",
"0021c930 000230 head_rcf_model",
"0021cb60 000078 mouth_rcf_model",
"0021cbd8 0000e0 hand_rcf_model",
"0021ccb8 000088 Rarm2_rcf_model",
"0021cd40 000078 Rarm1_rcf_model",
"0021cdb8 000088 Larm2_rcf_model",
"0021ce40 000078 Larm1_rcf_model",
"0021ceb8 000108 chest_rcf_model",
"0021cfc0 000078 tail1_rcf_model",
"0021d038 0000a0 tail2_rcf_model",
"0021d0d8 000080 Rfoot2_rcf_model",
"0021d158 000058 Rfoot1_rcf_model",
"0021d1b0 000080 Lfoot2_rcf_model",
"0021d230 000058 Lfoot1_rcf_model",
"0021d288 0000d8 base_rcf_model",
"0021d360 000138 cKF_je_r_rcf_1_tbl",
"0021d498 000008 cKF_bs_r_rcf_1",
"",
"0021d4a0 000020 rcf_1_pal",
"0021d4c0 000100 rcf_1_eye1_TA_tex_txt",
"0021d5c0 000100 rcf_1_eye2_TA_tex_txt",
"0021d6c0 000100 rcf_1_eye3_TA_tex_txt",
"0021d7c0 000100 rcf_1_eye4_TA_tex_txt",
"0021d8c0 000100 rcf_1_eye5_TA_tex_txt",
"0021d9c0 000100 rcf_1_eye6_TA_tex_txt",
"0021dac0 000100 rcf_1_eye7_TA_tex_txt",
"0021dbc0 000100 rcf_1_eye8_TA_tex_txt",
"0021dcc0 000700 rcf_1_tmem_txt",
"",
"0021f608 001110 gst_1_v",
"00220718 000218 head_gst_model",
"00220930 000050 feel_gst_model",
"00220980 0000a8 chest_gst_model",
"00220a28 0000a8 tail1_gst_model",
"00220ad0 000070 base_gst_model",
"00220b40 000138 cKF_je_r_gst_1_tbl",
"00220c78 000008 cKF_bs_r_gst_1",
"",
"00220c80 000020 gst_1_pal",
"00220ca0 000100 gst_1_eye1_TA_tex_txt",
"00220da0 000100 gst_1_eye2_TA_tex_txt",
"00220ea0 000100 gst_1_eye3_TA_tex_txt",
"00220fa0 000100 gst_1_eye4_TA_tex_txt",
"002210a0 000100 gst_1_eye5_TA_tex_txt",
"002211a0 000100 gst_1_eye6_TA_tex_txt",
"002212a0 000100 gst_1_eye7_TA_tex_txt",
"002213a0 000100 gst_1_eye8_TA_tex_txt",
"002214a0 000100 gst_1_mouth1_TA_tex_txt",
"002215a0 000100 gst_1_mouth2_TA_tex_txt",
"002216a0 000100 gst_1_mouth3_TA_tex_txt",
"002217a0 000100 gst_1_mouth4_TA_tex_txt",
"002218a0 000100 gst_1_mouth5_TA_tex_txt",
"002219a0 000100 gst_1_mouth6_TA_tex_txt",
"00221aa0 000180 gst_1_tmem_txt",
"",
"00224230 001640 goa_1_v",
"00225870 000220 head_goa_model",
"00225a90 000070 mouth_goa_model",
"00225b00 000088 Rarm2_goa_model",
"00225b88 000078 Rarm1_goa_model",
"00225c00 000088 Larm2_goa_model",
"00225c88 000078 Larm1_goa_model",
"00225d00 0000a0 chest_goa_model",
"00225da0 000060 tail1_goa_model",
"00225e00 000080 Rfoot2_goa_model",
"00225e80 000080 Rfoot1_goa_model",
"00225f00 000080 Lfoot2_goa_model",
"00225f80 000080 Lfoot1_goa_model",
"00226000 0000a8 base_goa_model",
"002260a8 000138 cKF_je_r_goa_1_tbl",
"002261e0 000008 cKF_bs_r_goa_1",
"",
"00226200 000020 goa_1_pal",
"00226220 000100 goa_1_eye1_TA_tex_txt",
"00226320 000100 goa_1_eye2_TA_tex_txt",
"00226420 000100 goa_1_eye3_TA_tex_txt",
"00226520 000100 goa_1_eye4_TA_tex_txt",
"00226620 000100 goa_1_eye5_TA_tex_txt",
"00226720 000100 goa_1_eye6_TA_tex_txt",
"00226820 000100 goa_1_eye7_TA_tex_txt",
"00226920 000100 goa_1_eye8_TA_tex_txt",
"00226a20 000100 goa_1_mouth1_TA_tex_txt",
"00226b20 000100 goa_1_mouth2_TA_tex_txt",
"00226c20 000100 goa_1_mouth3_TA_tex_txt",
"00226d20 000100 goa_1_mouth4_TA_tex_txt",
"00226e20 000100 goa_1_mouth5_TA_tex_txt",
"00226f20 000100 goa_1_mouth6_TA_tex_txt",
"00227020 000400 goa_1_tmem_txt",
"",
"00227420 000020 goa_2_pal",
"00227440 000100 goa_2_eye1_TA_tex_txt",
"00227540 000100 goa_2_eye2_TA_tex_txt",
"00227640 000100 goa_2_eye3_TA_tex_txt",
"00227740 000100 goa_2_eye4_TA_tex_txt",
"00227840 000100 goa_2_eye5_TA_tex_txt",
"00227940 000100 goa_2_eye6_TA_tex_txt",
"00227a40 000100 goa_2_eye7_TA_tex_txt",
"00227b40 000100 goa_2_eye8_TA_tex_txt",
"00227c40 000100 goa_2_mouth1_TA_tex_txt",
"00227d40 000100 goa_2_mouth2_TA_tex_txt",
"00227e40 000100 goa_2_mouth3_TA_tex_txt",
"00227f40 000100 goa_2_mouth4_TA_tex_txt",
"00228040 000100 goa_2_mouth5_TA_tex_txt",
"00228140 000100 goa_2_mouth6_TA_tex_txt",
"00228240 000400 goa_2_tmem_txt",
"",
"00228640 000020 goa_3_pal",
"00228660 000100 goa_3_eye1_TA_tex_txt",
"00228760 000100 goa_3_eye2_TA_tex_txt",
"00228860 000100 goa_3_eye3_TA_tex_txt",
"00228960 000100 goa_3_eye4_TA_tex_txt",
"00228a60 000100 goa_3_eye5_TA_tex_txt",
"00228b60 000100 goa_3_eye6_TA_tex_txt",
"00228c60 000100 goa_3_eye7_TA_tex_txt",
"00228d60 000100 goa_3_eye8_TA_tex_txt",
"00228e60 000100 goa_3_mouth1_TA_tex_txt",
"00228f60 000100 goa_3_mouth2_TA_tex_txt",
"00229060 000100 goa_3_mouth3_TA_tex_txt",
"00229160 000100 goa_3_mouth4_TA_tex_txt",
"00229260 000100 goa_3_mouth5_TA_tex_txt",
"00229360 000100 goa_3_mouth6_TA_tex_txt",
"00229460 000400 goa_3_tmem_txt",
"",
"00229860 000020 goa_4_pal",
"00229880 000100 goa_4_eye1_TA_tex_txt",
"00229980 000100 goa_4_eye2_TA_tex_txt",
"00229a80 000100 goa_4_eye3_TA_tex_txt",
"00229b80 000100 goa_4_eye4_TA_tex_txt",
"00229c80 000100 goa_4_eye5_TA_tex_txt",
"00229d80 000100 goa_4_eye6_TA_tex_txt",
"00229e80 000100 goa_4_eye7_TA_tex_txt",
"00229f80 000100 goa_4_eye8_TA_tex_txt",
"0022a080 000100 goa_4_mouth1_TA_tex_txt",
"0022a180 000100 goa_4_mouth2_TA_tex_txt",
"0022a280 000100 goa_4_mouth3_TA_tex_txt",
"0022a380 000100 goa_4_mouth4_TA_tex_txt",
"0022a480 000100 goa_4_mouth5_TA_tex_txt",
"0022a580 000100 goa_4_mouth6_TA_tex_txt",
"0022a680 000400 goa_4_tmem_txt",
"",
"0022aa80 000020 goa_5_pal",
"0022aaa0 000100 goa_5_eye1_TA_tex_txt",
"0022aba0 000100 goa_5_eye2_TA_tex_txt",
"0022aca0 000100 goa_5_eye3_TA_tex_txt",
"0022ada0 000100 goa_5_eye4_TA_tex_txt",
"0022aea0 000100 goa_5_eye5_TA_tex_txt",
"0022afa0 000100 goa_5_eye6_TA_tex_txt",
"0022b0a0 000100 goa_5_eye7_TA_tex_txt",
"0022b1a0 000100 goa_5_eye8_TA_tex_txt",
"0022b2a0 000100 goa_5_mouth1_TA_tex_txt",
"0022b3a0 000100 goa_5_mouth2_TA_tex_txt",
"0022b4a0 000100 goa_5_mouth3_TA_tex_txt",
"0022b5a0 000100 goa_5_mouth4_TA_tex_txt",
"0022b6a0 000100 goa_5_mouth5_TA_tex_txt",
"0022b7a0 000100 goa_5_mouth6_TA_tex_txt",
"0022b8a0 000400 goa_5_tmem_txt",
"",
"0022bca0 000020 goa_6_pal",
"0022bcc0 000100 goa_6_eye1_TA_tex_txt",
"0022bdc0 000100 goa_6_eye2_TA_tex_txt",
"0022bec0 000100 goa_6_eye3_TA_tex_txt",
"0022bfc0 000100 goa_6_eye4_TA_tex_txt",
"0022c0c0 000100 goa_6_eye5_TA_tex_txt",
"0022c1c0 000100 goa_6_eye6_TA_tex_txt",
"0022c2c0 000100 goa_6_eye7_TA_tex_txt",
"0022c3c0 000100 goa_6_eye8_TA_tex_txt",
"0022c4c0 000100 goa_6_mouth1_TA_tex_txt",
"0022c5c0 000100 goa_6_mouth2_TA_tex_txt",
"0022c6c0 000100 goa_6_mouth3_TA_tex_txt",
"0022c7c0 000100 goa_6_mouth4_TA_tex_txt",
"0022c8c0 000100 goa_6_mouth5_TA_tex_txt",
"0022c9c0 000100 goa_6_mouth6_TA_tex_txt",
"0022cac0 000400 goa_6_tmem_txt",
"",
"0022cec0 001ad0 gor_1_v",
"0022e990 000220 head_gor_model",
"0022ebb0 0000f0 mouth_gor_model",
"0022eca0 0000a0 Rarm2_gor_model",
"0022ed40 000090 Rarm1_gor_model",
"0022edd0 0000a0 Larm2_gor_model",
"0022ee70 000090 Larm1_gor_model",
"0022ef00 0000d8 chest_gor_model",
"0022efd8 000090 Rfoot2_gor_model",
"0022f068 0000c0 Rfoot1_gor_model",
"0022f128 000090 Lfoot2_gor_model",
"0022f1b8 0000c0 Lfoot1_gor_model",
"0022f278 000090 base_gor_model",
"0022f308 000138 cKF_je_r_gor_1_tbl",
"0022f440 000008 cKF_bs_r_gor_1",
"",
"0022f460 000020 gor_1_pal",
"0022f480 000100 gor_1_eye1_TA_tex_txt",
"0022f580 000100 gor_1_eye2_TA_tex_txt",
"0022f680 000100 gor_1_eye3_TA_tex_txt",
"0022f780 000100 gor_1_eye4_TA_tex_txt",
"0022f880 000100 gor_1_eye5_TA_tex_txt",
"0022f980 000100 gor_1_eye6_TA_tex_txt",
"0022fa80 000100 gor_1_eye7_TA_tex_txt",
"0022fb80 000100 gor_1_eye8_TA_tex_txt",
"0022fc80 000100 gor_1_mouth1_TA_tex_txt",
"0022fd80 000100 gor_1_mouth2_TA_tex_txt",
"0022fe80 000100 gor_1_mouth3_TA_tex_txt",
"0022ff80 000100 gor_1_mouth4_TA_tex_txt",
"00230080 000100 gor_1_mouth5_TA_tex_txt",
"00230180 000100 gor_1_mouth6_TA_tex_txt",
"00230280 000400 gor_1_tmem_txt",
"",
"00230680 000020 gor_2_pal",
"002306a0 000100 gor_2_eye1_TA_tex_txt",
"002307a0 000100 gor_2_eye2_TA_tex_txt",
"002308a0 000100 gor_2_eye3_TA_tex_txt",
"002309a0 000100 gor_2_eye4_TA_tex_txt",
"00230aa0 000100 gor_2_eye5_TA_tex_txt",
"00230ba0 000100 gor_2_eye6_TA_tex_txt",
"00230ca0 000100 gor_2_eye7_TA_tex_txt",
"00230da0 000100 gor_2_eye8_TA_tex_txt",
"00230ea0 000100 gor_2_mouth1_TA_tex_txt",
"00230fa0 000100 gor_2_mouth2_TA_tex_txt",
"002310a0 000100 gor_2_mouth3_TA_tex_txt",
"002311a0 000100 gor_2_mouth4_TA_tex_txt",
"002312a0 000100 gor_2_mouth5_TA_tex_txt",
"002313a0 000100 gor_2_mouth6_TA_tex_txt",
"002314a0 000400 gor_2_tmem_txt",
"",
"002318a0 000020 gor_3_pal",
"002318c0 000100 gor_3_eye1_TA_tex_txt",
"002319c0 000100 gor_3_eye2_TA_tex_txt",
"00231ac0 000100 gor_3_eye3_TA_tex_txt",
"00231bc0 000100 gor_3_eye4_TA_tex_txt",
"00231cc0 000100 gor_3_eye5_TA_tex_txt",
"00231dc0 000100 gor_3_eye6_TA_tex_txt",
"00231ec0 000100 gor_3_eye7_TA_tex_txt",
"00231fc0 000100 gor_3_eye8_TA_tex_txt",
"002320c0 000100 gor_3_mouth1_TA_tex_txt",
"002321c0 000100 gor_3_mouth2_TA_tex_txt",
"002322c0 000100 gor_3_mouth3_TA_tex_txt",
"002323c0 000100 gor_3_mouth4_TA_tex_txt",
"002324c0 000100 gor_3_mouth5_TA_tex_txt",
"002325c0 000100 gor_3_mouth6_TA_tex_txt",
"002326c0 000400 gor_3_tmem_txt",
"",
"00232ac0 000020 gor_4_pal",
"00232ae0 000100 gor_4_eye1_TA_tex_txt",
"00232be0 000100 gor_4_eye2_TA_tex_txt",
"00232ce0 000100 gor_4_eye3_TA_tex_txt",
"00232de0 000100 gor_4_eye4_TA_tex_txt",
"00232ee0 000100 gor_4_eye5_TA_tex_txt",
"00232fe0 000100 gor_4_eye6_TA_tex_txt",
"002330e0 000100 gor_4_eye7_TA_tex_txt",
"002331e0 000100 gor_4_eye8_TA_tex_txt",
"002332e0 000100 gor_4_mouth1_TA_tex_txt",
"002333e0 000100 gor_4_mouth2_TA_tex_txt",
"002334e0 000100 gor_4_mouth3_TA_tex_txt",
"002335e0 000100 gor_4_mouth4_TA_tex_txt",
"002336e0 000100 gor_4_mouth5_TA_tex_txt",
"002337e0 000100 gor_4_mouth6_TA_tex_txt",
"002338e0 000400 gor_4_tmem_txt",
"",
"00233ce0 000020 gor_5_pal",
"00233d00 000100 gor_5_eye1_TA_tex_txt",
"00233e00 000100 gor_5_eye2_TA_tex_txt",
"00233f00 000100 gor_5_eye3_TA_tex_txt",
"00234000 000100 gor_5_eye4_TA_tex_txt",
"00234100 000100 gor_5_eye5_TA_tex_txt",
"00234200 000100 gor_5_eye6_TA_tex_txt",
"00234300 000100 gor_5_eye7_TA_tex_txt",
"00234400 000100 gor_5_eye8_TA_tex_txt",
"00234500 000100 gor_5_mouth1_TA_tex_txt",
"00234600 000100 gor_5_mouth2_TA_tex_txt",
"00234700 000100 gor_5_mouth3_TA_tex_txt",
"00234800 000100 gor_5_mouth4_TA_tex_txt",
"00234900 000100 gor_5_mouth5_TA_tex_txt",
"00234a00 000100 gor_5_mouth6_TA_tex_txt",
"00234b00 000400 gor_5_tmem_txt",
"",
"00234f00 0013b0 xct_1_v",
"002362b0 000190 head_xct_model",
"00236440 000088 Rarm2_xct_model",
"002364c8 000078 Rarm1_xct_model",
"00236540 000088 Larm2_xct_model",
"002365c8 000078 Larm1_xct_model",
"00236640 0000b0 chest_xct_model",
"002366f0 000058 tail1_xct_model",
"00236748 000090 tail2_xct_model",
"002367d8 000090 Rfoot2_xct_model",
"00236868 000058 Rfoot1_xct_model",
"002368c0 000090 Lfoot2_xct_model",
"00236950 000058 Lfoot1_xct_model",
"002369a8 000080 base_xct_model",
"00236a28 000138 cKF_je_r_xct_1_tbl",
"00236b60 000008 cKF_bs_r_xct_1",
"",
"00236b80 000020 xct_1_pal",
"00236ba0 000100 xct_1_eye1_TA_tex_txt",
"00236ca0 000100 xct_1_eye2_TA_tex_txt",
"00236da0 000100 xct_1_eye3_TA_tex_txt",
"00236ea0 000100 xct_1_eye4_TA_tex_txt",
"00236fa0 000100 xct_1_eye5_TA_tex_txt",
"002370a0 000100 xct_1_eye6_TA_tex_txt",
"002371a0 000100 xct_1_eye7_TA_tex_txt",
"002372a0 000100 xct_1_eye8_TA_tex_txt",
"002373a0 000100 xct_1_mouth1_TA_tex_txt",
"002374a0 000100 xct_1_mouth2_TA_tex_txt",
"002375a0 000100 xct_1_mouth3_TA_tex_txt",
"002376a0 000100 xct_1_mouth4_TA_tex_txt",
"002377a0 000100 xct_1_mouth5_TA_tex_txt",
"002378a0 000100 xct_1_mouth6_TA_tex_txt",
"002379a0 000580 xct_1_tmem_txt",
"",
"00247428 0016e0 bpt_1_v",
"00248b08 0001a8 head_bpt_model",
"00248cb0 000068 feel_bpt_model",
"00248d18 000088 mouth_bpt_model",
"00248da0 0000c8 Rarm2_bpt_model",
"00248e68 000090 Rarm1_bpt_model",
"00248ef8 0000c8 Larm2_bpt_model",
"00248fc0 000090 Larm1_bpt_model",
"00249050 0000b8 chest_bpt_model",
"00249108 000058 tail1_bpt_model",
"00249160 000090 tail2_bpt_model",
"002491f0 000060 Rfoot2_bpt_model",
"00249250 000080 Rfoot1_bpt_model",
"002492d0 000060 Lfoot2_bpt_model",
"00249330 000088 Lfoot1_bpt_model",
"002493b8 000088 base_bpt_model",
"00249440 000138 cKF_je_r_bpt_1_tbl",
"00249578 000008 cKF_bs_r_bpt_1",
"",
"00249580 000020 bpt_1_pal",
"002495a0 000100 bpt_1_eye1_TA_tex_txt",
"002496a0 000100 bpt_1_eye2_TA_tex_txt",
"002497a0 000100 bpt_1_eye3_TA_tex_txt",
"002498a0 000100 bpt_1_eye4_TA_tex_txt",
"002499a0 000100 bpt_1_eye5_TA_tex_txt",
"00249aa0 000100 bpt_1_eye6_TA_tex_txt",
"00249ba0 000100 bpt_1_eye7_TA_tex_txt",
"00249ca0 000100 bpt_1_eye8_TA_tex_txt",
"00249da0 000700 bpt_1_tmem_txt",
"",
"0024a4a0 001200 pkn_1_v",
"0024b6a0 000180 head_pkn_model",
"0024b820 000088 Rarm2_pkn_model",
"0024b8a8 000078 Rarm1_pkn_model",
"0024b920 000088 Larm2_pkn_model",
"0024b9a8 000078 Larm1_pkn_model",
"0024ba20 0000a0 chest_pkn_model",
"0024bac0 000080 Rfoot2_pkn_model",
"0024bb40 0000b0 Rfoot1_pkn_model",
"0024bbf0 000080 Lfoot2_pkn_model",
"0024bc70 0000b0 Lfoot1_pkn_model",
"0024bd20 000068 base_pkn_model",
"0024bd88 000138 cKF_je_r_pkn_1_tbl",
"0024bec0 000008 cKF_bs_r_pkn_1",
"",
"0024bee0 000020 pkn_1_pal",
"0024bf00 000680 pkn_1_tmem_txt",
"",
"0024e580 0014d0 hem_1_v",
"0024fa50 0001a0 head_hem_model",
"0024fbf0 000080 feel_hem_model",
"0024fc70 000090 mouth_hem_model",
"0024fd00 000088 Rarm2_hem_model",
"0024fd88 000058 Rarm1_hem_model",
"0024fde0 0000d0 chest_hem_model",
"0024feb0 0001f0 base_hem_model",
"002500a0 000138 cKF_je_r_hem_1_tbl",
"002501d8 000008 cKF_bs_r_hem_1",
"",
"002501e0 000020 hem_1_pal",
"00250200 000740 hem_1_tmem_txt",
"",
"00250940 001c60 hip_1_v",
"002525a0 0002d8 head_hip_model",
"00252878 0000c8 mouth_hip_model",
"00252940 000080 Rarm2_hip_model",
"002529c0 000078 Rarm1_hip_model",
"00252a38 000080 Larm2_hip_model",
"00252ab8 000078 Larm1_hip_model",
"00252b30 000090 chest_hip_model",
"00252bc0 000058 tail1_hip_model",
"00252c18 000050 tail2_hip_model",
"00252c68 000090 Rfoot2_hip_model",
"00252cf8 000088 Rfoot1_hip_model",
"00252d80 000088 lfoot1_hip_model",
"00252e08 000090 Lfoot2_hip_model",
"00252e98 000080 base_hip_model",
"00252f18 000138 cKF_je_r_hip_1_tbl",
"00253050 000008 cKF_bs_r_hip_1",
"",
"00253060 000020 hip_1_pal",
"00253080 000100 hip_1_eye1_TA_tex_txt",
"00253180 000100 hip_1_eye2_TA_tex_txt",
"00253280 000100 hip_1_eye3_TA_tex_txt",
"00253380 000100 hip_1_eye4_TA_tex_txt",
"00253480 000100 hip_1_eye5_TA_tex_txt",
"00253580 000100 hip_1_eye6_TA_tex_txt",
"00253680 000100 hip_1_eye7_TA_tex_txt",
"00253780 000100 hip_1_eye8_TA_tex_txt",
"00253880 000500 hip_1_tmem_txt",
"",
"00253d80 000020 hip_2_pal",
"00253da0 000100 hip_2_eye1_TA_tex_txt",
"00253ea0 000100 hip_2_eye2_TA_tex_txt",
"00253fa0 000100 hip_2_eye3_TA_tex_txt",
"002540a0 000100 hip_2_eye4_TA_tex_txt",
"002541a0 000100 hip_2_eye5_TA_tex_txt",
"002542a0 000100 hip_2_eye6_TA_tex_txt",
"002543a0 000100 hip_2_eye7_TA_tex_txt",
"002544a0 000100 hip_2_eye8_TA_tex_txt",
"002545a0 000500 hip_2_tmem_txt",
"",
"00254aa0 000020 hip_3_pal",
"00254ac0 000100 hip_3_eye1_TA_tex_txt",
"00254bc0 000100 hip_3_eye2_TA_tex_txt",
"00254cc0 000100 hip_3_eye3_TA_tex_txt",
"00254dc0 000100 hip_3_eye4_TA_tex_txt",
"00254ec0 000100 hip_3_eye5_TA_tex_txt",
"00254fc0 000100 hip_3_eye6_TA_tex_txt",
"002550c0 000100 hip_3_eye7_TA_tex_txt",
"002551c0 000100 hip_3_eye8_TA_tex_txt",
"002552c0 000500 hip_3_tmem_txt",
"",
"002557c0 000020 hip_4_pal",
"002557e0 000100 hip_4_eye1_TA_tex_txt",
"002558e0 000100 hip_4_eye2_TA_tex_txt",
"002559e0 000100 hip_4_eye3_TA_tex_txt",
"00255ae0 000100 hip_4_eye4_TA_tex_txt",
"00255be0 000100 hip_4_eye5_TA_tex_txt",
"00255ce0 000100 hip_4_eye6_TA_tex_txt",
"00255de0 000100 hip_4_eye7_TA_tex_txt",
"00255ee0 000100 hip_4_eye8_TA_tex_txt",
"00255fe0 000500 hip_4_tmem_txt",
"",
"002564e0 000020 hip_5_pal",
"00256500 000100 hip_5_eye1_TA_tex_txt",
"00256600 000100 hip_5_eye2_TA_tex_txt",
"00256700 000100 hip_5_eye3_TA_tex_txt",
"00256800 000100 hip_5_eye4_TA_tex_txt",
"00256900 000100 hip_5_eye5_TA_tex_txt",
"00256a00 000100 hip_5_eye6_TA_tex_txt",
"00256b00 000100 hip_5_eye7_TA_tex_txt",
"00256c00 000100 hip_5_eye8_TA_tex_txt",
"00256d00 000500 hip_5_tmem_txt",
"",
"00257200 000020 hip_6_pal",
"00257220 000100 hip_6_eye1_TA_tex_txt",
"00257320 000100 hip_6_eye2_TA_tex_txt",
"00257420 000100 hip_6_eye3_TA_tex_txt",
"00257520 000100 hip_6_eye4_TA_tex_txt",
"00257620 000100 hip_6_eye5_TA_tex_txt",
"00257720 000100 hip_6_eye6_TA_tex_txt",
"00257820 000100 hip_6_eye7_TA_tex_txt",
"00257920 000100 hip_6_eye8_TA_tex_txt",
"00257a20 000500 hip_6_tmem_txt",
"",
"00257f20 000020 hip_7_pal",
"00257f40 000100 hip_7_eye1_TA_tex_txt",
"00258040 000100 hip_7_eye2_TA_tex_txt",
"00258140 000100 hip_7_eye3_TA_tex_txt",
"00258240 000100 hip_7_eye4_TA_tex_txt",
"00258340 000100 hip_7_eye5_TA_tex_txt",
"00258440 000100 hip_7_eye6_TA_tex_txt",
"00258540 000100 hip_7_eye7_TA_tex_txt",
"00258640 000100 hip_7_eye8_TA_tex_txt",
"00258740 000500 hip_7_tmem_txt",
"",
"00258c40 001930 hrs_1_v",
"0025a570 000230 head_hrs_model",
"0025a7a0 000090 mouth_hrs_model",
"0025a830 000088 Rarm2_hrs_model",
"0025a8b8 000078 Rarm1_hrs_model",
"0025a930 000088 Larm2_hrs_model",
"0025a9b8 000078 Larm1_hrs_model",
"0025aa30 0000b8 chest_hrs_model",
"0025aae8 000060 tail1_hrs_model",
"0025ab48 000090 tail2_hrs_model",
"0025abd8 000080 Rfoot2_hrs_model",
"0025ac58 0000c0 Rfoot1_hrs_model",
"0025ad18 000080 Lfoot2_hrs_model",
"0025ad98 0000c0 Lfoot1_hrs_model",
"0025ae58 000070 base_hrs_model",
"0025aec8 000138 cKF_je_r_hrs_1_tbl",
"0025b000 000008 cKF_bs_r_hrs_1",
"",
"0025b020 000020 hrs_1_pal",
"0025b040 000100 hrs_1_eye1_TA_tex_txt",
"0025b140 000100 hrs_1_eye2_TA_tex_txt",
"0025b240 000100 hrs_1_eye3_TA_tex_txt",
"0025b340 000100 hrs_1_eye4_TA_tex_txt",
"0025b440 000100 hrs_1_eye5_TA_tex_txt",
"0025b540 000100 hrs_1_eye6_TA_tex_txt",
"0025b640 000100 hrs_1_eye7_TA_tex_txt",
"0025b740 000100 hrs_1_eye8_TA_tex_txt",
"0025b840 000580 hrs_1_tmem_txt",
"",
"0025bdc0 000020 hrs_2_pal",
"0025bde0 000100 hrs_2_eye1_TA_tex_txt",
"0025bee0 000100 hrs_2_eye2_TA_tex_txt",
"0025bfe0 000100 hrs_2_eye3_TA_tex_txt",
"0025c0e0 000100 hrs_2_eye4_TA_tex_txt",
"0025c1e0 000100 hrs_2_eye5_TA_tex_txt",
"0025c2e0 000100 hrs_2_eye6_TA_tex_txt",
"0025c3e0 000100 hrs_2_eye7_TA_tex_txt",
"0025c4e0 000100 hrs_2_eye8_TA_tex_txt",
"0025c5e0 000580 hrs_2_tmem_txt",
"",
"0025cb60 000020 hrs_3_pal",
"0025cb80 000100 hrs_3_eye1_TA_tex_txt",
"0025cc80 000100 hrs_3_eye2_TA_tex_txt",
"0025cd80 000100 hrs_3_eye3_TA_tex_txt",
"0025ce80 000100 hrs_3_eye4_TA_tex_txt",
"0025cf80 000100 hrs_3_eye5_TA_tex_txt",
"0025d080 000100 hrs_3_eye6_TA_tex_txt",
"0025d180 000100 hrs_3_eye7_TA_tex_txt",
"0025d280 000100 hrs_3_eye8_TA_tex_txt",
"0025d380 000580 hrs_3_tmem_txt",
"",
"0025d900 000020 hrs_4_pal",
"0025d920 000100 hrs_4_eye1_TA_tex_txt",
"0025da20 000100 hrs_4_eye2_TA_tex_txt",
"0025db20 000100 hrs_4_eye3_TA_tex_txt",
"0025dc20 000100 hrs_4_eye4_TA_tex_txt",
"0025dd20 000100 hrs_4_eye5_TA_tex_txt",
"0025de20 000100 hrs_4_eye6_TA_tex_txt",
"0025df20 000100 hrs_4_eye7_TA_tex_txt",
"0025e020 000100 hrs_4_eye8_TA_tex_txt",
"0025e120 000580 hrs_4_tmem_txt",
"",
"0025e6a0 000020 hrs_5_pal",
"0025e6c0 000100 hrs_5_eye1_TA_tex_txt",
"0025e7c0 000100 hrs_5_eye2_TA_tex_txt",
"0025e8c0 000100 hrs_5_eye3_TA_tex_txt",
"0025e9c0 000100 hrs_5_eye4_TA_tex_txt",
"0025eac0 000100 hrs_5_eye5_TA_tex_txt",
"0025ebc0 000100 hrs_5_eye6_TA_tex_txt",
"0025ecc0 000100 hrs_5_eye7_TA_tex_txt",
"0025edc0 000100 hrs_5_eye8_TA_tex_txt",
"0025eec0 000580 hrs_5_tmem_txt",
"",
"0025f440 000020 hrs_6_pal",
"0025f460 000100 hrs_6_eye1_TA_tex_txt",
"0025f560 000100 hrs_6_eye2_TA_tex_txt",
"0025f660 000100 hrs_6_eye3_TA_tex_txt",
"0025f760 000100 hrs_6_eye4_TA_tex_txt",
"0025f860 000100 hrs_6_eye5_TA_tex_txt",
"0025f960 000100 hrs_6_eye6_TA_tex_txt",
"0025fa60 000100 hrs_6_eye7_TA_tex_txt",
"0025fb60 000100 hrs_6_eye8_TA_tex_txt",
"0025fc60 000580 hrs_6_tmem_txt",
"",
"002601e0 000020 hrs_7_pal",
"00260200 000100 hrs_7_eye1_TA_tex_txt",
"00260300 000100 hrs_7_eye2_TA_tex_txt",
"00260400 000100 hrs_7_eye3_TA_tex_txt",
"00260500 000100 hrs_7_eye4_TA_tex_txt",
"00260600 000100 hrs_7_eye5_TA_tex_txt",
"00260700 000100 hrs_7_eye6_TA_tex_txt",
"00260800 000100 hrs_7_eye7_TA_tex_txt",
"00260900 000100 hrs_7_eye8_TA_tex_txt",
"00260a00 000580 hrs_7_tmem_txt",
"",
"00260f80 000020 hrs_8_pal",
"00260fa0 000100 hrs_8_eye1_TA_tex_txt",
"002610a0 000100 hrs_8_eye2_TA_tex_txt",
"002611a0 000100 hrs_8_eye3_TA_tex_txt",
"002612a0 000100 hrs_8_eye4_TA_tex_txt",
"002613a0 000100 hrs_8_eye5_TA_tex_txt",
"002614a0 000100 hrs_8_eye6_TA_tex_txt",
"002615a0 000100 hrs_8_eye7_TA_tex_txt",
"002616a0 000100 hrs_8_eye8_TA_tex_txt",
"002617a0 000580 hrs_8_tmem_txt",
"",
"0026b800 0016a0 plj_1_v",
"0026cea0 000150 head_plj_model",
"0026cff0 000080 Rarm2_plj_model",
"0026d070 000088 Rarm1_plj_model",
"0026d0f8 000080 Larm2_plj_model",
"0026d178 000088 Larm1_plj_model",
"0026d200 000140 chest_plj_model",
"0026d340 000058 tail1_plj_model",
"0026d398 0000a0 tail2_plj_model",
"0026d438 000088 Rfoot2_plj_model",
"0026d4c0 000080 Rfoot1_plj_model",
"0026d540 000088 Lfoot2_plj_model",
"0026d5c8 000080 Lfoot1_plj_model",
"0026d648 000078 base_plj_model",
"0026d6c0 000138 cKF_je_r_plj_1_tbl",
"0026d7f8 000008 cKF_bs_r_plj_1",
"",
"0026d800 000020 plj_1_pal",
"0026d820 000100 plj_1_eye1_TA_tex_txt",
"0026d920 000100 plj_1_eye2_TA_tex_txt",
"0026da20 000100 plj_1_eye3_TA_tex_txt",
"0026db20 000100 plj_1_eye4_TA_tex_txt",
"0026dc20 000100 plj_1_eye5_TA_tex_txt",
"0026dd20 000100 plj_1_eye6_TA_tex_txt",
"0026de20 000100 plj_1_eye7_TA_tex_txt",
"0026df20 000100 plj_1_eye8_TA_tex_txt",
"0026e020 000100 plj_1_mouth1_TA_tex_txt",
"0026e120 000100 plj_1_mouth2_TA_tex_txt",
"0026e220 000100 plj_1_mouth3_TA_tex_txt",
"0026e320 000100 plj_1_mouth4_TA_tex_txt",
"0026e420 000100 plj_1_mouth5_TA_tex_txt",
"0026e520 000100 plj_1_mouth6_TA_tex_txt",
"0026e620 000680 plj_1_tmem_txt",
"",
"",
"0026eca0 0016f0 xsq_1_v",
"00270390 000198 head_xsq_model",
"00270528 000088 Rarm2_xsq_model",
"002705b0 000078 Rarm1_xsq_model",
"00270628 000088 Larm2_xsq_model",
"002706b0 000078 Larm1_xsq_model",
"00270728 0000a8 chest_xsq_model",
"002707d0 000070 tail1_xsq_model",
"00270840 0000d0 tail2_xsq_model",
"00270910 000080 Rfoot2_xsq_model",
"00270990 0000c0 Rfoot1_xsq_model",
"00270a50 000080 Lfoot2_xsq_model",
"00270ad0 0000c0 Lfoot1_xsq_model",
"00270b90 000070 base_xsq_model",
"00270c00 000138 cKF_je_r_xsq_1_tbl",
"00270d38 000008 cKF_bs_r_xsq_1",
"",
"00270d40 000020 xsq_1_pal",
"00270d60 000100 xsq_1_eye1_TA_tex_txt",
"00270e60 000100 xsq_1_eye2_TA_tex_txt",
"00270f60 000100 xsq_1_eye3_TA_tex_txt",
"00271060 000100 xsq_1_eye4_TA_tex_txt",
"00271160 000100 xsq_1_eye5_TA_tex_txt",
"00271260 000100 xsq_1_eye6_TA_tex_txt",
"00271360 000100 xsq_1_eye7_TA_tex_txt",
"00271460 000100 xsq_1_eye8_TA_tex_txt",
"00271560 000100 xsq_1_mouth1_TA_tex_txt",
"00271660 000100 xsq_1_mouth2_TA_tex_txt",
"00271760 000100 xsq_1_mouth3_TA_tex_txt",
"00271860 000100 xsq_1_mouth4_TA_tex_txt",
"00271960 000100 xsq_1_mouth5_TA_tex_txt",
"00271a60 000100 xsq_1_mouth6_TA_tex_txt",
"00271b60 000600 xsq_1_tmem_txt",
"",
"0027b3a8 001c50 boa_1_v",
"0027cff8 0001d8 head_boa_model",
"0027d1d0 000088 mouth_boa_model",
"0027d258 000088 Rarm2_boa_model",
"0027d2e0 000078 Rarm1_boa_model",
"0027d358 000088 Larm2_boa_model",
"0027d3e0 000078 Larm1_boa_model",
"0027d458 0001f8 chest_boa_model",
"0027d650 0000a8 Rfoot2_boa_model",
"0027d6f8 000080 Rfoot1_boa_model",
"0027d778 000098 Lfoot2_boa_model",
"0027d810 000080 Lfoot1_boa_model",
"0027d890 000078 base_boa_model",
"0027d908 000138 cKF_je_r_boa_1_tbl",
"0027da40 000008 cKF_bs_r_boa_1",
"",
"0027da60 000020 boa_1_pal",
"0027da80 000100 boa_1_eye1_TA_tex_txt",
"0027db80 000100 boa_1_eye2_TA_tex_txt",
"0027dc80 000100 boa_1_eye3_TA_tex_txt",
"0027dd80 000100 boa_1_eye4_TA_tex_txt",
"0027de80 000100 boa_1_eye5_TA_tex_txt",
"0027df80 000100 boa_1_eye6_TA_tex_txt",
"0027e080 000100 boa_1_eye7_TA_tex_txt",
"0027e180 000100 boa_1_eye8_TA_tex_txt",
"0027e280 0005c0 boa_1_tmem_txt",
"",
"0027e840 001af0 kgr_1_v",
"00280330 000160 head_kgr_model",
"00280490 000080 mouth_kgr_model",
"00280510 000088 Rarm2_kgr_model",
"00280598 000078 Rarm1_kgr_model",
"00280610 000088 Larm2_kgr_model",
"00280698 000078 Larm1_kgr_model",
"00280710 000188 chest_kgr_model",
"00280898 000088 tail1_kgr_model",
"00280920 000080 Rfoot3_kgr_model",
"002809a0 000080 Rfoot2_kgr_model",
"00280a20 0000c8 Rfoot1_kgr_model",
"00280ae8 000080 Lfoot3_kgr_model",
"00280b68 000080 Lfoot2_kgr_model",
"00280be8 0000c8 Lfoot1_kgr_model",
"00280cb0 0000d8 base_kgr_model",
"00280d88 000138 cKF_je_r_kgr_1_tbl",
"00280ec0 000008 cKF_bs_r_kgr_1",
"",
"00280ee0 000020 kgr_1_pal",
"00280f00 000100 kgr_1_eye1_TA_tex_txt",
"00281000 000100 kgr_1_eye2_TA_tex_txt",
"00281100 000100 kgr_1_eye3_TA_tex_txt",
"00281200 000100 kgr_1_eye4_TA_tex_txt",
"00281300 000100 kgr_1_eye5_TA_tex_txt",
"00281400 000100 kgr_1_eye6_TA_tex_txt",
"00281500 000100 kgr_1_eye7_TA_tex_txt",
"00281600 000100 kgr_1_eye8_TA_tex_txt",
"00281700 000440 kgr_1_tmem_txt",
"",
"00281b40 000020 kgr_2_pal",
"00281b60 000100 kgr_2_eye1_TA_tex_txt",
"00281c60 000100 kgr_2_eye2_TA_tex_txt",
"00281d60 000100 kgr_2_eye3_TA_tex_txt",
"00281e60 000100 kgr_2_eye4_TA_tex_txt",
"00281f60 000100 kgr_2_eye5_TA_tex_txt",
"00282060 000100 kgr_2_eye6_TA_tex_txt",
"00282160 000100 kgr_2_eye7_TA_tex_txt",
"00282260 000100 kgr_2_eye8_TA_tex_txt",
"00282360 000440 kgr_2_tmem_txt",
"",
"002827a0 000020 kgr_3_pal",
"002827c0 000100 kgr_3_eye1_TA_tex_txt",
"002828c0 000100 kgr_3_eye2_TA_tex_txt",
"002829c0 000100 kgr_3_eye3_TA_tex_txt",
"00282ac0 000100 kgr_3_eye4_TA_tex_txt",
"00282bc0 000100 kgr_3_eye5_TA_tex_txt",
"00282cc0 000100 kgr_3_eye6_TA_tex_txt",
"00282dc0 000100 kgr_3_eye7_TA_tex_txt",
"00282ec0 000100 kgr_3_eye8_TA_tex_txt",
"00282fc0 000440 kgr_3_tmem_txt",
"",
"00283400 000020 kgr_4_pal",
"00283420 000100 kgr_4_eye1_TA_tex_txt",
"00283520 000100 kgr_4_eye2_TA_tex_txt",
"00283620 000100 kgr_4_eye3_TA_tex_txt",
"00283720 000100 kgr_4_eye4_TA_tex_txt",
"00283820 000100 kgr_4_eye5_TA_tex_txt",
"00283920 000100 kgr_4_eye6_TA_tex_txt",
"00283a20 000100 kgr_4_eye7_TA_tex_txt",
"00283b20 000100 kgr_4_eye8_TA_tex_txt",
"00283c20 000440 kgr_4_tmem_txt",
"",
"00284060 000020 kgr_5_pal",
"00284080 000100 kgr_5_eye1_TA_tex_txt",
"00284180 000100 kgr_5_eye2_TA_tex_txt",
"00284280 000100 kgr_5_eye3_TA_tex_txt",
"00284380 000100 kgr_5_eye4_TA_tex_txt",
"00284480 000100 kgr_5_eye5_TA_tex_txt",
"00284580 000100 kgr_5_eye6_TA_tex_txt",
"00284680 000100 kgr_5_eye7_TA_tex_txt",
"00284780 000100 kgr_5_eye8_TA_tex_txt",
"00284880 000440 kgr_5_tmem_txt",
"",
"00284cc0 000020 kgr_6_pal",
"00284ce0 000100 kgr_6_eye1_TA_tex_txt",
"00284de0 000100 kgr_6_eye2_TA_tex_txt",
"00284ee0 000100 kgr_6_eye3_TA_tex_txt",
"00284fe0 000100 kgr_6_eye4_TA_tex_txt",
"002850e0 000100 kgr_6_eye5_TA_tex_txt",
"002851e0 000100 kgr_6_eye6_TA_tex_txt",
"002852e0 000100 kgr_6_eye7_TA_tex_txt",
"002853e0 000100 kgr_6_eye8_TA_tex_txt",
"002854e0 000440 kgr_6_tmem_txt",
"",
"00285920 001a30 fob_1_v",
"00287350 0001b8 head_fob_model",
"00287508 0000a0 mouth_fob_model",
"002875a8 000090 Rarm2_fob_model",
"00287638 0000a0 Rarm1_fob_model",
"002876d8 000090 Larm2_fob_model",
"00287768 000090 Larm1_fob_model",
"002877f8 000130 chest_fob_model",
"00287928 000080 tail1_fob_model",
"002879a8 0000c0 tail2_fob_model",
"00287a68 000088 Rfoot2_fob_model",
"00287af0 000058 Rfoot1_fob_model",
"00287b48 000088 Lfoot2_fob_model",
"00287bd0 000058 Lfoot1_fob_model",
"00287c28 0000f8 base_fob_model",
"00287d20 000138 cKF_je_r_fob_1_tbl",
"00287e58 000008 cKF_bs_r_fob_1",
"",
"00287e60 000020 fob_1_pal",
"00287e80 000100 fob_1_eye1_TA_tex_txt",
"00287f80 000100 fob_1_eye2_TA_tex_txt",
"00288080 000100 fob_1_eye3_TA_tex_txt",
"00288180 000100 fob_1_eye4_TA_tex_txt",
"00288280 000100 fob_1_eye5_TA_tex_txt",
"00288380 000100 fob_1_eye6_TA_tex_txt",
"00288480 000100 fob_1_eye7_TA_tex_txt",
"00288580 000100 fob_1_eye8_TA_tex_txt",
"00288680 000740 fob_1_tmem_txt",
"",
"00288dc0 001690 kal_1_v",
"0028a450 0001b0 head_kal_model",
"0028a600 000088 Rarm2_kal_model",
"0028a688 000078 Rarm1_kal_model",
"0028a700 000088 Larm2_kal_model",
"0028a788 000078 Larm1_kal_model",
"0028a800 0000a8 chest_kal_model",
"0028a8a8 000080 Rfoot2_kal_model",
"0028a928 0000c0 Rfoot1_kal_model",
"0028a9e8 000080 Lfoot2_kal_model",
"0028aa68 0000c0 Lfoot1_kal_model",
"0028ab28 000070 base_kal_model",
"0028ab98 000138 cKF_je_r_kal_1_tbl",
"0028acd0 000008 cKF_bs_r_kal_1",
"",
"0028ace0 000020 kal_1_pal",
"0028ad00 000100 kal_1_eye1_TA_tex_txt",
"0028ae00 000100 kal_1_eye2_TA_tex_txt",
"0028af00 000100 kal_1_eye3_TA_tex_txt",
"0028b000 000100 kal_1_eye4_TA_tex_txt",
"0028b100 000100 kal_1_eye5_TA_tex_txt",
"0028b200 000100 kal_1_eye6_TA_tex_txt",
"0028b300 000100 kal_1_eye7_TA_tex_txt",
"0028b400 000100 kal_1_eye8_TA_tex_txt",
"0028b500 000100 kal_1_mouth1_TA_tex_txt",
"0028b600 000100 kal_1_mouth2_TA_tex_txt",
"0028b700 000100 kal_1_mouth3_TA_tex_txt",
"0028b800 000100 kal_1_mouth4_TA_tex_txt",
"0028b900 000100 kal_1_mouth5_TA_tex_txt",
"0028ba00 000100 kal_1_mouth6_TA_tex_txt",
"0028bb00 000480 kal_1_tmem_txt",
"",
"0028bf80 000020 kal_2_pal",
"0028bfa0 000100 kal_2_eye1_TA_tex_txt",
"0028c0a0 000100 kal_2_eye2_TA_tex_txt",
"0028c1a0 000100 kal_2_eye3_TA_tex_txt",
"0028c2a0 000100 kal_2_eye4_TA_tex_txt",
"0028c3a0 000100 kal_2_eye5_TA_tex_txt",
"0028c4a0 000100 kal_2_eye6_TA_tex_txt",
"0028c5a0 000100 kal_2_eye7_TA_tex_txt",
"0028c6a0 000100 kal_2_eye8_TA_tex_txt",
"0028c7a0 000100 kal_2_mouth1_TA_tex_txt",
"0028c8a0 000100 kal_2_mouth2_TA_tex_txt",
"0028c9a0 000100 kal_2_mouth3_TA_tex_txt",
"0028caa0 000100 kal_2_mouth4_TA_tex_txt",
"0028cba0 000100 kal_2_mouth5_TA_tex_txt",
"0028cca0 000100 kal_2_mouth6_TA_tex_txt",
"0028cda0 000480 kal_2_tmem_txt",
"",
"0028d220 000020 kal_3_pal",
"0028d240 000100 kal_3_eye1_TA_tex_txt",
"0028d340 000100 kal_3_eye2_TA_tex_txt",
"0028d440 000100 kal_3_eye3_TA_tex_txt",
"0028d540 000100 kal_3_eye4_TA_tex_txt",
"0028d640 000100 kal_3_eye5_TA_tex_txt",
"0028d740 000100 kal_3_eye6_TA_tex_txt",
"0028d840 000100 kal_3_eye7_TA_tex_txt",
"0028d940 000100 kal_3_eye8_TA_tex_txt",
"0028da40 000100 kal_3_mouth1_TA_tex_txt",
"0028db40 000100 kal_3_mouth2_TA_tex_txt",
"0028dc40 000100 kal_3_mouth3_TA_tex_txt",
"0028dd40 000100 kal_3_mouth4_TA_tex_txt",
"0028de40 000100 kal_3_mouth5_TA_tex_txt",
"0028df40 000100 kal_3_mouth6_TA_tex_txt",
"0028e040 000480 kal_3_tmem_txt",
"",
"0028e4c0 000020 kal_4_pal",
"0028e4e0 000100 kal_4_eye1_TA_tex_txt",
"0028e5e0 000100 kal_4_eye2_TA_tex_txt",
"0028e6e0 000100 kal_4_eye3_TA_tex_txt",
"0028e7e0 000100 kal_4_eye4_TA_tex_txt",
"0028e8e0 000100 kal_4_eye5_TA_tex_txt",
"0028e9e0 000100 kal_4_eye6_TA_tex_txt",
"0028eae0 000100 kal_4_eye7_TA_tex_txt",
"0028ebe0 000100 kal_4_eye8_TA_tex_txt",
"0028ece0 000100 kal_4_mouth1_TA_tex_txt",
"0028ede0 000100 kal_4_mouth2_TA_tex_txt",
"0028eee0 000100 kal_4_mouth3_TA_tex_txt",
"0028efe0 000100 kal_4_mouth4_TA_tex_txt",
"0028f0e0 000100 kal_4_mouth5_TA_tex_txt",
"0028f1e0 000100 kal_4_mouth6_TA_tex_txt",
"0028f2e0 000480 kal_4_tmem_txt",
"",
"0028f760 000020 kal_5_pal",
"0028f780 000100 kal_5_eye1_TA_tex_txt",
"0028f880 000100 kal_5_eye2_TA_tex_txt",
"0028f980 000100 kal_5_eye3_TA_tex_txt",
"0028fa80 000100 kal_5_eye4_TA_tex_txt",
"0028fb80 000100 kal_5_eye5_TA_tex_txt",
"0028fc80 000100 kal_5_eye6_TA_tex_txt",
"0028fd80 000100 kal_5_eye7_TA_tex_txt",
"0028fe80 000100 kal_5_eye8_TA_tex_txt",
"0028ff80 000100 kal_5_mouth1_TA_tex_txt",
"00290080 000100 kal_5_mouth2_TA_tex_txt",
"00290180 000100 kal_5_mouth3_TA_tex_txt",
"00290280 000100 kal_5_mouth4_TA_tex_txt",
"00290380 000100 kal_5_mouth5_TA_tex_txt",
"00290480 000100 kal_5_mouth6_TA_tex_txt",
"00290580 000480 kal_5_tmem_txt",
"",
"00290a00 000020 kal_6_pal",
"00290a20 000100 kal_6_eye1_TA_tex_txt",
"00290b20 000100 kal_6_eye2_TA_tex_txt",
"00290c20 000100 kal_6_eye3_TA_tex_txt",
"00290d20 000100 kal_6_eye4_TA_tex_txt",
"00290e20 000100 kal_6_eye5_TA_tex_txt",
"00290f20 000100 kal_6_eye6_TA_tex_txt",
"00291020 000100 kal_6_eye7_TA_tex_txt",
"00291120 000100 kal_6_eye8_TA_tex_txt",
"00291220 000100 kal_6_mouth1_TA_tex_txt",
"00291320 000100 kal_6_mouth2_TA_tex_txt",
"00291420 000100 kal_6_mouth3_TA_tex_txt",
"00291520 000100 kal_6_mouth4_TA_tex_txt",
"00291620 000100 kal_6_mouth5_TA_tex_txt",
"00291720 000100 kal_6_mouth6_TA_tex_txt",
"00291820 000480 kal_6_tmem_txt",
"",
"00294510 001b20 lon_1_v",
"00296030 000280 head_lon_model",
"002962b0 000088 Rarm2_lon_model",
"00296338 000078 Rarm1_lon_model",
"002963b0 000088 Larm2_lon_model",
"00296438 000078 Larm1_lon_model",
"002964b0 0000a8 chest_lon_model",
"00296558 000060 tail1_lon_model",
"002965b8 000090 tail2_lon_model",
"00296648 000080 Rfoot2_lon_model",
"002966c8 0000c0 Rfoot1_lon_model",
"00296788 000080 Lfoot2_lon_model",
"00296808 0000c0 Lfoot1_lon_model",
"002968c8 000070 base_lon_model",
"00296938 000138 cKF_je_r_lon_1_tbl",
"00296a70 000008 cKF_bs_r_lon_1",
"",
"00296a80 000020 lon_1_pal",
"00296aa0 000100 lon_1_eye1_TA_tex_txt",
"00296ba0 000100 lon_1_eye2_TA_tex_txt",
"00296ca0 000100 lon_1_eye3_TA_tex_txt",
"00296da0 000100 lon_1_eye4_TA_tex_txt",
"00296ea0 000100 lon_1_eye5_TA_tex_txt",
"00296fa0 000100 lon_1_eye6_TA_tex_txt",
"002970a0 000100 lon_1_eye7_TA_tex_txt",
"002971a0 000100 lon_1_eye8_TA_tex_txt",
"002972a0 000100 lon_1_mouth1_TA_tex_txt",
"002973a0 000100 lon_1_mouth2_TA_tex_txt",
"002974a0 000100 lon_1_mouth3_TA_tex_txt",
"002975a0 000100 lon_1_mouth4_TA_tex_txt",
"002976a0 000100 lon_1_mouth5_TA_tex_txt",
"002977a0 000100 lon_1_mouth6_TA_tex_txt",
"002978a0 0004c0 lon_1_tmem_txt",
"",
"00297d60 000020 lon_2_pal",
"00297d80 000100 lon_2_eye1_TA_tex_txt",
"00297e80 000100 lon_2_eye2_TA_tex_txt",
"00297f80 000100 lon_2_eye3_TA_tex_txt",
"00298080 000100 lon_2_eye4_TA_tex_txt",
"00298180 000100 lon_2_eye5_TA_tex_txt",
"00298280 000100 lon_2_eye6_TA_tex_txt",
"00298380 000100 lon_2_eye7_TA_tex_txt",
"00298480 000100 lon_2_eye8_TA_tex_txt",
"00298580 000100 lon_2_mouth1_TA_tex_txt",
"00298680 000100 lon_2_mouth2_TA_tex_txt",
"00298780 000100 lon_2_mouth3_TA_tex_txt",
"00298880 000100 lon_2_mouth4_TA_tex_txt",
"00298980 000100 lon_2_mouth5_TA_tex_txt",
"00298a80 000100 lon_2_mouth6_TA_tex_txt",
"00298b80 0004c0 lon_2_tmem_txt",
"",
"00299040 000020 lon_3_pal",
"00299060 000100 lon_3_eye1_TA_tex_txt",
"00299160 000100 lon_3_eye2_TA_tex_txt",
"00299260 000100 lon_3_eye3_TA_tex_txt",
"00299360 000100 lon_3_eye4_TA_tex_txt",
"00299460 000100 lon_3_eye5_TA_tex_txt",
"00299560 000100 lon_3_eye6_TA_tex_txt",
"00299660 000100 lon_3_eye7_TA_tex_txt",
"00299760 000100 lon_3_eye8_TA_tex_txt",
"00299860 000100 lon_3_mouth1_TA_tex_txt",
"00299960 000100 lon_3_mouth2_TA_tex_txt",
"00299a60 000100 lon_3_mouth3_TA_tex_txt",
"00299b60 000100 lon_3_mouth4_TA_tex_txt",
"00299c60 000100 lon_3_mouth5_TA_tex_txt",
"00299d60 000100 lon_3_mouth6_TA_tex_txt",
"00299e60 0004c0 lon_3_tmem_txt",
"",
"0029a320 000020 lon_4_pal",
"0029a340 000100 lon_4_eye1_TA_tex_txt",
"0029a440 000100 lon_4_eye2_TA_tex_txt",
"0029a540 000100 lon_4_eye3_TA_tex_txt",
"0029a640 000100 lon_4_eye4_TA_tex_txt",
"0029a740 000100 lon_4_eye5_TA_tex_txt",
"0029a840 000100 lon_4_eye6_TA_tex_txt",
"0029a940 000100 lon_4_eye7_TA_tex_txt",
"0029aa40 000100 lon_4_eye8_TA_tex_txt",
"0029ab40 000100 lon_4_mouth1_TA_tex_txt",
"0029ac40 000100 lon_4_mouth2_TA_tex_txt",
"0029ad40 000100 lon_4_mouth3_TA_tex_txt",
"0029ae40 000100 lon_4_mouth4_TA_tex_txt",
"0029af40 000100 lon_4_mouth5_TA_tex_txt",
"0029b040 000100 lon_4_mouth6_TA_tex_txt",
"0029b140 0004c0 lon_4_tmem_txt",
"",
"0029d9a0 001420 mos_1_v",
"0029edc0 0001d0 head_mos_model",
"0029ef90 0000e0 mouth_mos_model",
"0029f070 0000b8 hand_mos_model",
"0029f128 000088 Rarm2_mos_model",
"0029f1b0 000078 Rarm1_mos_model",
"0029f228 000088 Larm2_mos_model",
"0029f2b0 000078 Larm1_mos_model",
"0029f328 0000d8 chest_mos_model",
"0029f400 000088 base_mos_model",
"0029f488 000138 cKF_je_r_mos_1_tbl",
"0029f5c0 000008 cKF_bs_r_mos_1",
"",
"0029f5e0 000020 mos_1_pal",
"0029f600 000100 mos_1_eye1_TA_tex_txt",
"0029f700 000100 mos_1_eye2_TA_tex_txt",
"0029f800 000100 mos_1_eye3_TA_tex_txt",
"0029f900 000100 mos_1_eye4_TA_tex_txt",
"0029fa00 000100 mos_1_eye5_TA_tex_txt",
"0029fb00 000100 mos_1_eye6_TA_tex_txt",
"0029fc00 000100 mos_1_eye7_TA_tex_txt",
"0029fd00 000100 mos_1_eye8_TA_tex_txt",
"0029fe00 000100 mos_1_mouth1_TA_tex_txt",
"0029ff00 000100 mos_1_mouth2_TA_tex_txt",
"002a0000 000100 mos_1_mouth3_TA_tex_txt",
"002a0100 000100 mos_1_mouth4_TA_tex_txt",
"002a0200 000100 mos_1_mouth5_TA_tex_txt",
"002a0300 000100 mos_1_mouth6_TA_tex_txt",
"002a0400 000680 mos_1_tmem_txt",
"",
"002a0a80 001420 mol_1_v",
"002a1ea0 0001d0 head_mol_model",
"002a2070 0000e0 mouth_mol_model",
"002a2150 0000b8 hand_mol_model",
"002a2208 000088 Rarm2_mol_model",
"002a2290 000078 Rarm1_mol_model",
"002a2308 000088 Larm2_mol_model",
"002a2390 000078 Larm1_mol_model",
"002a2408 0000d8 chest_mol_model",
"002a24e0 000088 base_mol_model",
"002a2568 000138 cKF_je_r_mol_1_tbl",
"002a26a0 000008 cKF_bs_r_mol_1",
"",
"002a26c0 000020 mol_1_pal",
"002a26e0 000100 mol_1_eye1_TA_tex_txt",
"002a27e0 000100 mol_1_eye2_TA_tex_txt",
"002a28e0 000100 mol_1_eye3_TA_tex_txt",
"002a29e0 000100 mol_1_eye4_TA_tex_txt",
"002a2ae0 000100 mol_1_eye5_TA_tex_txt",
"002a2be0 000100 mol_1_eye6_TA_tex_txt",
"002a2ce0 000100 mol_1_eye7_TA_tex_txt",
"002a2de0 000100 mol_1_eye8_TA_tex_txt",
"002a2ee0 000100 mol_1_mouth1_TA_tex_txt",
"002a2fe0 000100 mol_1_mouth2_TA_tex_txt",
"002a30e0 000100 mol_1_mouth3_TA_tex_txt",
"002a31e0 000100 mol_1_mouth4_TA_tex_txt",
"002a32e0 000100 mol_1_mouth5_TA_tex_txt",
"002a33e0 000100 mol_1_mouth6_TA_tex_txt",
"002a34e0 000680 mol_1_tmem_txt",
"",
"002a3b60 001540 lrc_1_v",
"002a50a0 000188 head_lrc_model",
"002a5228 000078 mouth_lrc_model",
"002a52a0 0000b8 Rarm2_lrc_model",
"002a5358 000078 Rarm1_lrc_model",
"002a53d0 0000b8 Larm2_lrc_model",
"002a5488 000078 Larm1_lrc_model",
"002a5500 0000c8 chest_lrc_model",
"002a55c8 000078 tail1_lrc_model",
"002a5640 0000a0 tail2_lrc_model",
"002a56e0 000080 Rfoot2_lrc_model",
"002a5760 000058 Rfoot1_lrc_model",
"002a57b8 000080 Lfoot2_rcd_model",
"002a5838 000058 Lfoot1_lrc_model",
"002a5890 000080 base_lrc_model",
"002a5910 000138 cKF_je_r_lrc_1_tbl",
"002a5a48 000008 cKF_bs_r_lrc_1",
"",
"002a5a60 000020 lrc_1_pal",
"002a5a80 000100 lrc_1_eye1_TA_tex_txt",
"002a5b80 000100 lrc_1_eye2_TA_tex_txt",
"002a5c80 000100 lrc_1_eye3_TA_tex_txt",
"002a5d80 000100 lrc_1_eye4_TA_tex_txt",
"002a5e80 000100 lrc_1_eye5_TA_tex_txt",
"002a5f80 000100 lrc_1_eye6_TA_tex_txt",
"002a6080 000100 lrc_1_eye7_TA_tex_txt",
"002a6180 000100 lrc_1_eye8_TA_tex_txt",
"002a6280 000680 lrc_1_tmem_txt",
"",
"002a6900 001480 mka_1_v",
"002a7d80 000160 head_mka_model",
"002a7ee0 000088 Rarm2_mka_model",
"002a7f68 000078 Rarm1_mka_model",
"002a7fe0 000088 Larm2_mka_model",
"002a8068 000078 Larm1_mka_model",
"002a80e0 000090 chest_mka_model",
"002a8170 000058 tail1_mka_model",
"002a81c8 000090 tail2_mka_model",
"002a8258 000090 Rfoot2_mka_model",
"002a82e8 0000c0 Rfoot1_mka_model",
"002a83a8 000090 Lfoot2_mka_model",
"002a8438 0000c0 Lfoot1_mka_model",
"002a84f8 000070 base_mka_model",
"002a8568 000138 cKF_je_r_mka_1_tbl",
"002a86a0 000008 cKF_bs_r_mka_1",
"",
"002a86c0 000020 mka_1_pal",
"002a86e0 000480 mka_1_tmem_txt",
"",
"002a99a8 001800 mus_1_v",
"002ab1a8 0001d8 head_mus_model",
"002ab380 000068 mouth_mus_model",
"002ab3e8 000088 Rarm2_mus_model",
"002ab470 000078 Rarm1_mus_model",
"002ab4e8 000088 Larm2_mus_model",
"002ab570 000078 Larm1_mus_model",
"002ab5e8 0000a8 chest_mus_model",
"002ab690 000060 tail1_mus_model",
"002ab6f0 000090 tail2_mus_model",
"002ab780 000080 Rfoot2_mus_model",
"002ab800 0000c0 Rfoot1_mus_model",
"002ab8c0 000080 Lfoot2_mus_model",
"002ab940 0000c0 Lfoot1_mus_model",
"002aba00 000070 base_mus_model",
"002aba70 000138 cKF_je_r_mus_1_tbl",
"002abba8 000008 cKF_bs_r_mus_1",
"",
"002abbc0 000020 mus_1_pal",
"002abbe0 000100 mus_1_eye1_TA_tex_txt",
"002abce0 000100 mus_1_eye2_TA_tex_txt",
"002abde0 000100 mus_1_eye3_TA_tex_txt",
"002abee0 000100 mus_1_eye4_TA_tex_txt",
"002abfe0 000100 mus_1_eye5_TA_tex_txt",
"002ac0e0 000100 mus_1_eye6_TA_tex_txt",
"002ac1e0 000100 mus_1_eye7_TA_tex_txt",
"002ac2e0 000100 mus_1_eye8_TA_tex_txt",
"002ac3e0 000100 mus_1_mouth1_TA_tex_txt",
"002ac4e0 000100 mus_1_mouth2_TA_tex_txt",
"002ac5e0 000100 mus_1_mouth3_TA_tex_txt",
"002ac6e0 000100 mus_1_mouth4_TA_tex_txt",
"002ac7e0 000100 mus_1_mouth5_TA_tex_txt",
"002ac8e0 000100 mus_1_mouth6_TA_tex_txt",
"002ac9e0 000400 mus_1_tmem_txt",
"",
"002acde0 000020 mus_2_pal",
"002ace00 000100 mus_2_eye1_TA_tex_txt",
"002acf00 000100 mus_2_eye2_TA_tex_txt",
"002ad000 000100 mus_2_eye3_TA_tex_txt",
"002ad100 000100 mus_2_eye4_TA_tex_txt",
"002ad200 000100 mus_2_eye5_TA_tex_txt",
"002ad300 000100 mus_2_eye6_TA_tex_txt",
"002ad400 000100 mus_2_eye7_TA_tex_txt",
"002ad500 000100 mus_2_eye8_TA_tex_txt",
"002ad600 000100 mus_2_mouth1_TA_tex_txt",
"002ad700 000100 mus_2_mouth2_TA_tex_txt",
"002ad800 000100 mus_2_mouth3_TA_tex_txt",
"002ad900 000100 mus_2_mouth4_TA_tex_txt",
"002ada00 000100 mus_2_mouth5_TA_tex_txt",
"002adb00 000100 mus_2_mouth6_TA_tex_txt",
"002adc00 000400 mus_2_tmem_txt",
"",
"002ae000 000020 mus_3_pal",
"002ae020 000100 mus_3_eye1_TA_tex_txt",
"002ae120 000100 mus_3_eye2_TA_tex_txt",
"002ae220 000100 mus_3_eye3_TA_tex_txt",
"002ae320 000100 mus_3_eye4_TA_tex_txt",
"002ae420 000100 mus_3_eye5_TA_tex_txt",
"002ae520 000100 mus_3_eye6_TA_tex_txt",
"002ae620 000100 mus_3_eye7_TA_tex_txt",
"002ae720 000100 mus_3_eye8_TA_tex_txt",
"002ae820 000100 mus_3_mouth1_TA_tex_txt",
"002ae920 000100 mus_3_mouth2_TA_tex_txt",
"002aea20 000100 mus_3_mouth3_TA_tex_txt",
"002aeb20 000100 mus_3_mouth4_TA_tex_txt",
"002aec20 000100 mus_3_mouth5_TA_tex_txt",
"002aed20 000100 mus_3_mouth6_TA_tex_txt",
"002aee20 000400 mus_3_tmem_txt",
"",
"002af220 000020 mus_4_pal",
"002af240 000100 mus_4_eye1_TA_tex_txt",
"002af340 000100 mus_4_eye2_TA_tex_txt",
"002af440 000100 mus_4_eye3_TA_tex_txt",
"002af540 000100 mus_4_eye4_TA_tex_txt",
"002af640 000100 mus_4_eye5_TA_tex_txt",
"002af740 000100 mus_4_eye6_TA_tex_txt",
"002af840 000100 mus_4_eye7_TA_tex_txt",
"002af940 000100 mus_4_eye8_TA_tex_txt",
"002afa40 000100 mus_4_mouth1_TA_tex_txt",
"002afb40 000100 mus_4_mouth2_TA_tex_txt",
"002afc40 000100 mus_4_mouth3_TA_tex_txt",
"002afd40 000100 mus_4_mouth4_TA_tex_txt",
"002afe40 000100 mus_4_mouth5_TA_tex_txt",
"002aff40 000100 mus_4_mouth6_TA_tex_txt",
"002b0040 000400 mus_4_tmem_txt",
"",
"002b0440 000020 mus_5_pal",
"002b0460 000100 mus_5_eye1_TA_tex_txt",
"002b0560 000100 mus_5_eye2_TA_tex_txt",
"002b0660 000100 mus_5_eye3_TA_tex_txt",
"002b0760 000100 mus_5_eye4_TA_tex_txt",
"002b0860 000100 mus_5_eye5_TA_tex_txt",
"002b0960 000100 mus_5_eye6_TA_tex_txt",
"002b0a60 000100 mus_5_eye7_TA_tex_txt",
"002b0b60 000100 mus_5_eye8_TA_tex_txt",
"002b0c60 000100 mus_5_mouth1_TA_tex_txt",
"002b0d60 000100 mus_5_mouth2_TA_tex_txt",
"002b0e60 000100 mus_5_mouth3_TA_tex_txt",
"002b0f60 000100 mus_5_mouth4_TA_tex_txt",
"002b1060 000100 mus_5_mouth5_TA_tex_txt",
"002b1160 000100 mus_5_mouth6_TA_tex_txt",
"002b1260 000400 mus_5_tmem_txt",
"",
"002b1660 000020 mus_6_pal",
"002b1680 000100 mus_6_eye1_TA_tex_txt",
"002b1780 000100 mus_6_eye2_TA_tex_txt",
"002b1880 000100 mus_6_eye3_TA_tex_txt",
"002b1980 000100 mus_6_eye4_TA_tex_txt",
"002b1a80 000100 mus_6_eye5_TA_tex_txt",
"002b1b80 000100 mus_6_eye6_TA_tex_txt",
"002b1c80 000100 mus_6_eye7_TA_tex_txt",
"002b1d80 000100 mus_6_eye8_TA_tex_txt",
"002b1e80 000100 mus_6_mouth1_TA_tex_txt",
"002b1f80 000100 mus_6_mouth2_TA_tex_txt",
"002b2080 000100 mus_6_mouth3_TA_tex_txt",
"002b2180 000100 mus_6_mouth4_TA_tex_txt",
"002b2280 000100 mus_6_mouth5_TA_tex_txt",
"002b2380 000100 mus_6_mouth6_TA_tex_txt",
"002b2480 000400 mus_6_tmem_txt",
"",
"002b2880 000020 mus_7_pal",
"002b28a0 000100 mus_7_eye1_TA_tex_txt",
"002b29a0 000100 mus_7_eye2_TA_tex_txt",
"002b2aa0 000100 mus_7_eye3_TA_tex_txt",
"002b2ba0 000100 mus_7_eye4_TA_tex_txt",
"002b2ca0 000100 mus_7_eye5_TA_tex_txt",
"002b2da0 000100 mus_7_eye6_TA_tex_txt",
"002b2ea0 000100 mus_7_eye7_TA_tex_txt",
"002b2fa0 000100 mus_7_eye8_TA_tex_txt",
"002b30a0 000100 mus_7_mouth1_TA_tex_txt",
"002b31a0 000100 mus_7_mouth2_TA_tex_txt",
"002b32a0 000100 mus_7_mouth3_TA_tex_txt",
"002b33a0 000100 mus_7_mouth4_TA_tex_txt",
"002b34a0 000100 mus_7_mouth5_TA_tex_txt",
"002b35a0 000100 mus_7_mouth6_TA_tex_txt",
"002b36a0 000400 mus_7_tmem_txt",
"",
"002b3aa0 000020 mus_8_pal",
"002b3ac0 000100 mus_8_eye1_TA_tex_txt",
"002b3bc0 000100 mus_8_eye2_TA_tex_txt",
"002b3cc0 000100 mus_8_eye3_TA_tex_txt",
"002b3dc0 000100 mus_8_eye4_TA_tex_txt",
"002b3ec0 000100 mus_8_eye5_TA_tex_txt",
"002b3fc0 000100 mus_8_eye6_TA_tex_txt",
"002b40c0 000100 mus_8_eye7_TA_tex_txt",
"002b41c0 000100 mus_8_eye8_TA_tex_txt",
"002b42c0 000100 mus_8_mouth1_TA_tex_txt",
"002b43c0 000100 mus_8_mouth2_TA_tex_txt",
"002b44c0 000100 mus_8_mouth3_TA_tex_txt",
"002b45c0 000100 mus_8_mouth4_TA_tex_txt",
"002b46c0 000100 mus_8_mouth5_TA_tex_txt",
"002b47c0 000100 mus_8_mouth6_TA_tex_txt",
"002b48c0 000400 mus_8_tmem_txt",
"",
"002b4cc0 000020 mus_9_pal",
"002b4ce0 000100 mus_9_eye1_TA_tex_txt",
"002b4de0 000100 mus_9_eye2_TA_tex_txt",
"002b4ee0 000100 mus_9_eye3_TA_tex_txt",
"002b4fe0 000100 mus_9_eye4_TA_tex_txt",
"002b50e0 000100 mus_9_eye5_TA_tex_txt",
"002b51e0 000100 mus_9_eye6_TA_tex_txt",
"002b52e0 000100 mus_9_eye7_TA_tex_txt",
"002b53e0 000100 mus_9_eye8_TA_tex_txt",
"002b54e0 000100 mus_9_mouth1_TA_tex_txt",
"002b55e0 000100 mus_9_mouth2_TA_tex_txt",
"002b56e0 000100 mus_9_mouth3_TA_tex_txt",
"002b57e0 000100 mus_9_mouth4_TA_tex_txt",
"002b58e0 000100 mus_9_mouth5_TA_tex_txt",
"002b59e0 000100 mus_9_mouth6_TA_tex_txt",
"002b5ae0 000400 mus_9_tmem_txt",
"",
"002b5ee0 000020 mus_10_pal",
"002b5f00 000100 mus_10_eye1_TA_tex_txt",
"002b6000 000100 mus_10_eye2_TA_tex_txt",
"002b6100 000100 mus_10_eye3_TA_tex_txt",
"002b6200 000100 mus_10_eye4_TA_tex_txt",
"002b6300 000100 mus_10_eye5_TA_tex_txt",
"002b6400 000100 mus_10_eye6_TA_tex_txt",
"002b6500 000100 mus_10_eye7_TA_tex_txt",
"002b6600 000100 mus_10_eye8_TA_tex_txt",
"002b6700 000100 mus_10_mouth1_TA_tex_txt",
"002b6800 000100 mus_10_mouth2_TA_tex_txt",
"002b6900 000100 mus_10_mouth3_TA_tex_txt",
"002b6a00 000100 mus_10_mouth4_TA_tex_txt",
"002b6b00 000100 mus_10_mouth5_TA_tex_txt",
"002b6c00 000100 mus_10_mouth6_TA_tex_txt",
"002b6d00 000400 mus_10_tmem_txt",
"",
"002c4970 001ca0 hgh_1_v",
"002c6610 0002e0 head_hgh_model",
"002c68f0 000090 mouth_hgh_model",
"002c6980 000088 Rarm2_hgh_model",
"002c6a08 000078 Rarm1_hgh_model",
"002c6a80 000088 Larm2_hgh_model",
"002c6b08 000078 Larm1_hgh_model",
"002c6b80 000128 chest_hgh_model",
"002c6ca8 000080 tail1_hgh_model",
"002c6d28 000088 tail2_hgh_model",
"002c6db0 000080 Rfoot2_hgh_model",
"002c6e30 000058 Rfoot1_hgh_model",
"002c6e88 000080 Lfoot2_hgh_model",
"002c6f08 000058 Lfoot1_hgh_model",
"002c6f60 000070 base_hgh_model",
"002c6fd0 000138 cKF_je_r_hgh_1_tbl",
"002c7108 000008 cKF_bs_r_hgh_1",
"",
"002c7120 000020 hgh_1_pal",
"002c7140 000100 hgh_1_eye1_TA_tex_txt",
"002c7240 000100 hgh_1_eye2_TA_tex_txt",
"002c7340 000100 hgh_1_eye3_TA_tex_txt",
"002c7440 000100 hgh_1_eye4_TA_tex_txt",
"002c7540 000100 hgh_1_eye5_TA_tex_txt",
"002c7640 000100 hgh_1_eye6_TA_tex_txt",
"002c7740 000100 hgh_1_eye7_TA_tex_txt",
"002c7840 000100 hgh_1_eye8_TA_tex_txt",
"002c7940 0006c0 hgh_1_tmem_txt",
"",
"002c8000 001c80 hgs_1_v",
"002c9c80 0002e0 head_hgs_model",
"002c9f60 000090 mouth_hgs_model",
"002c9ff0 000088 Rarm2_hgs_model",
"002ca078 000078 Rarm1_hgs_model",
"002ca0f0 000088 Larm2_hgs_model",
"002ca178 000078 Larm1_hgs_model",
"002ca1f0 000128 chest_hgs_model",
"002ca318 000080 tail1_hgs_model",
"002ca398 000088 tail2_hgs_model",
"002ca420 000080 Rfoot2_hgs_model",
"002ca4a0 000058 Rfoot1_hgs_model",
"002ca4f8 000080 Lfoot2_hgs_model",
"002ca578 000058 Lfoot1_hgs_model",
"002ca5d0 000070 base_hgs_model",
"002ca640 000138 cKF_je_r_hgs_1_tbl",
"002ca778 000008 cKF_bs_r_hgs_1",
"",
"002ca780 000020 hgs_1_pal",
"002ca7a0 000100 hgs_1_eye1_TA_tex_txt",
"002ca8a0 000100 hgs_1_eye2_TA_tex_txt",
"002ca9a0 000100 hgs_1_eye3_TA_tex_txt",
"002caaa0 000100 hgs_1_eye4_TA_tex_txt",
"002caba0 000100 hgs_1_eye5_TA_tex_txt",
"002caca0 000100 hgs_1_eye6_TA_tex_txt",
"002cada0 000100 hgs_1_eye7_TA_tex_txt",
"002caea0 000100 hgs_1_eye8_TA_tex_txt",
"002cafa0 0006c0 hgs_1_tmem_txt",
"",
"0032a7b0 001d80 oct_1_v",
"0032c530 000108 head_oct_model",
"0032c638 0000a8 Rarm2_oct_model",
"0032c6e0 000080 Rarm1_oct_model",
"0032c760 0000b0 Larm2_oct_model",
"0032c810 000080 Larm1_oct_model",
"0032c890 0000a8 chest_oct_model",
"0032c938 0000c0 Rfoot3_oct_model",
"0032c9f8 0000c0 Rfoot2_oct_model",
"0032cab8 0000b8 Rfoot1_oct_model",
"0032cb70 0000c0 Lfoot3_oct_model",
"0032cc30 0000c0 Lfoot2_oct_model",
"0032ccf0 0000c0 Lfoot1_oct_model",
"0032cdb0 000070 base_oct_model",
"0032ce20 000138 cKF_je_r_oct_1_tbl",
"0032cf58 000008 cKF_bs_r_oct_1",
"",
"0032cf60 000020 oct_1_pal",
"0032cf80 000100 oct_1_eye1_TA_tex_txt",
"0032d080 000100 oct_1_eye2_TA_tex_txt",
"0032d180 000100 oct_1_eye3_TA_tex_txt",
"0032d280 000100 oct_1_eye4_TA_tex_txt",
"0032d380 000100 oct_1_eye5_TA_tex_txt",
"0032d480 000100 oct_1_eye6_TA_tex_txt",
"0032d580 000100 oct_1_eye7_TA_tex_txt",
"0032d680 000100 oct_1_eye8_TA_tex_txt",
"0032d780 000200 oct_1_tmem_txt",
"",
"0032d980 0017d0 ost_1_v",
"0032f150 0001d0 head_ost_model",
"0032f320 000078 mouth_ost_model",
"0032f398 000080 Rarm2_ost_model",
"0032f418 000078 Rarm1_ost_model",
"0032f490 000080 Larm2_ost_model",
"0032f510 000078 Larm1_ost_model",
"0032f588 0000d8 chest_ost_model",
"0032f660 0000f8 tail_ost_model",
"0032f758 0000a0 Rfoot3_ost_model",
"0032f7f8 000080 Rfoot2_ost_model",
"0032f878 000058 Rfoot1_ost_model",
"0032f8d0 0000a0 Lfoot3_ost_model",
"0032f970 000080 Lfoot2_ost_model",
"0032f9f0 000058 Lfoot1_ost_model",
"0032fa48 000078 base_ost_model",
"0032fac0 000138 cKF_je_r_ost_1_tbl",
"0032fbf8 000008 cKF_bs_r_ost_1",
"",
"0032fc00 000020 ost_1_pal",
"0032fc20 000100 ost_1_eye1_TA_tex_txt",
"0032fd20 000100 ost_1_eye2_TA_tex_txt",
"0032fe20 000100 ost_1_eye3_TA_tex_txt",
"0032ff20 000100 ost_1_eye4_TA_tex_txt",
"00330020 000100 ost_1_eye5_TA_tex_txt",
"00330120 000100 ost_1_eye6_TA_tex_txt",
"00330220 000100 ost_1_eye7_TA_tex_txt",
"00330320 000100 ost_1_eye8_TA_tex_txt",
"00330420 000540 ost_1_tmem_txt",
"",
"00330960 000020 ost_2_pal",
"00330980 000100 ost_2_eye1_TA_tex_txt",
"00330a80 000100 ost_2_eye2_TA_tex_txt",
"00330b80 000100 ost_2_eye3_TA_tex_txt",
"00330c80 000100 ost_2_eye4_TA_tex_txt",
"00330d80 000100 ost_2_eye5_TA_tex_txt",
"00330e80 000100 ost_2_eye6_TA_tex_txt",
"00330f80 000100 ost_2_eye7_TA_tex_txt",
"00331080 000100 ost_2_eye8_TA_tex_txt",
"00331180 000540 ost_2_tmem_txt",
"",
"003316c0 000020 ost_3_pal",
"003316e0 000100 ost_3_eye1_TA_tex_txt",
"003317e0 000100 ost_3_eye2_TA_tex_txt",
"003318e0 000100 ost_3_eye3_TA_tex_txt",
"003319e0 000100 ost_3_eye4_TA_tex_txt",
"00331ae0 000100 ost_3_eye5_TA_tex_txt",
"00331be0 000100 ost_3_eye6_TA_tex_txt",
"00331ce0 000100 ost_3_eye7_TA_tex_txt",
"00331de0 000100 ost_3_eye8_TA_tex_txt",
"00331ee0 000540 ost_3_tmem_txt",
"",
"00332420 000020 ost_4_pal",
"00332440 000100 ost_4_eye1_TA_tex_txt",
"00332540 000100 ost_4_eye2_TA_tex_txt",
"00332640 000100 ost_4_eye3_TA_tex_txt",
"00332740 000100 ost_4_eye4_TA_tex_txt",
"00332840 000100 ost_4_eye5_TA_tex_txt",
"00332940 000100 ost_4_eye6_TA_tex_txt",
"00332a40 000100 ost_4_eye7_TA_tex_txt",
"00332b40 000100 ost_4_eye8_TA_tex_txt",
"00332c40 000540 ost_4_tmem_txt",
"",
"00333a28 0017e0 pgn_1_v",
"00335208 0001d0 head_pgn_model",
"003353d8 000078 mouth_pgn_model",
"00335450 000080 Rarm2_pgn_model",
"003354d0 000078 Rarm1_pgn_model",
"00335548 000080 Larm2_pgn_model",
"003355c8 000078 Larm1_pgn_model",
"00335640 0000d8 chest_pgn_model",
"00335718 000088 tail1_pgn_model",
"003357a0 000088 Rfoot3_pgn_model",
"00335828 000080 Rfoot2_pgn_model",
"003358a8 000058 Rfoot1_pgn_model",
"00335900 000088 Lfoot3_pgn_model",
"00335988 000080 Lfoot2_pgn_model",
"00335a08 000058 Lfoot1_pgn_model",
"00335a60 0000a0 base_pgn_model",
"00335b00 000138 cKF_je_r_pgn_1_tbl",
"00335c38 000008 cKF_bs_r_pgn_1",
"",
"00335c40 000020 pgn_1_pal",
"00335c60 000100 pgn_1_eye1_TA_tex_txt",
"00335d60 000100 pgn_1_eye2_TA_tex_txt",
"00335e60 000100 pgn_1_eye3_TA_tex_txt",
"00335f60 000100 pgn_1_eye4_TA_tex_txt",
"00336060 000100 pgn_1_eye5_TA_tex_txt",
"00336160 000100 pgn_1_eye6_TA_tex_txt",
"00336260 000100 pgn_1_eye7_TA_tex_txt",
"00336360 000100 pgn_1_eye8_TA_tex_txt",
"00336460 000580 pgn_1_tmem_txt",
"",
"003369e0 000020 pgn_2_pal",
"00336a00 000100 pgn_2_eye1_TA_tex_txt",
"00336b00 000100 pgn_2_eye2_TA_tex_txt",
"00336c00 000100 pgn_2_eye3_TA_tex_txt",
"00336d00 000100 pgn_2_eye4_TA_tex_txt",
"00336e00 000100 pgn_2_eye5_TA_tex_txt",
"00336f00 000100 pgn_2_eye6_TA_tex_txt",
"00337000 000100 pgn_2_eye7_TA_tex_txt",
"00337100 000100 pgn_2_eye8_TA_tex_txt",
"00337200 000580 pgn_2_tmem_txt",
"",
"00337780 000020 pgn_3_pal",
"003377a0 000100 pgn_3_eye1_TA_tex_txt",
"003378a0 000100 pgn_3_eye2_TA_tex_txt",
"003379a0 000100 pgn_3_eye3_TA_tex_txt",
"00337aa0 000100 pgn_3_eye4_TA_tex_txt",
"00337ba0 000100 pgn_3_eye5_TA_tex_txt",
"00337ca0 000100 pgn_3_eye6_TA_tex_txt",
"00337da0 000100 pgn_3_eye7_TA_tex_txt",
"00337ea0 000100 pgn_3_eye8_TA_tex_txt",
"00337fa0 000580 pgn_3_tmem_txt",
"",
"00338520 000020 pgn_4_pal",
"00338540 000100 pgn_4_eye1_TA_tex_txt",
"00338640 000100 pgn_4_eye2_TA_tex_txt",
"00338740 000100 pgn_4_eye3_TA_tex_txt",
"00338840 000100 pgn_4_eye4_TA_tex_txt",
"00338940 000100 pgn_4_eye5_TA_tex_txt",
"00338a40 000100 pgn_4_eye6_TA_tex_txt",
"00338b40 000100 pgn_4_eye7_TA_tex_txt",
"00338c40 000100 pgn_4_eye8_TA_tex_txt",
"00338d40 000580 pgn_4_tmem_txt",
"",
"003392c0 000020 pgn_5_pal",
"003392e0 000100 pgn_5_eye1_TA_tex_txt",
"003393e0 000100 pgn_5_eye2_TA_tex_txt",
"003394e0 000100 pgn_5_eye3_TA_tex_txt",
"003395e0 000100 pgn_5_eye4_TA_tex_txt",
"003396e0 000100 pgn_5_eye5_TA_tex_txt",
"003397e0 000100 pgn_5_eye6_TA_tex_txt",
"003398e0 000100 pgn_5_eye7_TA_tex_txt",
"003399e0 000100 pgn_5_eye8_TA_tex_txt",
"00339ae0 000580 pgn_5_tmem_txt",
"",
"0033a060 000020 pgn_6_pal",
"0033a080 000100 pgn_6_eye1_TA_tex_txt",
"0033a180 000100 pgn_6_eye2_TA_tex_txt",
"0033a280 000100 pgn_6_eye3_TA_tex_txt",
"0033a380 000100 pgn_6_eye4_TA_tex_txt",
"0033a480 000100 pgn_6_eye5_TA_tex_txt",
"0033a580 000100 pgn_6_eye6_TA_tex_txt",
"0033a680 000100 pgn_6_eye7_TA_tex_txt",
"0033a780 000100 pgn_6_eye8_TA_tex_txt",
"0033a880 000580 pgn_6_tmem_txt",
"",
"0033ae00 000020 pgn_7_pal",
"0033ae20 000100 pgn_7_eye1_TA_tex_txt",
"0033af20 000100 pgn_7_eye2_TA_tex_txt",
"0033b020 000100 pgn_7_eye3_TA_tex_txt",
"0033b120 000100 pgn_7_eye4_TA_tex_txt",
"0033b220 000100 pgn_7_eye5_TA_tex_txt",
"0033b320 000100 pgn_7_eye6_TA_tex_txt",
"0033b420 000100 pgn_7_eye7_TA_tex_txt",
"0033b520 000100 pgn_7_eye8_TA_tex_txt",
"0033b620 000580 pgn_7_tmem_txt",
"",
"0033bba0 000020 pgn_8_pal",
"0033bbc0 000100 pgn_8_eye1_TA_tex_txt",
"0033bcc0 000100 pgn_8_eye2_TA_tex_txt",
"0033bdc0 000100 pgn_8_eye3_TA_tex_txt",
"0033bec0 000100 pgn_8_eye4_TA_tex_txt",
"0033bfc0 000100 pgn_8_eye5_TA_tex_txt",
"0033c0c0 000100 pgn_8_eye6_TA_tex_txt",
"0033c1c0 000100 pgn_8_eye7_TA_tex_txt",
"0033c2c0 000100 pgn_8_eye8_TA_tex_txt",
"0033c3c0 000580 pgn_8_tmem_txt",
"",
"0033c940 0013f0 pig_1_v",
"0033dd30 000138 head_pig_model",
"0033de68 000088 Rarm2_pig_model",
"0033def0 000078 Rarm1_pig_model",
"0033df68 000088 Larm2_pig_model",
"0033dff0 000078 Larm1_pig_model",
"0033e068 0000a8 chest_pig_model",
"0033e110 000080 tail1_pig_model",
"0033e190 000080 Rfoot2_pig_model",
"0033e210 0000c0 Rfoot1_pig_model",
"0033e2d0 000080 Lfoot2_pig_model",
"0033e350 0000c0 Lfoot1_pig_model",
"0033e410 000070 base_pig_model",
"0033e480 000138 cKF_je_r_pig_1_tbl",
"0033e5b8 000008 cKF_bs_r_pig_1",
"",
"0033e5c0 000020 pig_1_pal",
"0033e5e0 000100 pig_1_eye1_TA_tex_txt",
"0033e6e0 000100 pig_1_eye2_TA_tex_txt",
"0033e7e0 000100 pig_1_eye3_TA_tex_txt",
"0033e8e0 000100 pig_1_eye4_TA_tex_txt",
"0033e9e0 000100 pig_1_eye5_TA_tex_txt",
"0033eae0 000100 pig_1_eye6_TA_tex_txt",
"0033ebe0 000100 pig_1_eye7_TA_tex_txt",
"0033ece0 000100 pig_1_eye8_TA_tex_txt",
"0033ede0 000100 pig_1_mouth1_TA_tex_txt",
"0033eee0 000100 pig_1_mouth2_TA_tex_txt",
"0033efe0 000100 pig_1_mouth3_TA_tex_txt",
"0033f0e0 000100 pig_1_mouth4_TA_tex_txt",
"0033f1e0 000100 pig_1_mouth5_TA_tex_txt",
"0033f2e0 000100 pig_1_mouth6_TA_tex_txt",
"0033f3e0 000380 pig_1_tmem_txt",
"",
"0033f760 000020 pig_2_pal",
"0033f780 000100 pig_2_eye1_TA_tex_txt",
"0033f880 000100 pig_2_eye2_TA_tex_txt",
"0033f980 000100 pig_2_eye3_TA_tex_txt",
"0033fa80 000100 pig_2_eye4_TA_tex_txt",
"0033fb80 000100 pig_2_eye5_TA_tex_txt",
"0033fc80 000100 pig_2_eye6_TA_tex_txt",
"0033fd80 000100 pig_2_eye7_TA_tex_txt",
"0033fe80 000100 pig_2_eye8_TA_tex_txt",
"0033ff80 000100 pig_2_mouth1_TA_tex_txt",
"00340080 000100 pig_2_mouth2_TA_tex_txt",
"00340180 000100 pig_2_mouth3_TA_tex_txt",
"00340280 000100 pig_2_mouth4_TA_tex_txt",
"00340380 000100 pig_2_mouth5_TA_tex_txt",
"00340480 000100 pig_2_mouth6_TA_tex_txt",
"00340580 000380 pig_2_tmem_txt",
"",
"00340900 000020 pig_11_pal",
"00340920 000100 pig_11_eye1_TA_tex_txt",
"00340a20 000100 pig_11_eye2_TA_tex_txt",
"00340b20 000100 pig_11_eye3_TA_tex_txt",
"00340c20 000100 pig_11_eye4_TA_tex_txt",
"00340d20 000100 pig_11_eye5_TA_tex_txt",
"00340e20 000100 pig_11_eye6_TA_tex_txt",
"00340f20 000100 pig_11_eye7_TA_tex_txt",
"00341020 000100 pig_11_eye8_TA_tex_txt",
"00341120 000100 pig_11_mouth1_TA_tex_txt",
"00341220 000100 pig_11_mouth2_TA_tex_txt",
"00341320 000100 pig_11_mouth3_TA_tex_txt",
"00341420 000100 pig_11_mouth4_TA_tex_txt",
"00341520 000100 pig_11_mouth5_TA_tex_txt",
"00341620 000100 pig_11_mouth6_TA_tex_txt",
"00341720 000380 pig_11_tmem_txt",
"",
"00341aa0 000020 pig_3_pal",
"00341ac0 000100 pig_3_eye1_TA_tex_txt",
"00341bc0 000100 pig_3_eye2_TA_tex_txt",
"00341cc0 000100 pig_3_eye3_TA_tex_txt",
"00341dc0 000100 pig_3_eye4_TA_tex_txt",
"00341ec0 000100 pig_3_eye5_TA_tex_txt",
"00341fc0 000100 pig_3_eye6_TA_tex_txt",
"003420c0 000100 pig_3_eye7_TA_tex_txt",
"003421c0 000100 pig_3_eye8_TA_tex_txt",
"003422c0 000100 pig_3_mouth1_TA_tex_txt",
"003423c0 000100 pig_3_mouth2_TA_tex_txt",
"003424c0 000100 pig_3_mouth3_TA_tex_txt",
"003425c0 000100 pig_3_mouth4_TA_tex_txt",
"003426c0 000100 pig_3_mouth5_TA_tex_txt",
"003427c0 000100 pig_3_mouth6_TA_tex_txt",
"003428c0 000380 pig_3_tmem_txt",
"",
"00342c40 000020 pig_4_pal",
"00342c60 000100 pig_4_eye1_TA_tex_txt",
"00342d60 000100 pig_4_eye2_TA_tex_txt",
"00342e60 000100 pig_4_eye3_TA_tex_txt",
"00342f60 000100 pig_4_eye4_TA_tex_txt",
"00343060 000100 pig_4_eye5_TA_tex_txt",
"00343160 000100 pig_4_eye6_TA_tex_txt",
"00343260 000100 pig_4_eye7_TA_tex_txt",
"00343360 000100 pig_4_eye8_TA_tex_txt",
"00343460 000100 pig_4_mouth1_TA_tex_txt",
"00343560 000100 pig_4_mouth2_TA_tex_txt",
"00343660 000100 pig_4_mouth3_TA_tex_txt",
"00343760 000100 pig_4_mouth4_TA_tex_txt",
"00343860 000100 pig_4_mouth5_TA_tex_txt",
"00343960 000100 pig_4_mouth6_TA_tex_txt",
"00343a60 000380 pig_4_tmem_txt",
"",
"00343de0 000020 pig_5_pal",
"00343e00 000100 pig_5_eye1_TA_tex_txt",
"00343f00 000100 pig_5_eye2_TA_tex_txt",
"00344000 000100 pig_5_eye3_TA_tex_txt",
"00344100 000100 pig_5_eye4_TA_tex_txt",
"00344200 000100 pig_5_eye5_TA_tex_txt",
"00344300 000100 pig_5_eye6_TA_tex_txt",
"00344400 000100 pig_5_eye7_TA_tex_txt",
"00344500 000100 pig_5_eye8_TA_tex_txt",
"00344600 000100 pig_5_mouth1_TA_tex_txt",
"00344700 000100 pig_5_mouth2_TA_tex_txt",
"00344800 000100 pig_5_mouth3_TA_tex_txt",
"00344900 000100 pig_5_mouth4_TA_tex_txt",
"00344a00 000100 pig_5_mouth5_TA_tex_txt",
"00344b00 000100 pig_5_mouth6_TA_tex_txt",
"00344c00 000380 pig_5_tmem_txt",
"",
"00344f80 000020 pig_6_pal",
"00344fa0 000100 pig_6_eye1_TA_tex_txt",
"003450a0 000100 pig_6_eye2_TA_tex_txt",
"003451a0 000100 pig_6_eye3_TA_tex_txt",
"003452a0 000100 pig_6_eye4_TA_tex_txt",
"003453a0 000100 pig_6_eye5_TA_tex_txt",
"003454a0 000100 pig_6_eye6_TA_tex_txt",
"003455a0 000100 pig_6_eye7_TA_tex_txt",
"003456a0 000100 pig_6_eye8_TA_tex_txt",
"003457a0 000100 pig_6_mouth1_TA_tex_txt",
"003458a0 000100 pig_6_mouth2_TA_tex_txt",
"003459a0 000100 pig_6_mouth3_TA_tex_txt",
"00345aa0 000100 pig_6_mouth4_TA_tex_txt",
"00345ba0 000100 pig_6_mouth5_TA_tex_txt",
"00345ca0 000100 pig_6_mouth6_TA_tex_txt",
"00345da0 000380 pig_6_tmem_txt",
"",
"00346120 000020 pig_7_pal",
"00346140 000100 pig_7_eye1_TA_tex_txt",
"00346240 000100 pig_7_eye2_TA_tex_txt",
"00346340 000100 pig_7_eye3_TA_tex_txt",
"00346440 000100 pig_7_eye4_TA_tex_txt",
"00346540 000100 pig_7_eye5_TA_tex_txt",
"00346640 000100 pig_7_eye6_TA_tex_txt",
"00346740 000100 pig_7_eye7_TA_tex_txt",
"00346840 000100 pig_7_eye8_TA_tex_txt",
"00346940 000100 pig_7_mouth1_TA_tex_txt",
"00346a40 000100 pig_7_mouth2_TA_tex_txt",
"00346b40 000100 pig_7_mouth3_TA_tex_txt",
"00346c40 000100 pig_7_mouth4_TA_tex_txt",
"00346d40 000100 pig_7_mouth5_TA_tex_txt",
"00346e40 000100 pig_7_mouth6_TA_tex_txt",
"00346f40 000380 pig_7_tmem_txt",
"",
"003472c0 000020 pig_8_pal",
"003472e0 000100 pig_8_eye1_TA_tex_txt",
"003473e0 000100 pig_8_eye2_TA_tex_txt",
"003474e0 000100 pig_8_eye3_TA_tex_txt",
"003475e0 000100 pig_8_eye4_TA_tex_txt",
"003476e0 000100 pig_8_eye5_TA_tex_txt",
"003477e0 000100 pig_8_eye6_TA_tex_txt",
"003478e0 000100 pig_8_eye7_TA_tex_txt",
"003479e0 000100 pig_8_eye8_TA_tex_txt",
"00347ae0 000100 pig_8_mouth1_TA_tex_txt",
"00347be0 000100 pig_8_mouth2_TA_tex_txt",
"00347ce0 000100 pig_8_mouth3_TA_tex_txt",
"00347de0 000100 pig_8_mouth4_TA_tex_txt",
"00347ee0 000100 pig_8_mouth5_TA_tex_txt",
"00347fe0 000100 pig_8_mouth6_TA_tex_txt",
"003480e0 000380 pig_8_tmem_txt",
"",
"00348460 000020 pig_9_pal",
"00348480 000100 pig_9_eye1_TA_tex_txt",
"00348580 000100 pig_9_eye2_TA_tex_txt",
"00348680 000100 pig_9_eye3_TA_tex_txt",
"00348780 000100 pig_9_eye4_TA_tex_txt",
"00348880 000100 pig_9_eye5_TA_tex_txt",
"00348980 000100 pig_9_eye6_TA_tex_txt",
"00348a80 000100 pig_9_eye7_TA_tex_txt",
"00348b80 000100 pig_9_eye8_TA_tex_txt",
"00348c80 000100 pig_9_mouth1_TA_tex_txt",
"00348d80 000100 pig_9_mouth2_TA_tex_txt",
"00348e80 000100 pig_9_mouth3_TA_tex_txt",
"00348f80 000100 pig_9_mouth4_TA_tex_txt",
"00349080 000100 pig_9_mouth5_TA_tex_txt",
"00349180 000100 pig_9_mouth6_TA_tex_txt",
"00349280 000380 pig_9_tmem_txt",
"",
"00349600 000020 pig_10_pal",
"00349620 000100 pig_10_eye1_TA_tex_txt",
"00349720 000100 pig_10_eye2_TA_tex_txt",
"00349820 000100 pig_10_eye3_TA_tex_txt",
"00349920 000100 pig_10_eye4_TA_tex_txt",
"00349a20 000100 pig_10_eye5_TA_tex_txt",
"00349b20 000100 pig_10_eye6_TA_tex_txt",
"00349c20 000100 pig_10_eye7_TA_tex_txt",
"00349d20 000100 pig_10_eye8_TA_tex_txt",
"00349e20 000100 pig_10_mouth1_TA_tex_txt",
"00349f20 000100 pig_10_mouth2_TA_tex_txt",
"0034a020 000100 pig_10_mouth3_TA_tex_txt",
"0034a120 000100 pig_10_mouth4_TA_tex_txt",
"0034a220 000100 pig_10_mouth5_TA_tex_txt",
"0034a320 000100 pig_10_mouth6_TA_tex_txt",
"0034a420 000380 pig_10_tmem_txt",
"",
"0034a7a0 001cb0 pla_1_v",
"0034c450 0002b8 head_pla_model",
"0034c708 000088 Rarm2_pla_model",
"0034c790 000078 Rarm1_pla_model",
"0034c808 000088 Larm2_pla_model",
"0034c890 000078 Larm1_pla_model",
"0034c908 0000f8 chest_pla_model",
"0034ca00 000088 tail1_pla_model",
"0034ca88 000080 Rfoot2_pla_model",
"0034cb08 000058 Rfoot1_pla_model",
"0034cb60 000080 Lfoot2_pla_model",
"0034cbe0 000058 Lfoot1_pla_model",
"0034cc38 0000a0 base_pla_model",
"0034ccd8 000138 cKF_je_r_pla_1_tbl",
"0034ce10 000008 cKF_bs_r_pla_1",
"",
"0034ce18 001730 plc_1_v",
"0034e548 000198 head_plc_model",
"0034e6e0 000080 Rarm2_plc_model",
"0034e760 000088 Rarm1_plc_model",
"0034e7e8 000080 Larm2_plc_model",
"0034e868 000088 Larm1_plc_model",
"0034e8f0 000108 chest_plc_model",
"0034e9f8 000058 tail1_plc_model",
"0034ea50 0000a0 tail2_plc_model",
"0034eaf0 000088 Rfoot2_plc_model",
"0034eb78 000080 Rfoot1_plc_model",
"0034ebf8 000088 Lfoot2_plc_model",
"0034ec80 000080 Lfoot1_plc_model",
"0034ed00 0000d0 base_plc_model",
"0034edd0 000138 cKF_je_r_plc_1_tbl",
"0034ef08 000008 cKF_bs_r_plc_1",
"",
"0034ef20 000020 plc_1_pal",
"0034ef40 000100 plc_1_eye1_TA_tex_txt",
"0034f040 000100 plc_1_eye2_TA_tex_txt",
"0034f140 000100 plc_1_eye3_TA_tex_txt",
"0034f240 000100 plc_1_eye4_TA_tex_txt",
"0034f340 000100 plc_1_eye5_TA_tex_txt",
"0034f440 000100 plc_1_eye6_TA_tex_txt",
"0034f540 000100 plc_1_eye7_TA_tex_txt",
"0034f640 000100 plc_1_eye8_TA_tex_txt",
"0034f740 000100 plc_1_mouth1_TA_tex_txt",
"0034f840 000100 plc_1_mouth2_TA_tex_txt",
"0034f940 000100 plc_1_mouth3_TA_tex_txt",
"0034fa40 000100 plc_1_mouth4_TA_tex_txt",
"0034fb40 000100 plc_1_mouth5_TA_tex_txt",
"0034fc40 000100 plc_1_mouth6_TA_tex_txt",
"0034fd40 0006c0 plc_1_tmem_txt",
"",
"00350400 000020 pla_1_pal",
"00350420 000100 pla_1_eye1_TA_tex_txt",
"00350520 000100 pla_1_eye2_TA_tex_txt",
"00350620 000100 pla_1_eye3_TA_tex_txt",
"00350720 000100 pla_1_eye4_TA_tex_txt",
"00350820 000100 pla_1_eye5_TA_tex_txt",
"00350920 000100 pla_1_eye6_TA_tex_txt",
"00350a20 000100 pla_1_eye7_TA_tex_txt",
"00350b20 000100 pla_1_eye8_TA_tex_txt",
"00350c20 000100 pla_1_mouth1_TA_tex_txt",
"00350d20 000100 pla_1_mouth2_TA_tex_txt",
"00350e20 000100 pla_1_mouth3_TA_tex_txt",
"00350f20 000100 pla_1_mouth4_TA_tex_txt",
"00351020 000100 pla_1_mouth5_TA_tex_txt",
"00351120 000100 pla_1_mouth6_TA_tex_txt",
"00351220 000580 pla_1_tmem_txt",
"",
"003517a0 001a20 pga_1_v",
"003531c0 0001a0 head_pga_model",
"00353360 0000f0 mouth_pga_model",
"00353450 0000b8 Rarm2_pga_model",
"00353508 0000a8 Rarm1_pga_model",
"003535b0 0000b8 Larm2_pga_model",
"00353668 0000a8 Larm1_pga_model",
"00353710 0000a0 chest_pga_model",
"003537b0 000078 tail1_pga_model",
"00353828 000088 Rfoot3_pga_model",
"003538b0 000080 Rfoot2_pga_model",
"00353930 000058 Rfoot1_pga_model",
"00353988 000088 Lfoot3_pga_model",
"00353a10 000080 Lfoot2_pga_model",
"00353a90 000058 Lfoot1_pga_model",
"00353ae8 000078 base_pga_model",
"00353b60 000138 cKF_je_r_pga_1_tbl",
"00353c98 000008 cKF_bs_r_pga_1",
"",
"00353ca0 000020 pga_1_pal",
"00353cc0 000100 pga_1_eye1_TA_tex_txt",
"00353dc0 000100 pga_1_eye2_TA_tex_txt",
"00353ec0 000100 pga_1_eye3_TA_tex_txt",
"00353fc0 000100 pga_1_eye4_TA_tex_txt",
"003540c0 000100 pga_1_eye5_TA_tex_txt",
"003541c0 000100 pga_1_eye6_TA_tex_txt",
"003542c0 000100 pga_1_eye7_TA_tex_txt",
"003543c0 000100 pga_1_eye8_TA_tex_txt",
"003544c0 000640 pga_1_tmem_txt",
"",
"00354b00 001990 pgb_1_v",
"00356490 0001c0 head_pgb_model",
"00356650 0000b0 mouth_pgb_model",
"00356700 0000b8 Rarm2_pgb_model",
"003567b8 0000a8 Rarm1_pgb_model",
"00356860 0000b8 Larm2_pgb_model",
"00356918 0000a8 Larm1_pgb_model",
"003569c0 0000a0 chest_pgb_model",
"00356a60 000078 tail1_pgb_model",
"00356ad8 000088 Rfoot3_pgb_model",
"00356b60 000080 Rfoot2_pgb_model",
"00356be0 000058 Rfoot1_pgb_model",
"00356c38 000088 Lfoot3_pgb_model",
"00356cc0 000080 Lfoot2_pgb_model",
"00356d40 000058 Lfoot1_pgb_model",
"00356d98 000078 base_pgb_model",
"00356e10 000138 cKF_je_r_pgb_1_tbl",
"00356f48 000008 cKF_bs_r_pgb_1",
"",
"00356f60 000020 pgb_1_pal",
"00356f80 000100 pgb_1_eye1_TA_tex_txt",
"00357080 000100 pgb_1_eye2_TA_tex_txt",
"00357180 000100 pgb_1_eye3_TA_tex_txt",
"00357280 000100 pgb_1_eye4_TA_tex_txt",
"00357380 000100 pgb_1_eye5_TA_tex_txt",
"00357480 000100 pgb_1_eye6_TA_tex_txt",
"00357580 000100 pgb_1_eye7_TA_tex_txt",
"00357680 000100 pgb_1_eye8_TA_tex_txt",
"00357780 000780 pgb_1_tmem_txt",
"",
"00357f00 001a80 plb_1_v",
"00359980 000190 head_plb_model",
"00359b10 0000f0 mouth_plb_model",
"00359c00 0000b8 Rarm2_plb_model",
"00359cb8 000078 Rarm1_plb_model",
"00359d30 0000b8 Larm2_plb_model",
"00359de8 000078 Larm1_plb_model",
"00359e60 000150 chest_plb_model",
"00359fb0 000088 Rfoot3_plb_model",
"0035a038 000080 Rfoot2_plb_model",
"0035a0b8 000058 Rfoot1_plb_model",
"0035a110 000088 Lfoot3_plb_model",
"0035a198 000080 Lfoot2_plb_model",
"0035a218 000058 Lfoot1_plb_model",
"0035a270 0000d0 base_plb_model",
"0035a340 000138 cKF_je_r_plb_1_tbl",
"0035a478 000008 cKF_bs_r_plb_1",
"",
"0035a480 000020 plb_1_pal",
"0035a4a0 000100 plb_1_eye1_TA_tex_txt",
"0035a5a0 000100 plb_1_eye2_TA_tex_txt",
"0035a6a0 000100 plb_1_eye3_TA_tex_txt",
"0035a7a0 000100 plb_1_eye4_TA_tex_txt",
"0035a8a0 000100 plb_1_eye5_TA_tex_txt",
"0035a9a0 000100 plb_1_eye6_TA_tex_txt",
"0035aaa0 000100 plb_1_eye7_TA_tex_txt",
"0035aba0 000100 plb_1_eye8_TA_tex_txt",
"0035aca0 000780 plb_1_tmem_txt",
"",
"0035b420 0015a0 rbt_1_v",
"0035c9c0 0001a8 head_rbt_model",
"0035cb68 000088 Rarm2_rbt_model",
"0035cbf0 000078 Rarm1_rbt_model",
"0035cc68 000088 Larm2_rbt_model",
"0035ccf0 000078 Larm1_rbt_model",
"0035cd68 0000a8 chest_rbt_model",
"0035ce10 000078 tail1_rbt_model",
"0035ce88 000080 Rfoot2_rbt_model",
"0035cf08 0000c0 Rfoot1_rbt_model",
"0035cfc8 000080 Lfoot2_rbt_model",
"0035d048 0000c0 Lfoot1_rbt_model",
"0035d108 000070 base_rbt_model",
"0035d178 000138 cKF_je_r_rbt_1_tbl",
"0035d2b0 000008 cKF_bs_r_rbt_1",
"",
"0035d2c0 000020 rbt_1_pal",
"0035d2e0 000100 rbt_1_eye1_TA_tex_txt",
"0035d3e0 000100 rbt_1_eye2_TA_tex_txt",
"0035d4e0 000100 rbt_1_eye3_TA_tex_txt",
"0035d5e0 000100 rbt_1_eye4_TA_tex_txt",
"0035d6e0 000100 rbt_1_eye5_TA_tex_txt",
"0035d7e0 000100 rbt_1_eye6_TA_tex_txt",
"0035d8e0 000100 rbt_1_eye7_TA_tex_txt",
"0035d9e0 000100 rbt_1_eye8_TA_tex_txt",
"0035dae0 000100 rbt_1_mouth1_TA_tex_txt",
"0035dbe0 000100 rbt_1_mouth2_TA_tex_txt",
"0035dce0 000100 rbt_1_mouth3_TA_tex_txt",
"0035dde0 000100 rbt_1_mouth4_TA_tex_txt",
"0035dee0 000100 rbt_1_mouth5_TA_tex_txt",
"0035dfe0 000100 rbt_1_mouth6_TA_tex_txt",
"0035e0e0 000400 rbt_1_tmem_txt",
"",
"0035e4e0 000020 rbt_2_pal",
"0035e500 000100 rbt_2_eye1_TA_tex_txt",
"0035e600 000100 rbt_2_eye2_TA_tex_txt",
"0035e700 000100 rbt_2_eye3_TA_tex_txt",
"0035e800 000100 rbt_2_eye4_TA_tex_txt",
"0035e900 000100 rbt_2_eye5_TA_tex_txt",
"0035ea00 000100 rbt_2_eye6_TA_tex_txt",
"0035eb00 000100 rbt_2_eye7_TA_tex_txt",
"0035ec00 000100 rbt_2_eye8_TA_tex_txt",
"0035ed00 000100 rbt_2_mouth1_TA_tex_txt",
"0035ee00 000100 rbt_2_mouth2_TA_tex_txt",
"0035ef00 000100 rbt_2_mouth3_TA_tex_txt",
"0035f000 000100 rbt_2_mouth4_TA_tex_txt",
"0035f100 000100 rbt_2_mouth5_TA_tex_txt",
"0035f200 000100 rbt_2_mouth6_TA_tex_txt",
"0035f300 000400 rbt_2_tmem_txt",
"",
"0035f700 000020 rbt_11_pal",
"0035f720 000100 rbt_11_eye1_TA_tex_txt",
"0035f820 000100 rbt_11_eye2_TA_tex_txt",
"0035f920 000100 rbt_11_eye3_TA_tex_txt",
"0035fa20 000100 rbt_11_eye4_TA_tex_txt",
"0035fb20 000100 rbt_11_eye5_TA_tex_txt",
"0035fc20 000100 rbt_11_eye6_TA_tex_txt",
"0035fd20 000100 rbt_11_eye7_TA_tex_txt",
"0035fe20 000100 rbt_11_eye8_TA_tex_txt",
"0035ff20 000100 rbt_11_mouth1_TA_tex_txt",
"00360020 000100 rbt_11_mouth2_TA_tex_txt",
"00360120 000100 rbt_11_mouth3_TA_tex_txt",
"00360220 000100 rbt_11_mouth4_TA_tex_txt",
"00360320 000100 rbt_11_mouth5_TA_tex_txt",
"00360420 000100 rbt_11_mouth6_TA_tex_txt",
"00360520 000400 rbt_11_tmem_txt",
"",
"00360920 000020 rbt_3_pal",
"00360940 000100 rbt_3_eye1_TA_tex_txt",
"00360a40 000100 rbt_3_eye2_TA_tex_txt",
"00360b40 000100 rbt_3_eye3_TA_tex_txt",
"00360c40 000100 rbt_3_eye4_TA_tex_txt",
"00360d40 000100 rbt_3_eye5_TA_tex_txt",
"00360e40 000100 rbt_3_eye6_TA_tex_txt",
"00360f40 000100 rbt_3_eye7_TA_tex_txt",
"00361040 000100 rbt_3_eye8_TA_tex_txt",
"00361140 000100 rbt_3_mouth1_TA_tex_txt",
"00361240 000100 rbt_3_mouth2_TA_tex_txt",
"00361340 000100 rbt_3_mouth3_TA_tex_txt",
"00361440 000100 rbt_3_mouth4_TA_tex_txt",
"00361540 000100 rbt_3_mouth5_TA_tex_txt",
"00361640 000100 rbt_3_mouth6_TA_tex_txt",
"00361740 000400 rbt_3_tmem_txt",
"",
"00361b40 000020 rbt_4_pal",
"00361b60 000100 rbt_4_eye1_TA_tex_txt",
"00361c60 000100 rbt_4_eye2_TA_tex_txt",
"00361d60 000100 rbt_4_eye3_TA_tex_txt",
"00361e60 000100 rbt_4_eye4_TA_tex_txt",
"00361f60 000100 rbt_4_eye5_TA_tex_txt",
"00362060 000100 rbt_4_eye6_TA_tex_txt",
"00362160 000100 rbt_4_eye7_TA_tex_txt",
"00362260 000100 rbt_4_eye8_TA_tex_txt",
"00362360 000100 rbt_4_mouth1_TA_tex_txt",
"00362460 000100 rbt_4_mouth2_TA_tex_txt",
"00362560 000100 rbt_4_mouth3_TA_tex_txt",
"00362660 000100 rbt_4_mouth4_TA_tex_txt",
"00362760 000100 rbt_4_mouth5_TA_tex_txt",
"00362860 000100 rbt_4_mouth6_TA_tex_txt",
"00362960 000400 rbt_4_tmem_txt",
"",
"00362d60 000020 rbt_5_pal",
"00362d80 000100 rbt_5_eye1_TA_tex_txt",
"00362e80 000100 rbt_5_eye2_TA_tex_txt",
"00362f80 000100 rbt_5_eye3_TA_tex_txt",
"00363080 000100 rbt_5_eye4_TA_tex_txt",
"00363180 000100 rbt_5_eye5_TA_tex_txt",
"00363280 000100 rbt_5_eye6_TA_tex_txt",
"00363380 000100 rbt_5_eye7_TA_tex_txt",
"00363480 000100 rbt_5_eye8_TA_tex_txt",
"00363580 000100 rbt_5_mouth1_TA_tex_txt",
"00363680 000100 rbt_5_mouth2_TA_tex_txt",
"00363780 000100 rbt_5_mouth3_TA_tex_txt",
"00363880 000100 rbt_5_mouth4_TA_tex_txt",
"00363980 000100 rbt_5_mouth5_TA_tex_txt",
"00363a80 000100 rbt_5_mouth6_TA_tex_txt",
"00363b80 000400 rbt_5_tmem_txt",
"",
"00363f80 000020 rbt_6_pal",
"00363fa0 000100 rbt_6_eye1_TA_tex_txt",
"003640a0 000100 rbt_6_eye2_TA_tex_txt",
"003641a0 000100 rbt_6_eye3_TA_tex_txt",
"003642a0 000100 rbt_6_eye4_TA_tex_txt",
"003643a0 000100 rbt_6_eye5_TA_tex_txt",
"003644a0 000100 rbt_6_eye6_TA_tex_txt",
"003645a0 000100 rbt_6_eye7_TA_tex_txt",
"003646a0 000100 rbt_6_eye8_TA_tex_txt",
"003647a0 000100 rbt_6_mouth1_TA_tex_txt",
"003648a0 000100 rbt_6_mouth2_TA_tex_txt",
"003649a0 000100 rbt_6_mouth3_TA_tex_txt",
"00364aa0 000100 rbt_6_mouth4_TA_tex_txt",
"00364ba0 000100 rbt_6_mouth5_TA_tex_txt",
"00364ca0 000100 rbt_6_mouth6_TA_tex_txt",
"00364da0 000400 rbt_6_tmem_txt",
"",
"003651a0 000020 rbt_7_pal",
"003651c0 000100 rbt_7_eye1_TA_tex_txt",
"003652c0 000100 rbt_7_eye2_TA_tex_txt",
"003653c0 000100 rbt_7_eye3_TA_tex_txt",
"003654c0 000100 rbt_7_eye4_TA_tex_txt",
"003655c0 000100 rbt_7_eye5_TA_tex_txt",
"003656c0 000100 rbt_7_eye6_TA_tex_txt",
"003657c0 000100 rbt_7_eye7_TA_tex_txt",
"003658c0 000100 rbt_7_eye8_TA_tex_txt",
"003659c0 000100 rbt_7_mouth1_TA_tex_txt",
"00365ac0 000100 rbt_7_mouth2_TA_tex_txt",
"00365bc0 000100 rbt_7_mouth3_TA_tex_txt",
"00365cc0 000100 rbt_7_mouth4_TA_tex_txt",
"00365dc0 000100 rbt_7_mouth5_TA_tex_txt",
"00365ec0 000100 rbt_7_mouth6_TA_tex_txt",
"00365fc0 000400 rbt_7_tmem_txt",
"",
"003663c0 000020 rbt_8_pal",
"003663e0 000100 rbt_8_eye1_TA_tex_txt",
"003664e0 000100 rbt_8_eye2_TA_tex_txt",
"003665e0 000100 rbt_8_eye3_TA_tex_txt",
"003666e0 000100 rbt_8_eye4_TA_tex_txt",
"003667e0 000100 rbt_8_eye5_TA_tex_txt",
"003668e0 000100 rbt_8_eye6_TA_tex_txt",
"003669e0 000100 rbt_8_eye7_TA_tex_txt",
"00366ae0 000100 rbt_8_eye8_TA_tex_txt",
"00366be0 000100 rbt_8_mouth1_TA_tex_txt",
"00366ce0 000100 rbt_8_mouth2_TA_tex_txt",
"00366de0 000100 rbt_8_mouth3_TA_tex_txt",
"00366ee0 000100 rbt_8_mouth4_TA_tex_txt",
"00366fe0 000100 rbt_8_mouth5_TA_tex_txt",
"003670e0 000100 rbt_8_mouth6_TA_tex_txt",
"003671e0 000400 rbt_8_tmem_txt",
"",
"003675e0 000020 rbt_9_pal",
"00367600 000100 rbt_9_eye1_TA_tex_txt",
"00367700 000100 rbt_9_eye2_TA_tex_txt",
"00367800 000100 rbt_9_eye3_TA_tex_txt",
"00367900 000100 rbt_9_eye4_TA_tex_txt",
"00367a00 000100 rbt_9_eye5_TA_tex_txt",
"00367b00 000100 rbt_9_eye6_TA_tex_txt",
"00367c00 000100 rbt_9_eye7_TA_tex_txt",
"00367d00 000100 rbt_9_eye8_TA_tex_txt",
"00367e00 000100 rbt_9_mouth1_TA_tex_txt",
"00367f00 000100 rbt_9_mouth2_TA_tex_txt",
"00368000 000100 rbt_9_mouth3_TA_tex_txt",
"00368100 000100 rbt_9_mouth4_TA_tex_txt",
"00368200 000100 rbt_9_mouth5_TA_tex_txt",
"00368300 000100 rbt_9_mouth6_TA_tex_txt",
"00368400 000400 rbt_9_tmem_txt",
"",
"00368800 000020 rbt_10_pal",
"00368820 000100 rbt_10_eye1_TA_tex_txt",
"00368920 000100 rbt_10_eye2_TA_tex_txt",
"00368a20 000100 rbt_10_eye3_TA_tex_txt",
"00368b20 000100 rbt_10_eye4_TA_tex_txt",
"00368c20 000100 rbt_10_eye5_TA_tex_txt",
"00368d20 000100 rbt_10_eye6_TA_tex_txt",
"00368e20 000100 rbt_10_eye7_TA_tex_txt",
"00368f20 000100 rbt_10_eye8_TA_tex_txt",
"00369020 000100 rbt_10_mouth1_TA_tex_txt",
"00369120 000100 rbt_10_mouth2_TA_tex_txt",
"00369220 000100 rbt_10_mouth3_TA_tex_txt",
"00369320 000100 rbt_10_mouth4_TA_tex_txt",
"00369420 000100 rbt_10_mouth5_TA_tex_txt",
"00369520 000100 rbt_10_mouth6_TA_tex_txt",
"00369620 000400 rbt_10_tmem_txt",
"",
"00369a20 0013b0 mob_1_v",
"0036add0 0001b8 head_mob_model",
"0036af88 0000d0 mouth_mob_model",
"0036b058 0000b8 hand_mob_model",
"0036b110 000088 Rarm2_mob_model",
"0036b198 000078 Rarm1_mob_model",
"0036b210 000088 Larm2_mob_model",
"0036b298 000078 Larm1_mob_model",
"0036b310 0000d0 chest_mob_model",
"0036b3e0 000080 base_mob_model",
"0036b460 000138 cKF_je_r_mob_1_tbl",
"0036b598 000008 cKF_bs_r_mob_1",
"",
"0036b5a0 000020 mob_1_pal",
"0036b5c0 000100 mob_1_eye1_TA_tex_txt",
"0036b6c0 000100 mob_1_eye2_TA_tex_txt",
"0036b7c0 000100 mob_1_eye3_TA_tex_txt",
"0036b8c0 000100 mob_1_eye4_TA_tex_txt",
"0036b9c0 000100 mob_1_eye5_TA_tex_txt",
"0036bac0 000100 mob_1_eye6_TA_tex_txt",
"0036bbc0 000100 mob_1_eye7_TA_tex_txt",
"0036bcc0 000100 mob_1_eye8_TA_tex_txt",
"0036bdc0 000100 mob_1_mouth1_TA_tex_txt",
"0036bec0 000100 mob_1_mouth2_TA_tex_txt",
"0036bfc0 000100 mob_1_mouth3_TA_tex_txt",
"0036c0c0 000100 mob_1_mouth4_TA_tex_txt",
"0036c1c0 000100 mob_1_mouth5_TA_tex_txt",
"0036c2c0 000100 mob_1_mouth6_TA_tex_txt",
"0036c3c0 000680 mob_1_tmem_txt",
"",
"0036ce40 001c00 rhn_1_v",
"0036ea40 000300 head_rhn_model",
"0036ed40 0000d0 mouth_rhn_model",
"0036ee10 000090 Rarm2_rhn_model",
"0036eea0 000080 Rarm1_rhn_model",
"0036ef20 000090 Larm2_rhn_model",
"0036efb0 000080 Larm1_rhn_model",
"0036f030 000098 chest_rhn_model",
"0036f0c8 000058 tail1_rhn_model",
"0036f120 000090 tail2_rhn_model",
"0036f1b0 000098 Rfoot2_rhn_model",
"0036f248 0000b0 Rfoot1_rhn_model",
"0036f2f8 000098 Lfoot2_rhn_model",
"0036f390 0000b0 Lfoot1_rhn_model",
"0036f440 000070 base_rhn_model",
"0036f4b0 000138 cKF_je_r_rhn_1_tbl",
"0036f5e8 000008 cKF_bs_r_rhn_1",
"",
"0036f600 000020 rhn_1_pal",
"0036f620 000100 rhn_1_eye1_TA_tex_txt",
"0036f720 000100 rhn_1_eye2_TA_tex_txt",
"0036f820 000100 rhn_1_eye3_TA_tex_txt",
"0036f920 000100 rhn_1_eye4_TA_tex_txt",
"0036fa20 000100 rhn_1_eye5_TA_tex_txt",
"0036fb20 000100 rhn_1_eye6_TA_tex_txt",
"0036fc20 000100 rhn_1_eye7_TA_tex_txt",
"0036fd20 000100 rhn_1_eye8_TA_tex_txt",
"0036fe20 000100 rhn_1_mouth1_TA_tex_txt",
"0036ff20 000100 rhn_1_mouth2_TA_tex_txt",
"00370020 000100 rhn_1_mouth3_TA_tex_txt",
"00370120 000100 rhn_1_mouth4_TA_tex_txt",
"00370220 000100 rhn_1_mouth5_TA_tex_txt",
"00370320 000100 rhn_1_mouth6_TA_tex_txt",
"00370420 000400 rhn_1_tmem_txt",
"",
"00370820 000020 rhn_2_pal",
"00370840 000100 rhn_2_eye1_TA_tex_txt",
"00370940 000100 rhn_2_eye2_TA_tex_txt",
"00370a40 000100 rhn_2_eye3_TA_tex_txt",
"00370b40 000100 rhn_2_eye4_TA_tex_txt",
"00370c40 000100 rhn_2_eye5_TA_tex_txt",
"00370d40 000100 rhn_2_eye6_TA_tex_txt",
"00370e40 000100 rhn_2_eye7_TA_tex_txt",
"00370f40 000100 rhn_2_eye8_TA_tex_txt",
"00371040 000100 rhn_2_mouth1_TA_tex_txt",
"00371140 000100 rhn_2_mouth2_TA_tex_txt",
"00371240 000100 rhn_2_mouth3_TA_tex_txt",
"00371340 000100 rhn_2_mouth4_TA_tex_txt",
"00371440 000100 rhn_2_mouth5_TA_tex_txt",
"00371540 000100 rhn_2_mouth6_TA_tex_txt",
"00371640 000400 rhn_2_tmem_txt",
"",
"00371a40 000020 rhn_3_pal",
"00371a60 000100 rhn_3_eye1_TA_tex_txt",
"00371b60 000100 rhn_3_eye2_TA_tex_txt",
"00371c60 000100 rhn_3_eye3_TA_tex_txt",
"00371d60 000100 rhn_3_eye4_TA_tex_txt",
"00371e60 000100 rhn_3_eye5_TA_tex_txt",
"00371f60 000100 rhn_3_eye6_TA_tex_txt",
"00372060 000100 rhn_3_eye7_TA_tex_txt",
"00372160 000100 rhn_3_eye8_TA_tex_txt",
"00372260 000100 rhn_3_mouth1_TA_tex_txt",
"00372360 000100 rhn_3_mouth2_TA_tex_txt",
"00372460 000100 rhn_3_mouth3_TA_tex_txt",
"00372560 000100 rhn_3_mouth4_TA_tex_txt",
"00372660 000100 rhn_3_mouth5_TA_tex_txt",
"00372760 000100 rhn_3_mouth6_TA_tex_txt",
"00372860 000400 rhn_3_tmem_txt",
"",
"00372c60 000020 rhn_4_pal",
"00372c80 000100 rhn_4_eye1_TA_tex_txt",
"00372d80 000100 rhn_4_eye2_TA_tex_txt",
"00372e80 000100 rhn_4_eye3_TA_tex_txt",
"00372f80 000100 rhn_4_eye4_TA_tex_txt",
"00373080 000100 rhn_4_eye5_TA_tex_txt",
"00373180 000100 rhn_4_eye6_TA_tex_txt",
"00373280 000100 rhn_4_eye7_TA_tex_txt",
"00373380 000100 rhn_4_eye8_TA_tex_txt",
"00373480 000100 rhn_4_mouth1_TA_tex_txt",
"00373580 000100 rhn_4_mouth2_TA_tex_txt",
"00373680 000100 rhn_4_mouth3_TA_tex_txt",
"00373780 000100 rhn_4_mouth4_TA_tex_txt",
"00373880 000100 rhn_4_mouth5_TA_tex_txt",
"00373980 000100 rhn_4_mouth6_TA_tex_txt",
"00373a80 000400 rhn_4_tmem_txt",
"",
"0037bc48 0013c0 snt_1_v",
"0037d008 000250 head_snt_model",
"0037d258 000088 Larm2_snt_model",
"0037d2e0 000078 Larm1_snt_model",
"0037d358 000178 chest_snt_model",
"0037d4d0 000080 Rfoot2_snt_model",
"0037d550 000058 Rfoot1_snt_model",
"0037d5a8 000080 Lfoot2_snt_model",
"0037d628 000058 Lfoot1_snt_model",
"0037d680 000070 base_snt_model",
"0037d6f0 000138 cKF_je_r_snt_1_tbl",
"0037d828 000008 cKF_bs_r_snt_1",
"",
"0037d840 000020 snt_1_pal",
"0037d860 000100 snt_1_eye1_TA_tex_txt",
"0037d960 000100 snt_1_eye2_TA_tex_txt",
"0037da60 000100 snt_1_eye3_TA_tex_txt",
"0037db60 000100 snt_1_eye4_TA_tex_txt",
"0037dc60 000100 snt_1_eye5_TA_tex_txt",
"0037dd60 000100 snt_1_eye6_TA_tex_txt",
"0037de60 000100 snt_1_eye7_TA_tex_txt",
"0037df60 000100 snt_1_eye8_TA_tex_txt",
"0037e060 000100 snt_1_mouth1_TA_tex_txt",
"0037e160 000100 snt_1_mouth2_TA_tex_txt",
"0037e260 000100 snt_1_mouth3_TA_tex_txt",
"0037e360 000100 snt_1_mouth4_TA_tex_txt",
"0037e460 000100 snt_1_mouth5_TA_tex_txt",
"0037e560 000100 snt_1_mouth6_TA_tex_txt",
"0037e660 000680 snt_1_tmem_txt",
"",
"0037ece0 001700 wip_1_v",
"003803e0 000208 head_wip_model",
"003805e8 000088 Rarm2_wip_model",
"00380670 000078 Rarm1_wip_model",
"003806e8 000088 Larm2_wip_model",
"00380770 000078 Larm1_wip_model",
"003807e8 000120 chest_wip_model",
"00380908 000080 Rfoot2_wip_model",
"00380988 000058 Rfoot1_wip_model",
"003809e0 000080 Lfoot2_wip_model",
"00380a60 000058 Lfoot1_wip_model",
"00380ab8 000078 base_wip_model",
"00380b30 000138 cKF_je_r_wip_1_tbl",
"00380c68 000008 cKF_bs_r_wip_1",
"",
"00380c80 000020 wip_1_pal",
"00380ca0 000100 wip_1_eye1_TA_tex_txt",
"00380da0 000100 wip_1_eye2_TA_tex_txt",
"00380ea0 000100 wip_1_eye3_TA_tex_txt",
"00380fa0 000100 wip_1_eye4_TA_tex_txt",
"003810a0 000100 wip_1_eye5_TA_tex_txt",
"003811a0 000100 wip_1_eye6_TA_tex_txt",
"003812a0 000100 wip_1_eye7_TA_tex_txt",
"003813a0 000100 wip_1_eye8_TA_tex_txt",
"003814a0 000100 wip_1_mouth1_TA_tex_txt",
"003815a0 000100 wip_1_mouth2_TA_tex_txt",
"003816a0 000100 wip_1_mouth3_TA_tex_txt",
"003817a0 000100 wip_1_mouth4_TA_tex_txt",
"003818a0 000100 wip_1_mouth5_TA_tex_txt",
"003819a0 000100 wip_1_mouth6_TA_tex_txt",
"00381aa0 0005c0 wip_1_tmem_txt",
"",
"00382060 001460 shp_1_v",
"003834c0 0001b0 head_shp_model",
"00383670 000088 Rarm2_shp_model",
"003836f8 000060 Rarm1_shp_model",
"00383758 000088 Larm2_shp_model",
"003837e0 000060 Larm1_shp_model",
"00383840 0000d8 chest_shp_model",
"00383918 000088 Rfoot2_shp_model",
"003839a0 000060 Rfoot1_shp_model",
"00383a00 000088 Lfoot2_shp_model",
"00383a88 000060 Lfoot1_shp_model",
"00383ae8 000078 base_shp_model",
"00383b60 000138 cKF_je_r_shp_1_tbl",
"00383c98 000008 cKF_bs_r_shp_1",
"",
"00383ca0 000020 shp_1_pal",
"00383cc0 000100 shp_1_eye1_TA_tex_txt",
"00383dc0 000100 shp_1_eye2_TA_tex_txt",
"00383ec0 000100 shp_1_eye3_TA_tex_txt",
"00383fc0 000100 shp_1_eye4_TA_tex_txt",
"003840c0 000100 shp_1_eye5_TA_tex_txt",
"003841c0 000100 shp_1_eye6_TA_tex_txt",
"003842c0 000100 shp_1_eye7_TA_tex_txt",
"003843c0 000100 shp_1_eye8_TA_tex_txt",
"003844c0 000100 shp_1_mouth1_TA_tex_txt",
"003845c0 000100 shp_1_mouth2_TA_tex_txt",
"003846c0 000100 shp_1_mouth3_TA_tex_txt",
"003847c0 000100 shp_1_mouth4_TA_tex_txt",
"003848c0 000100 shp_1_mouth5_TA_tex_txt",
"003849c0 000100 shp_1_mouth6_TA_tex_txt",
"00384ac0 000400 shp_1_tmem_txt",
"",
"00384ec0 000020 shp_2_pal",
"00384ee0 000100 shp_2_eye1_TA_tex_txt",
"00384fe0 000100 shp_2_eye2_TA_tex_txt",
"003850e0 000100 shp_2_eye3_TA_tex_txt",
"003851e0 000100 shp_2_eye4_TA_tex_txt",
"003852e0 000100 shp_2_eye5_TA_tex_txt",
"003853e0 000100 shp_2_eye6_TA_tex_txt",
"003854e0 000100 shp_2_eye7_TA_tex_txt",
"003855e0 000100 shp_2_eye8_TA_tex_txt",
"003856e0 000100 shp_2_mouth1_TA_tex_txt",
"003857e0 000100 shp_2_mouth2_TA_tex_txt",
"003858e0 000100 shp_2_mouth3_TA_tex_txt",
"003859e0 000100 shp_2_mouth4_TA_tex_txt",
"00385ae0 000100 shp_2_mouth5_TA_tex_txt",
"00385be0 000100 shp_2_mouth6_TA_tex_txt",
"00385ce0 000400 shp_2_tmem_txt",
"",
"003860e0 000020 shp_3_pal",
"00386100 000100 shp_3_eye1_TA_tex_txt",
"00386200 000100 shp_3_eye2_TA_tex_txt",
"00386300 000100 shp_3_eye3_TA_tex_txt",
"00386400 000100 shp_3_eye4_TA_tex_txt",
"00386500 000100 shp_3_eye5_TA_tex_txt",
"00386600 000100 shp_3_eye6_TA_tex_txt",
"00386700 000100 shp_3_eye7_TA_tex_txt",
"00386800 000100 shp_3_eye8_TA_tex_txt",
"00386900 000100 shp_3_mouth1_TA_tex_txt",
"00386a00 000100 shp_3_mouth2_TA_tex_txt",
"00386b00 000100 shp_3_mouth3_TA_tex_txt",
"00386c00 000100 shp_3_mouth4_TA_tex_txt",
"00386d00 000100 shp_3_mouth5_TA_tex_txt",
"00386e00 000100 shp_3_mouth6_TA_tex_txt",
"00386f00 000400 shp_3_tmem_txt",
"",
"00387300 000020 shp_4_pal",
"00387320 000100 shp_4_eye1_TA_tex_txt",
"00387420 000100 shp_4_eye2_TA_tex_txt",
"00387520 000100 shp_4_eye3_TA_tex_txt",
"00387620 000100 shp_4_eye4_TA_tex_txt",
"00387720 000100 shp_4_eye5_TA_tex_txt",
"00387820 000100 shp_4_eye6_TA_tex_txt",
"00387920 000100 shp_4_eye7_TA_tex_txt",
"00387a20 000100 shp_4_eye8_TA_tex_txt",
"00387b20 000100 shp_4_mouth1_TA_tex_txt",
"00387c20 000100 shp_4_mouth2_TA_tex_txt",
"00387d20 000100 shp_4_mouth3_TA_tex_txt",
"00387e20 000100 shp_4_mouth4_TA_tex_txt",
"00387f20 000100 shp_4_mouth5_TA_tex_txt",
"00388020 000100 shp_4_mouth6_TA_tex_txt",
"00388120 000400 shp_4_tmem_txt",
"",
"00388520 000020 shp_5_pal",
"00388540 000100 shp_5_eye1_TA_tex_txt",
"00388640 000100 shp_5_eye2_TA_tex_txt",
"00388740 000100 shp_5_eye3_TA_tex_txt",
"00388840 000100 shp_5_eye4_TA_tex_txt",
"00388940 000100 shp_5_eye5_TA_tex_txt",
"00388a40 000100 shp_5_eye6_TA_tex_txt",
"00388b40 000100 shp_5_eye7_TA_tex_txt",
"00388c40 000100 shp_5_eye8_TA_tex_txt",
"00388d40 000100 shp_5_mouth1_TA_tex_txt",
"00388e40 000100 shp_5_mouth2_TA_tex_txt",
"00388f40 000100 shp_5_mouth3_TA_tex_txt",
"00389040 000100 shp_5_mouth4_TA_tex_txt",
"00389140 000100 shp_5_mouth5_TA_tex_txt",
"00389240 000100 shp_5_mouth6_TA_tex_txt",
"00389340 000400 shp_5_tmem_txt",
"",
"00389740 000020 shp_6_pal",
"00389760 000100 shp_6_eye1_TA_tex_txt",
"00389860 000100 shp_6_eye2_TA_tex_txt",
"00389960 000100 shp_6_eye3_TA_tex_txt",
"00389a60 000100 shp_6_eye4_TA_tex_txt",
"00389b60 000100 shp_6_eye5_TA_tex_txt",
"00389c60 000100 shp_6_eye6_TA_tex_txt",
"00389d60 000100 shp_6_eye7_TA_tex_txt",
"00389e60 000100 shp_6_eye8_TA_tex_txt",
"00389f60 000100 shp_6_mouth1_TA_tex_txt",
"0038a060 000100 shp_6_mouth2_TA_tex_txt",
"0038a160 000100 shp_6_mouth3_TA_tex_txt",
"0038a260 000100 shp_6_mouth4_TA_tex_txt",
"0038a360 000100 shp_6_mouth5_TA_tex_txt",
"0038a460 000100 shp_6_mouth6_TA_tex_txt",
"0038a560 000400 shp_6_tmem_txt",
"",
"0038a960 001650 rcn_1_v",
"0038bfb0 000188 head_rcn_model",
"0038c138 000078 mouth_rcn_model",
"0038c1b0 000088 Rarm2_rcn_model",
"0038c238 000078 Rarm1_rcn_model",
"0038c2b0 000088 Larm2_rcn_model",
"0038c338 000078 Larm1_rcn_model",
"0038c3b0 000108 chest_rcn_model",
"0038c4b8 000078 tail1_rcn_model",
"0038c530 0000a0 tail2_rcn_model",
"0038c5d0 000080 Rfoot2_rcn_model",
"0038c650 000058 Rfoot1_rcn_model",
"0038c6a8 000080 Lfoot2_rcn_model",
"0038c728 000058 Lfoot1_rcn_model",
"0038c780 0000c0 base_rcn_model",
"0038c840 000138 cKF_je_r_rcn_1_tbl",
"0038c978 000008 cKF_bs_r_rcn_1",
"",
"0038c980 000020 rcn_1_pal",
"0038c9a0 000100 rcn_1_eye1_TA_tex_txt",
"0038caa0 000100 rcn_1_eye2_TA_tex_txt",
"0038cba0 000100 rcn_1_eye3_TA_tex_txt",
"0038cca0 000100 rcn_1_eye4_TA_tex_txt",
"0038cda0 000100 rcn_1_eye5_TA_tex_txt",
"0038cea0 000100 rcn_1_eye6_TA_tex_txt",
"0038cfa0 000100 rcn_1_eye7_TA_tex_txt",
"0038d0a0 000100 rcn_1_eye8_TA_tex_txt",
"0038d1a0 000640 rcn_1_tmem_txt",
"",
"003b2cb0 0018c0 kab_1_v",
"003b4570 0001e0 head_kab_model",
"003b4750 000088 mouth_kab_model",
"003b47d8 000088 Rarm2_kab_model",
"003b4860 000078 Rarm1_kab_model",
"003b48d8 000088 Larm2_kab_model",
"003b4960 000078 Larm1_kab_model",
"003b49d8 0000c8 chest_kab_model",
"003b4aa0 0000a8 Rfoot2_kab_model",
"003b4b48 000080 Rfoot1_kab_model",
"003b4bc8 000098 Lfoot2_kab_model",
"003b4c60 000080 Lfoot1_kab_model",
"003b4ce0 000078 base_kab_model",
"003b4d58 000138 cKF_je_r_kab_1_tbl",
"003b4e90 000008 cKF_bs_r_kab_1",
"",
"003b4ea0 000020 kab_1_pal",
"003b4ec0 000100 kab_1_eye1_TA_tex_txt",
"003b4fc0 000100 kab_1_eye2_TA_tex_txt",
"003b50c0 000100 kab_1_eye3_TA_tex_txt",
"003b51c0 000100 kab_1_eye4_TA_tex_txt",
"003b52c0 000100 kab_1_eye5_TA_tex_txt",
"003b53c0 000100 kab_1_eye6_TA_tex_txt",
"003b54c0 000100 kab_1_eye7_TA_tex_txt",
"003b55c0 000100 kab_1_eye8_TA_tex_txt",
"003b56c0 000400 kab_1_tmem_txt",
"",
"004ebac0 001450 ttl_1_v",
"004ecf10 000228 head_ttl_model",
"004ed138 0000a8 mouth_ttl_model",
"004ed1e0 000060 hand_ttl_model",
"004ed240 000088 Rarm2_ttl_model",
"004ed2c8 000058 Rarm1_ttl_model",
"004ed320 000088 Larm2_ttl_model",
"004ed3a8 000058 Larm1_ttl_model",
"004ed400 000118 chest_ttl_model",
"004ed518 000058 tail1_ttl_model",
"004ed570 000088 Rfoot2_ttl_model",
"004ed5f8 000058 Rfoot1_ttl_model",
"004ed650 000088 Lfoot2_ttl_model",
"004ed6d8 000058 Lfoot1_ttl_model",
"004ed730 000068 base_ttl_model",
"004ed798 000138 cKF_je_r_ttl_1_tbl",
"004ed8d0 000008 cKF_bs_r_ttl_1",
"",
"004ed8e0 000020 ttl_1_pal",
"004ed900 000100 ttl_1_eye1_TA_tex_txt",
"004eda00 000100 ttl_1_eye2_TA_tex_txt",
"004edb00 000100 ttl_1_eye3_TA_tex_txt",
"004edc00 000100 ttl_1_eye4_TA_tex_txt",
"004edd00 000100 ttl_1_eye5_TA_tex_txt",
"004ede00 000100 ttl_1_eye6_TA_tex_txt",
"004edf00 000100 ttl_1_eye7_TA_tex_txt",
"004ee000 000100 ttl_1_eye8_TA_tex_txt",
"004ee100 000740 ttl_1_tmem_txt",
"",
"004ee840 0016f0 squ_1_v",
"004eff30 000198 head_squ_model",
"004f00c8 000088 Rarm2_squ_model",
"004f0150 000078 Rarm1_squ_model",
"004f01c8 000088 Larm2_squ_model",
"004f0250 000078 Larm1_squ_model",
"004f02c8 0000a8 chest_squ_model",
"004f0370 000070 tail1_squ_model",
"004f03e0 0000d0 tail2_squ_model",
"004f04b0 000080 Rfoot2_squ_model",
"004f0530 0000c0 Rfoot1_squ_model",
"004f05f0 000080 Lfoot2_squ_model",
"004f0670 0000c0 Lfoot1_squ_model",
"004f0730 000070 base_squ_model",
"004f07a0 000138 cKF_je_r_squ_1_tbl",
"004f08d8 000008 cKF_bs_r_squ_1",
"",
"004f08e0 000020 squ_1_pal",
"004f0900 000100 squ_1_eye1_TA_tex_txt",
"004f0a00 000100 squ_1_eye2_TA_tex_txt",
"004f0b00 000100 squ_1_eye3_TA_tex_txt",
"004f0c00 000100 squ_1_eye4_TA_tex_txt",
"004f0d00 000100 squ_1_eye5_TA_tex_txt",
"004f0e00 000100 squ_1_eye6_TA_tex_txt",
"004f0f00 000100 squ_1_eye7_TA_tex_txt",
"004f1000 000100 squ_1_eye8_TA_tex_txt",
"004f1100 000100 squ_1_mouth1_TA_tex_txt",
"004f1200 000100 squ_1_mouth2_TA_tex_txt",
"004f1300 000100 squ_1_mouth3_TA_tex_txt",
"004f1400 000100 squ_1_mouth4_TA_tex_txt",
"004f1500 000100 squ_1_mouth5_TA_tex_txt",
"004f1600 000100 squ_1_mouth6_TA_tex_txt",
"004f1700 000400 squ_1_tmem_txt",
"",
"004f1b00 000020 squ_2_pal",
"004f1b20 000100 squ_2_eye1_TA_tex_txt",
"004f1c20 000100 squ_2_eye2_TA_tex_txt",
"004f1d20 000100 squ_2_eye3_TA_tex_txt",
"004f1e20 000100 squ_2_eye4_TA_tex_txt",
"004f1f20 000100 squ_2_eye5_TA_tex_txt",
"004f2020 000100 squ_2_eye6_TA_tex_txt",
"004f2120 000100 squ_2_eye7_TA_tex_txt",
"004f2220 000100 squ_2_eye8_TA_tex_txt",
"004f2320 000100 squ_2_mouth1_TA_tex_txt",
"004f2420 000100 squ_2_mouth2_TA_tex_txt",
"004f2520 000100 squ_2_mouth3_TA_tex_txt",
"004f2620 000100 squ_2_mouth4_TA_tex_txt",
"004f2720 000100 squ_2_mouth5_TA_tex_txt",
"004f2820 000100 squ_2_mouth6_TA_tex_txt",
"004f2920 000400 squ_2_tmem_txt",
"",
"004f2d20 000020 squ_11_pal",
"004f2d40 000100 squ_11_eye1_TA_tex_txt",
"004f2e40 000100 squ_11_eye2_TA_tex_txt",
"004f2f40 000100 squ_11_eye3_TA_tex_txt",
"004f3040 000100 squ_11_eye4_TA_tex_txt",
"004f3140 000100 squ_11_eye5_TA_tex_txt",
"004f3240 000100 squ_11_eye6_TA_tex_txt",
"004f3340 000100 squ_11_eye7_TA_tex_txt",
"004f3440 000100 squ_11_eye8_TA_tex_txt",
"004f3540 000100 squ_11_mouth1_TA_tex_txt",
"004f3640 000100 squ_11_mouth2_TA_tex_txt",
"004f3740 000100 squ_11_mouth3_TA_tex_txt",
"004f3840 000100 squ_11_mouth4_TA_tex_txt",
"004f3940 000100 squ_11_mouth5_TA_tex_txt",
"004f3a40 000100 squ_11_mouth6_TA_tex_txt",
"004f3b40 000400 squ_11_tmem_txt",
"",
"004f3f40 000020 squ_3_pal",
"004f3f60 000100 squ_3_eye1_TA_tex_txt",
"004f4060 000100 squ_3_eye2_TA_tex_txt",
"004f4160 000100 squ_3_eye3_TA_tex_txt",
"004f4260 000100 squ_3_eye4_TA_tex_txt",
"004f4360 000100 squ_3_eye5_TA_tex_txt",
"004f4460 000100 squ_3_eye6_TA_tex_txt",
"004f4560 000100 squ_3_eye7_TA_tex_txt",
"004f4660 000100 squ_3_eye8_TA_tex_txt",
"004f4760 000100 squ_3_mouth1_TA_tex_txt",
"004f4860 000100 squ_3_mouth2_TA_tex_txt",
"004f4960 000100 squ_3_mouth3_TA_tex_txt",
"004f4a60 000100 squ_3_mouth4_TA_tex_txt",
"004f4b60 000100 squ_3_mouth5_TA_tex_txt",
"004f4c60 000100 squ_3_mouth6_TA_tex_txt",
"004f4d60 000400 squ_3_tmem_txt",
"",
"004f5160 000020 squ_4_pal",
"004f5180 000100 squ_4_eye1_TA_tex_txt",
"004f5280 000100 squ_4_eye2_TA_tex_txt",
"004f5380 000100 squ_4_eye3_TA_tex_txt",
"004f5480 000100 squ_4_eye4_TA_tex_txt",
"004f5580 000100 squ_4_eye5_TA_tex_txt",
"004f5680 000100 squ_4_eye6_TA_tex_txt",
"004f5780 000100 squ_4_eye7_TA_tex_txt",
"004f5880 000100 squ_4_eye8_TA_tex_txt",
"004f5980 000100 squ_4_mouth1_TA_tex_txt",
"004f5a80 000100 squ_4_mouth2_TA_tex_txt",
"004f5b80 000100 squ_4_mouth3_TA_tex_txt",
"004f5c80 000100 squ_4_mouth4_TA_tex_txt",
"004f5d80 000100 squ_4_mouth5_TA_tex_txt",
"004f5e80 000100 squ_4_mouth6_TA_tex_txt",
"004f5f80 000400 squ_4_tmem_txt",
"",
"004f6380 000020 squ_5_pal",
"004f63a0 000100 squ_5_eye1_TA_tex_txt",
"004f64a0 000100 squ_5_eye2_TA_tex_txt",
"004f65a0 000100 squ_5_eye3_TA_tex_txt",
"004f66a0 000100 squ_5_eye4_TA_tex_txt",
"004f67a0 000100 squ_5_eye5_TA_tex_txt",
"004f68a0 000100 squ_5_eye6_TA_tex_txt",
"004f69a0 000100 squ_5_eye7_TA_tex_txt",
"004f6aa0 000100 squ_5_eye8_TA_tex_txt",
"004f6ba0 000100 squ_5_mouth1_TA_tex_txt",
"004f6ca0 000100 squ_5_mouth2_TA_tex_txt",
"004f6da0 000100 squ_5_mouth3_TA_tex_txt",
"004f6ea0 000100 squ_5_mouth4_TA_tex_txt",
"004f6fa0 000100 squ_5_mouth5_TA_tex_txt",
"004f70a0 000100 squ_5_mouth6_TA_tex_txt",
"004f71a0 000400 squ_5_tmem_txt",
"",
"004f75a0 000020 squ_6_pal",
"004f75c0 000100 squ_6_eye1_TA_tex_txt",
"004f76c0 000100 squ_6_eye2_TA_tex_txt",
"004f77c0 000100 squ_6_eye3_TA_tex_txt",
"004f78c0 000100 squ_6_eye4_TA_tex_txt",
"004f79c0 000100 squ_6_eye5_TA_tex_txt",
"004f7ac0 000100 squ_6_eye6_TA_tex_txt",
"004f7bc0 000100 squ_6_eye7_TA_tex_txt",
"004f7cc0 000100 squ_6_eye8_TA_tex_txt",
"004f7dc0 000100 squ_6_mouth1_TA_tex_txt",
"004f7ec0 000100 squ_6_mouth2_TA_tex_txt",
"004f7fc0 000100 squ_6_mouth3_TA_tex_txt",
"004f80c0 000100 squ_6_mouth4_TA_tex_txt",
"004f81c0 000100 squ_6_mouth5_TA_tex_txt",
"004f82c0 000100 squ_6_mouth6_TA_tex_txt",
"004f83c0 000400 squ_6_tmem_txt",
"",
"004f87c0 000020 squ_7_pal",
"004f87e0 000100 squ_7_eye1_TA_tex_txt",
"004f88e0 000100 squ_7_eye2_TA_tex_txt",
"004f89e0 000100 squ_7_eye3_TA_tex_txt",
"004f8ae0 000100 squ_7_eye4_TA_tex_txt",
"004f8be0 000100 squ_7_eye5_TA_tex_txt",
"004f8ce0 000100 squ_7_eye6_TA_tex_txt",
"004f8de0 000100 squ_7_eye7_TA_tex_txt",
"004f8ee0 000100 squ_7_eye8_TA_tex_txt",
"004f8fe0 000100 squ_7_mouth1_TA_tex_txt",
"004f90e0 000100 squ_7_mouth2_TA_tex_txt",
"004f91e0 000100 squ_7_mouth3_TA_tex_txt",
"004f92e0 000100 squ_7_mouth4_TA_tex_txt",
"004f93e0 000100 squ_7_mouth5_TA_tex_txt",
"004f94e0 000100 squ_7_mouth6_TA_tex_txt",
"004f95e0 000400 squ_7_tmem_txt",
"",
"004f99e0 000020 squ_8_pal",
"004f9a00 000100 squ_8_eye1_TA_tex_txt",
"004f9b00 000100 squ_8_eye2_TA_tex_txt",
"004f9c00 000100 squ_8_eye3_TA_tex_txt",
"004f9d00 000100 squ_8_eye4_TA_tex_txt",
"004f9e00 000100 squ_8_eye5_TA_tex_txt",
"004f9f00 000100 squ_8_eye6_TA_tex_txt",
"004fa000 000100 squ_8_eye7_TA_tex_txt",
"004fa100 000100 squ_8_eye8_TA_tex_txt",
"004fa200 000100 squ_8_mouth1_TA_tex_txt",
"004fa300 000100 squ_8_mouth2_TA_tex_txt",
"004fa400 000100 squ_8_mouth3_TA_tex_txt",
"004fa500 000100 squ_8_mouth4_TA_tex_txt",
"004fa600 000100 squ_8_mouth5_TA_tex_txt",
"004fa700 000100 squ_8_mouth6_TA_tex_txt",
"004fa800 000400 squ_8_tmem_txt",
"",
"004fac00 000020 squ_9_pal",
"004fac20 000100 squ_9_eye1_TA_tex_txt",
"004fad20 000100 squ_9_eye2_TA_tex_txt",
"004fae20 000100 squ_9_eye3_TA_tex_txt",
"004faf20 000100 squ_9_eye4_TA_tex_txt",
"004fb020 000100 squ_9_eye5_TA_tex_txt",
"004fb120 000100 squ_9_eye6_TA_tex_txt",
"004fb220 000100 squ_9_eye7_TA_tex_txt",
"004fb320 000100 squ_9_eye8_TA_tex_txt",
"004fb420 000100 squ_9_mouth1_TA_tex_txt",
"004fb520 000100 squ_9_mouth2_TA_tex_txt",
"004fb620 000100 squ_9_mouth3_TA_tex_txt",
"004fb720 000100 squ_9_mouth4_TA_tex_txt",
"004fb820 000100 squ_9_mouth5_TA_tex_txt",
"004fb920 000100 squ_9_mouth6_TA_tex_txt",
"004fba20 000400 squ_9_tmem_txt",
"",
"004fbe20 000020 squ_10_pal",
"004fbe40 000100 squ_10_eye1_TA_tex_txt",
"004fbf40 000100 squ_10_eye2_TA_tex_txt",
"004fc040 000100 squ_10_eye3_TA_tex_txt",
"004fc140 000100 squ_10_eye4_TA_tex_txt",
"004fc240 000100 squ_10_eye5_TA_tex_txt",
"004fc340 000100 squ_10_eye6_TA_tex_txt",
"004fc440 000100 squ_10_eye7_TA_tex_txt",
"004fc540 000100 squ_10_eye8_TA_tex_txt",
"004fc640 000100 squ_10_mouth1_TA_tex_txt",
"004fc740 000100 squ_10_mouth2_TA_tex_txt",
"004fc840 000100 squ_10_mouth3_TA_tex_txt",
"004fc940 000100 squ_10_mouth4_TA_tex_txt",
"004fca40 000100 squ_10_mouth5_TA_tex_txt",
"004fcb40 000100 squ_10_mouth6_TA_tex_txt",
"004fcc40 000400 squ_10_tmem_txt",
"",
"004fd040 001850 mnk_1_v",
"004fe890 0001a8 head_mnk_model",
"004fea38 000098 Rarm2_mnk_model",
"004fead0 000078 Rarm1_mnk_model",
"004feb48 000098 Larm2_mnk_model",
"004febe0 000078 Larm1_mnk_model",
"004fec58 0000c0 chest_mnk_model",
"004fed18 000078 tail1_mnk_model",
"004fed90 0000c0 tail2_mnk_model",
"004fee50 000090 Rfoot3_mnk_model",
"004feee0 000080 Rfoot2_mnk_model",
"004fef60 000058 Rfoot1_mnk_model",
"004fefb8 000090 Lfoot3_mnk_model",
"004ff048 000080 Lfoot2_mnk_model",
"004ff0c8 000058 Lfoot1_mnk_model",
"004ff120 000098 base_mnk_model",
"004ff1b8 000138 cKF_je_r_mnk_1_tbl",
"004ff2f0 000008 cKF_bs_r_mnk_1",
"",
"004ff300 000020 mnk_1_pal",
"004ff320 000100 mnk_1_eye1_TA_tex_txt",
"004ff420 000100 mnk_1_eye2_TA_tex_txt",
"004ff520 000100 mnk_1_eye3_TA_tex_txt",
"004ff620 000100 mnk_1_eye4_TA_tex_txt",
"004ff720 000100 mnk_1_eye5_TA_tex_txt",
"004ff820 000100 mnk_1_eye6_TA_tex_txt",
"004ff920 000100 mnk_1_eye7_TA_tex_txt",
"004ffa20 000100 mnk_1_eye8_TA_tex_txt",
"004ffb20 000100 mnk_1_mouth1_TA_tex_txt",
"004ffc20 000100 mnk_1_mouth2_TA_tex_txt",
"004ffd20 000100 mnk_1_mouth3_TA_tex_txt",
"004ffe20 000100 mnk_1_mouth4_TA_tex_txt",
"004fff20 000100 mnk_1_mouth5_TA_tex_txt",
"00500020 000100 mnk_1_mouth6_TA_tex_txt",
"00500120 000600 mnk_1_tmem_txt",
"",
"005bc5c0 001700 rcs_1_v",
"005bdcc0 000188 head_rcs_model",
"005bde48 000078 mouth_rcs_model",
"005bdec0 000088 Rarm2_rcs_model",
"005bdf48 000078 Rarm1_rcs_model",
"005bdfc0 000088 Larm2_rcs_model",
"005be048 000078 Larm1_rcs_model",
"005be0c0 000108 chest_rcs_model",
"005be1c8 000078 tail1_rcs_model",
"005be240 0000a0 tail2_rcs_model",
"005be2e0 000080 Rfoot2_rcs_model",
"005be360 000058 Rfoot1_rcs_model",
"005be3b8 000080 Lfoot2_rcs_model",
"005be438 000058 Lfoot1_rcs_model",
"005be490 0000d8 base_rcs_model",
"005be568 000138 cKF_je_r_rcs_1_tbl",
"005be6a0 000008 cKF_bs_r_rcs_1",
"",
"005be6c0 000020 rcs_1_pal",
"005be6e0 000100 rcs_1_eye1_TA_tex_txt",
"005be7e0 000100 rcs_1_eye2_TA_tex_txt",
"005be8e0 000100 rcs_1_eye3_TA_tex_txt",
"005be9e0 000100 rcs_1_eye4_TA_tex_txt",
"005beae0 000100 rcs_1_eye5_TA_tex_txt",
"005bebe0 000100 rcs_1_eye6_TA_tex_txt",
"005bece0 000100 rcs_1_eye7_TA_tex_txt",
"005bede0 000100 rcs_1_eye8_TA_tex_txt",
"005beee0 000580 rcs_1_tmem_txt",
"",
"005df4f8 001ac0 tig_1_v",
"005e0fb8 0001d8 head_tig_model",
"005e1190 000088 mouth_tig_model",
"005e1218 000088 Rarm2_tig_model",
"005e12a0 000078 Rarm1_tig_model",
"005e1318 000088 Larm2_tig_model",
"005e13a0 000078 Larm1_tig_model",
"005e1418 0000a0 chest_tig_model",
"005e14b8 000058 tail1_tig_model",
"005e1510 000090 tail2_tig_model",
"005e15a0 000088 Rfoot2_tig_model",
"005e1628 000080 Rfoot1_tig_model",
"005e16a8 000088 Lfoot2_tig_model",
"005e1730 000080 Lfoot1_tig_model",
"005e17b0 000098 base_tig_model",
"005e1848 000138 cKF_je_r_tig_1_tbl",
"005e1980 000008 cKF_bs_r_tig_1",
"",
"005e19a0 000020 tig_1_pal",
"005e19c0 000100 tig_1_eye1_TA_tex_txt",
"005e1ac0 000100 tig_1_eye2_TA_tex_txt",
"005e1bc0 000100 tig_1_eye3_TA_tex_txt",
"005e1cc0 000100 tig_1_eye4_TA_tex_txt",
"005e1dc0 000100 tig_1_eye5_TA_tex_txt",
"005e1ec0 000100 tig_1_eye6_TA_tex_txt",
"005e1fc0 000100 tig_1_eye7_TA_tex_txt",
"005e20c0 000100 tig_1_eye8_TA_tex_txt",
"005e21c0 000580 tig_1_tmem_txt",
"",
"005e2740 000020 tig_2_pal",
"005e2760 000100 tig_2_eye1_TA_tex_txt",
"005e2860 000100 tig_2_eye2_TA_tex_txt",
"005e2960 000100 tig_2_eye3_TA_tex_txt",
"005e2a60 000100 tig_2_eye4_TA_tex_txt",
"005e2b60 000100 tig_2_eye5_TA_tex_txt",
"005e2c60 000100 tig_2_eye6_TA_tex_txt",
"005e2d60 000100 tig_2_eye7_TA_tex_txt",
"005e2e60 000100 tig_2_eye8_TA_tex_txt",
"005e2f60 000580 tig_2_tmem_txt",
"",
"005e34e0 000020 tig_3_pal",
"005e3500 000100 tig_3_eye1_TA_tex_txt",
"005e3600 000100 tig_3_eye2_TA_tex_txt",
"005e3700 000100 tig_3_eye3_TA_tex_txt",
"005e3800 000100 tig_3_eye4_TA_tex_txt",
"005e3900 000100 tig_3_eye5_TA_tex_txt",
"005e3a00 000100 tig_3_eye6_TA_tex_txt",
"005e3b00 000100 tig_3_eye7_TA_tex_txt",
"005e3c00 000100 tig_3_eye8_TA_tex_txt",
"005e3d00 000580 tig_3_tmem_txt",
"",
"005e4280 000020 tig_4_pal",
"005e42a0 000100 tig_4_eye1_TA_tex_txt",
"005e43a0 000100 tig_4_eye2_TA_tex_txt",
"005e44a0 000100 tig_4_eye3_TA_tex_txt",
"005e45a0 000100 tig_4_eye4_TA_tex_txt",
"005e46a0 000100 tig_4_eye5_TA_tex_txt",
"005e47a0 000100 tig_4_eye6_TA_tex_txt",
"005e48a0 000100 tig_4_eye7_TA_tex_txt",
"005e49a0 000100 tig_4_eye8_TA_tex_txt",
"005e4aa0 000580 tig_4_tmem_txt",
"",
"005f8508 001c50 end_1_v",
"005fa158 000198 head_end_model",
"005fa2f0 000090 Rarm2_end_model",
"005fa380 000078 Rarm1_end_model",
"005fa3f8 000090 Larm2_end_model",
"005fa488 000078 Larm1_end_model",
"005fa500 000088 chest_end_model",
"005fa588 000058 tail1_end_model",
"005fa5e0 000080 Rfoot3_end_model",
"005fa660 000078 Rfoot2_end_model",
"005fa6d8 000090 Rfoot1_end_model",
"005fa768 000098 Lfoot3_end_model",
"005fa800 000080 Lfoot2_end_model",
"005fa880 000080 Lfoot1_end_model",
"005fa900 000168 base_end_model",
"005faa68 000138 cKF_je_r_end_1_tbl",
"005faba0 000008 cKF_bs_r_end_1",
"",
"005fabc0 000020 end_1_pal",
"005fabe0 000100 end_1_eye1_TA_tex_txt",
"005face0 000100 end_1_eye2_TA_tex_txt",
"005fade0 000100 end_1_eye3_TA_tex_txt",
"005faee0 000100 end_1_eye4_TA_tex_txt",
"005fafe0 000100 end_1_eye5_TA_tex_txt",
"005fb0e0 000100 end_1_eye6_TA_tex_txt",
"005fb1e0 000100 end_1_eye7_TA_tex_txt",
"005fb2e0 000100 end_1_eye8_TA_tex_txt",
"005fb3e0 000100 end_1_mouth1_TA_tex_txt",
"005fb4e0 000100 end_1_mouth2_TA_tex_txt",
"005fb5e0 000100 end_1_mouth3_TA_tex_txt",
"005fb6e0 000100 end_1_mouth4_TA_tex_txt",
"005fb7e0 000100 end_1_mouth5_TA_tex_txt",
"005fb8e0 000100 end_1_mouth6_TA_tex_txt",
"005fb9e0 0004c0 end_1_tmem_txt",
"",
"005fe210 001d50 tuk_1_v",
"005fff60 0002e8 head_tuk_model",
"00600248 000078 mouth_tuk_model",
"006002c0 000080 Rarm2_tuk_model",
"00600340 000078 Rarm1_tuk_model",
"006003b8 000080 Larm2_tuk_model",
"00600438 000078 Larm1_tuk_model",
"006004b0 000138 chest_tuk_model",
"006005e8 0000f8 tail_tuk_model",
"006006e0 0000a0 Rfoot3_tuk_model",
"00600780 000080 Rfoot2_tuk_model",
"00600800 000058 Rfoot1_tuk_model",
"00600858 0000a0 Lfoot3_tuk_model",
"006008f8 000080 Lfoot2_tuk_model",
"00600978 000058 Lfoot1_tuk_model",
"006009d0 000070 base_tuk_model",
"00600a40 000138 cKF_je_r_tuk_1_tbl",
"00600b78 000008 cKF_bs_r_tuk_1",
"",
"00600b80 000020 tuk_1_pal",
"00600ba0 000100 tuk_1_eye1_TA_tex_txt",
"00600ca0 000100 tuk_1_eye2_TA_tex_txt",
"00600da0 000100 tuk_1_eye3_TA_tex_txt",
"00600ea0 000100 tuk_1_eye4_TA_tex_txt",
"00600fa0 000100 tuk_1_eye5_TA_tex_txt",
"006010a0 000100 tuk_1_eye6_TA_tex_txt",
"006011a0 000100 tuk_1_eye7_TA_tex_txt",
"006012a0 000100 tuk_1_eye8_TA_tex_txt",
"006013a0 000680 tuk_1_tmem_txt",
"",
"00602088 001760 wol_1_v",
"006037e8 000140 head_wol_model",
"00603928 000088 mouth_wol_model",
"006039b0 000088 Rarm2_wol_model",
"00603a38 000078 Rarm1_wol_model",
"00603ab0 000088 Larm2_wol_model",
"00603b38 000078 Larm1_wol_model",
"00603bb0 0000a0 chest_wol_model",
"00603c50 000060 tail1_wol_model",
"00603cb0 0000b8 tail2_wol_model",
"00603d68 000080 Rfoot2_wol_model",
"00603de8 000080 Rfoot1_wol_model",
"00603e68 000080 Lfoot2_wol_model",
"00603ee8 000080 Lfoot1_wol_model",
"00603f68 0000a8 base_wol_model",
"00604010 000138 cKF_je_r_wol_1_tbl",
"00604148 000008 cKF_bs_r_wol_1",
"",
"00604160 000020 wol_1_pal",
"00604180 000100 wol_1_eye1_TA_tex_txt",
"00604280 000100 wol_1_eye2_TA_tex_txt",
"00604380 000100 wol_1_eye3_TA_tex_txt",
"00604480 000100 wol_1_eye4_TA_tex_txt",
"00604580 000100 wol_1_eye5_TA_tex_txt",
"00604680 000100 wol_1_eye6_TA_tex_txt",
"00604780 000100 wol_1_eye7_TA_tex_txt",
"00604880 000100 wol_1_eye8_TA_tex_txt",
"00604980 000400 wol_1_tmem_txt",
"",
"00604d80 000020 wol_2_pal",
"00604da0 000100 wol_2_eye1_TA_tex_txt",
"00604ea0 000100 wol_2_eye2_TA_tex_txt",
"00604fa0 000100 wol_2_eye3_TA_tex_txt",
"006050a0 000100 wol_2_eye4_TA_tex_txt",
"006051a0 000100 wol_2_eye5_TA_tex_txt",
"006052a0 000100 wol_2_eye6_TA_tex_txt",
"006053a0 000100 wol_2_eye7_TA_tex_txt",
"006054a0 000100 wol_2_eye8_TA_tex_txt",
"006055a0 000400 wol_2_tmem_txt",
"",
"006059a0 000020 wol_3_pal",
"006059c0 000100 wol_3_eye1_TA_tex_txt",
"00605ac0 000100 wol_3_eye2_TA_tex_txt",
"00605bc0 000100 wol_3_eye3_TA_tex_txt",
"00605cc0 000100 wol_3_eye4_TA_tex_txt",
"00605dc0 000100 wol_3_eye5_TA_tex_txt",
"00605ec0 000100 wol_3_eye6_TA_tex_txt",
"00605fc0 000100 wol_3_eye7_TA_tex_txt",
"006060c0 000100 wol_3_eye8_TA_tex_txt",
"006061c0 000400 wol_3_tmem_txt",
"",
"006065c0 000020 wol_4_pal",
"006065e0 000100 wol_4_eye1_TA_tex_txt",
"006066e0 000100 wol_4_eye2_TA_tex_txt",
"006067e0 000100 wol_4_eye3_TA_tex_txt",
"006068e0 000100 wol_4_eye4_TA_tex_txt",
"006069e0 000100 wol_4_eye5_TA_tex_txt",
"00606ae0 000100 wol_4_eye6_TA_tex_txt",
"00606be0 000100 wol_4_eye7_TA_tex_txt",
"00606ce0 000100 wol_4_eye8_TA_tex_txt",
"00606de0 000400 wol_4_tmem_txt",
"",
"006071e0 000020 wol_5_pal",
"00607200 000100 wol_5_eye1_TA_tex_txt",
"00607300 000100 wol_5_eye2_TA_tex_txt",
"00607400 000100 wol_5_eye3_TA_tex_txt",
"00607500 000100 wol_5_eye4_TA_tex_txt",
"00607600 000100 wol_5_eye5_TA_tex_txt",
"00607700 000100 wol_5_eye6_TA_tex_txt",
"00607800 000100 wol_5_eye7_TA_tex_txt",
"00607900 000100 wol_5_eye8_TA_tex_txt",
"00607a00 000400 wol_5_tmem_txt",
"",
"00607e00 000020 wol_6_pal",
"00607e20 000100 wol_6_eye1_TA_tex_txt",
"00607f20 000100 wol_6_eye2_TA_tex_txt",
"00608020 000100 wol_6_eye3_TA_tex_txt",
"00608120 000100 wol_6_eye4_TA_tex_txt",
"00608220 000100 wol_6_eye5_TA_tex_txt",
"00608320 000100 wol_6_eye6_TA_tex_txt",
"00608420 000100 wol_6_eye7_TA_tex_txt",
"00608520 000100 wol_6_eye8_TA_tex_txt",
"00608620 000400 wol_6_tmem_txt",
]
# Generate YAML output
yaml_output = text_to_yaml(test_lines)
print(yaml_output)