diff --git a/autogen/extract_display_lists.py b/autogen/extract_display_lists.py index 5b3335195..f4e82e739 100644 --- a/autogen/extract_display_lists.py +++ b/autogen/extract_display_lists.py @@ -81,14 +81,17 @@ CUSTOM_DEFINED = [ def main(): verbose = len(sys.argv) > 1 and (sys.argv[1] == "-v" or sys.argv[1] == "--verbose") pattern = re.compile(r"[\W]+") - display_lists = [] + display_lists = set() for dir in DIRECTORIES: - for root, _, filenames in os.walk(dir): + for root, dirs, filenames in os.walk(dir): + dirs.sort() + filenames.sort() for filename in filenames: if filename[filename.rfind("."):] in FILE_EXTENSIONS: display_lists_in_file = [] filepath = os.path.join(root, filename) - lines = open(filepath, "r").readlines() + with open(filepath, "r", encoding="utf-8", errors="ignore") as f: + lines = f.readlines() ignore = False for line in lines: if ("#ifdef VERSION_EU" in line or @@ -102,17 +105,17 @@ def main(): index_gfx = identifiers.index("Gfx") name = identifiers[index_gfx + 1] if name not in display_lists: - display_lists.append(name) + display_lists.add(name) if verbose: display_lists_in_file.append(name) if verbose and display_lists_in_file: print("%s\n %s" % (filepath, "\n ".join(display_lists_in_file))) # Add these manually because they are defined by a macro - display_lists += CUSTOM_DEFINED + display_lists.update(CUSTOM_DEFINED) - with open("include/display_lists.inl", "w") as f: - for name in display_lists: + with open("include/display_lists.inl", "w", encoding="utf-8", newline="\n") as f: + for name in sorted(display_lists): f.write("DISPLAY_LIST(%s)\n" % (name)) print("Total display lists: %d" % (len(display_lists))) diff --git a/include/display_lists.inl b/include/display_lists.inl index ed1560128..4737e58e2 100644 --- a/include/display_lists.inl +++ b/include/display_lists.inl @@ -14,10 +14,151 @@ DISPLAY_LIST(amp_seg8_dl_080039D0) DISPLAY_LIST(amp_seg8_dl_08003DA8) DISPLAY_LIST(amp_seg8_dl_08003DD8) DISPLAY_LIST(amp_seg8_dl_08003E00) +DISPLAY_LIST(bbh_seg7_dl_070075A8) +DISPLAY_LIST(bbh_seg7_dl_07007940) +DISPLAY_LIST(bbh_seg7_dl_07007B90) +DISPLAY_LIST(bbh_seg7_dl_07007FD0) +DISPLAY_LIST(bbh_seg7_dl_07008B58) +DISPLAY_LIST(bbh_seg7_dl_07008EA8) +DISPLAY_LIST(bbh_seg7_dl_0700AFF0) +DISPLAY_LIST(bbh_seg7_dl_0700B1C8) +DISPLAY_LIST(bbh_seg7_dl_0700B418) +DISPLAY_LIST(bbh_seg7_dl_0700B9E0) +DISPLAY_LIST(bbh_seg7_dl_0700BBF8) +DISPLAY_LIST(bbh_seg7_dl_0700D080) +DISPLAY_LIST(bbh_seg7_dl_0700D2E0) +DISPLAY_LIST(bbh_seg7_dl_0700D490) +DISPLAY_LIST(bbh_seg7_dl_0700D7E0) +DISPLAY_LIST(bbh_seg7_dl_0700F510) +DISPLAY_LIST(bbh_seg7_dl_0700F848) +DISPLAY_LIST(bbh_seg7_dl_07011120) +DISPLAY_LIST(bbh_seg7_dl_07012220) +DISPLAY_LIST(bbh_seg7_dl_07012510) +DISPLAY_LIST(bbh_seg7_dl_070126E8) +DISPLAY_LIST(bbh_seg7_dl_070139A8) +DISPLAY_LIST(bbh_seg7_dl_07013BE8) +DISPLAY_LIST(bbh_seg7_dl_07014FD8) +DISPLAY_LIST(bbh_seg7_dl_07015398) +DISPLAY_LIST(bbh_seg7_dl_070156E0) +DISPLAY_LIST(bbh_seg7_dl_07015A20) +DISPLAY_LIST(bbh_seg7_dl_07017378) +DISPLAY_LIST(bbh_seg7_dl_07017570) +DISPLAY_LIST(bbh_seg7_dl_07017788) +DISPLAY_LIST(bbh_seg7_dl_07019EF8) +DISPLAY_LIST(bbh_seg7_dl_0701A080) +DISPLAY_LIST(bbh_seg7_dl_0701A850) +DISPLAY_LIST(bbh_seg7_dl_0701B6D0) +DISPLAY_LIST(bbh_seg7_dl_0701E4E0) +DISPLAY_LIST(bbh_seg7_dl_0701E8D8) +DISPLAY_LIST(bbh_seg7_dl_0701ED18) +DISPLAY_LIST(bbh_seg7_dl_0701EEC8) +DISPLAY_LIST(bbh_seg7_dl_0701F070) +DISPLAY_LIST(bbh_seg7_dl_0701F2E8) +DISPLAY_LIST(bbh_seg7_dl_0701F5F8) +DISPLAY_LIST(bbh_seg7_dl_0701F7E8) +DISPLAY_LIST(bbh_seg7_dl_0701FAB0) +DISPLAY_LIST(bbh_seg7_dl_0701FD28) +DISPLAY_LIST(bbh_seg7_dl_0701FFE8) +DISPLAY_LIST(bbh_seg7_dl_070202F0) +DISPLAY_LIST(bbh_seg7_dl_070206F0) DISPLAY_LIST(birds_seg5_dl_05000528) DISPLAY_LIST(birds_seg5_dl_05000598) DISPLAY_LIST(birds_seg5_dl_05000600) DISPLAY_LIST(birds_seg5_dl_05000670) +DISPLAY_LIST(bitdw_seg7_dl_070020C8) +DISPLAY_LIST(bitdw_seg7_dl_070028A0) +DISPLAY_LIST(bitdw_seg7_dl_070032F8) +DISPLAY_LIST(bitdw_seg7_dl_07003608) +DISPLAY_LIST(bitdw_seg7_dl_07003BF0) +DISPLAY_LIST(bitdw_seg7_dl_07004318) +DISPLAY_LIST(bitdw_seg7_dl_070045C0) +DISPLAY_LIST(bitdw_seg7_dl_07005078) +DISPLAY_LIST(bitdw_seg7_dl_07005BC0) +DISPLAY_LIST(bitdw_seg7_dl_070065F0) +DISPLAY_LIST(bitdw_seg7_dl_07007AA8) +DISPLAY_LIST(bitdw_seg7_dl_07008FF0) +DISPLAY_LIST(bitdw_seg7_dl_070093B0) +DISPLAY_LIST(bitdw_seg7_dl_0700A368) +DISPLAY_LIST(bitdw_seg7_dl_0700A6A8) +DISPLAY_LIST(bitdw_seg7_dl_0700AD10) +DISPLAY_LIST(bitdw_seg7_dl_0700AFA0) +DISPLAY_LIST(bitdw_seg7_dl_0700B220) +DISPLAY_LIST(bitdw_seg7_dl_0700B480) +DISPLAY_LIST(bitdw_seg7_dl_0700B8D8) +DISPLAY_LIST(bitdw_seg7_dl_0700BB58) +DISPLAY_LIST(bitdw_seg7_dl_0700C0E0) +DISPLAY_LIST(bitdw_seg7_dl_0700C670) +DISPLAY_LIST(bitdw_seg7_dl_0700CC00) +DISPLAY_LIST(bitdw_seg7_dl_0700D190) +DISPLAY_LIST(bitdw_seg7_dl_0700D3E8) +DISPLAY_LIST(bitfs_dl_lava_floor) +DISPLAY_LIST(bitfs_dl_lava_sections) +DISPLAY_LIST(bitfs_seg7_dl_07002118) +DISPLAY_LIST(bitfs_seg7_dl_07002A78) +DISPLAY_LIST(bitfs_seg7_dl_07003670) +DISPLAY_LIST(bitfs_seg7_dl_07003C60) +DISPLAY_LIST(bitfs_seg7_dl_070040B0) +DISPLAY_LIST(bitfs_seg7_dl_07004630) +DISPLAY_LIST(bitfs_seg7_dl_07006B90) +DISPLAY_LIST(bitfs_seg7_dl_07007070) +DISPLAY_LIST(bitfs_seg7_dl_07007720) +DISPLAY_LIST(bitfs_seg7_dl_07007958) +DISPLAY_LIST(bitfs_seg7_dl_07008F48) +DISPLAY_LIST(bitfs_seg7_dl_070091E0) +DISPLAY_LIST(bitfs_seg7_dl_070095E0) +DISPLAY_LIST(bitfs_seg7_dl_0700AA00) +DISPLAY_LIST(bitfs_seg7_dl_0700AB90) +DISPLAY_LIST(bitfs_seg7_dl_0700BED8) +DISPLAY_LIST(bitfs_seg7_dl_0700C3C0) +DISPLAY_LIST(bitfs_seg7_dl_0700EC78) +DISPLAY_LIST(bitfs_seg7_dl_0700ED90) +DISPLAY_LIST(bitfs_seg7_dl_0700F1C8) +DISPLAY_LIST(bitfs_seg7_dl_0700F508) +DISPLAY_LIST(bitfs_seg7_dl_0700F6A8) +DISPLAY_LIST(bitfs_seg7_dl_0700FB38) +DISPLAY_LIST(bitfs_seg7_dl_0700FD08) +DISPLAY_LIST(bitfs_seg7_dl_0700FF90) +DISPLAY_LIST(bitfs_seg7_dl_07010168) +DISPLAY_LIST(bitfs_seg7_dl_07010340) +DISPLAY_LIST(bitfs_seg7_dl_07011138) +DISPLAY_LIST(bitfs_seg7_dl_07011318) +DISPLAY_LIST(bitfs_seg7_dl_07011568) +DISPLAY_LIST(bitfs_seg7_dl_07011798) +DISPLAY_LIST(bitfs_seg7_dl_07011BA0) +DISPLAY_LIST(bitfs_seg7_dl_07011D98) +DISPLAY_LIST(bitfs_seg7_dl_07011E28) +DISPLAY_LIST(bits_seg7_dl_07002918) +DISPLAY_LIST(bits_seg7_dl_07003670) +DISPLAY_LIST(bits_seg7_dl_070047F0) +DISPLAY_LIST(bits_seg7_dl_07005DB8) +DISPLAY_LIST(bits_seg7_dl_07007AF0) +DISPLAY_LIST(bits_seg7_dl_07007C28) +DISPLAY_LIST(bits_seg7_dl_07007EC8) +DISPLAY_LIST(bits_seg7_dl_07008D18) +DISPLAY_LIST(bits_seg7_dl_07008FE8) +DISPLAY_LIST(bits_seg7_dl_07009690) +DISPLAY_LIST(bits_seg7_dl_0700B4A0) +DISPLAY_LIST(bits_seg7_dl_0700B820) +DISPLAY_LIST(bits_seg7_dl_0700BA18) +DISPLAY_LIST(bits_seg7_dl_0700CDC0) +DISPLAY_LIST(bits_seg7_dl_0700D278) +DISPLAY_LIST(bits_seg7_dl_0700D5A0) +DISPLAY_LIST(bits_seg7_dl_0700DD00) +DISPLAY_LIST(bits_seg7_dl_0700FC70) +DISPLAY_LIST(bits_seg7_dl_070128F0) +DISPLAY_LIST(bits_seg7_dl_07012B10) +DISPLAY_LIST(bits_seg7_dl_07012D40) +DISPLAY_LIST(bits_seg7_dl_070135A0) +DISPLAY_LIST(bits_seg7_dl_07013820) +DISPLAY_LIST(bits_seg7_dl_07013C78) +DISPLAY_LIST(bits_seg7_dl_07013EF8) +DISPLAY_LIST(bits_seg7_dl_07014178) +DISPLAY_LIST(bits_seg7_dl_07014C28) +DISPLAY_LIST(bits_seg7_dl_070153C0) +DISPLAY_LIST(bits_seg7_dl_07015B60) +DISPLAY_LIST(bits_seg7_dl_07016300) +DISPLAY_LIST(bits_seg7_dl_07016AA0) +DISPLAY_LIST(bits_seg7_dl_07016DA0) DISPLAY_LIST(blargg_seg5_dl_050058D0) DISPLAY_LIST(blargg_seg5_dl_05005A60) DISPLAY_LIST(blargg_seg5_dl_05005D00) @@ -28,6 +169,15 @@ DISPLAY_LIST(blue_fish_seg3_dl_0301BEC0) DISPLAY_LIST(blue_fish_seg3_dl_0301BFB8) DISPLAY_LIST(blue_fish_seg3_dl_0301C0A8) DISPLAY_LIST(blue_fish_seg3_dl_0301C150) +DISPLAY_LIST(bob_seg7_dl_07004390) +DISPLAY_LIST(bob_seg7_dl_07009D80) +DISPLAY_LIST(bob_seg7_dl_0700A470) +DISPLAY_LIST(bob_seg7_dl_0700A920) +DISPLAY_LIST(bob_seg7_dl_0700DD18) +DISPLAY_LIST(bob_seg7_dl_0700E338) +DISPLAY_LIST(bob_seg7_dl_0700E458) +DISPLAY_LIST(bob_seg7_dl_0700E768) +DISPLAY_LIST(bob_seg7_dl_0700E8A0) DISPLAY_LIST(bobomb_seg8_dl_08022AC0) DISPLAY_LIST(bobomb_seg8_dl_08022B08) DISPLAY_LIST(bobomb_seg8_dl_08022B58) @@ -44,6 +194,10 @@ DISPLAY_LIST(bomb_seg6_dl_0605A7F8) DISPLAY_LIST(bomb_seg6_dl_0605A830) DISPLAY_LIST(bomb_seg6_dl_0605A8A8) DISPLAY_LIST(bomb_seg6_dl_0605A9C0) +DISPLAY_LIST(boo_castle_seg6_dl_06017A10) +DISPLAY_LIST(boo_castle_seg6_dl_06017A78) +DISPLAY_LIST(boo_castle_seg6_dl_06017AD0) +DISPLAY_LIST(boo_castle_seg6_dl_06017CE0) DISPLAY_LIST(boo_seg5_dl_0500BEE0) DISPLAY_LIST(boo_seg5_dl_0500BF48) DISPLAY_LIST(boo_seg5_dl_0500BFA0) @@ -67,10 +221,23 @@ DISPLAY_LIST(bookend_seg5_dl_050020E8) DISPLAY_LIST(bookend_seg5_dl_05002140) DISPLAY_LIST(bookend_seg5_dl_05002288) DISPLAY_LIST(bookend_seg5_dl_050022E0) -DISPLAY_LIST(boo_castle_seg6_dl_06017A10) -DISPLAY_LIST(boo_castle_seg6_dl_06017A78) -DISPLAY_LIST(boo_castle_seg6_dl_06017AD0) -DISPLAY_LIST(boo_castle_seg6_dl_06017CE0) +DISPLAY_LIST(bowser_1_seg7_dl_07002768) +DISPLAY_LIST(bowser_2_seg7_dl_07000D30) +DISPLAY_LIST(bowser_2_seg7_dl_07000FE0) +DISPLAY_LIST(bowser_2_seg7_dl_07001930) +DISPLAY_LIST(bowser_3_seg7_dl_070022A8) +DISPLAY_LIST(bowser_3_seg7_dl_070025E0) +DISPLAY_LIST(bowser_3_seg7_dl_07002918) +DISPLAY_LIST(bowser_3_seg7_dl_07002C50) +DISPLAY_LIST(bowser_3_seg7_dl_07002F88) +DISPLAY_LIST(bowser_3_seg7_dl_070032C0) +DISPLAY_LIST(bowser_3_seg7_dl_070035F8) +DISPLAY_LIST(bowser_3_seg7_dl_07003930) +DISPLAY_LIST(bowser_3_seg7_dl_07003C68) +DISPLAY_LIST(bowser_3_seg7_dl_07003FA0) +DISPLAY_LIST(bowser_3_seg7_dl_070046B0) +DISPLAY_LIST(bowser_3_seg7_dl_07004958) +DISPLAY_LIST(bowser_key_dl) DISPLAY_LIST(bowser_seg6_dl_06039110) DISPLAY_LIST(bowser_seg6_dl_060391C8) DISPLAY_LIST(bowser_seg6_dl_06039260) @@ -142,25 +309,6 @@ DISPLAY_LIST(bowser_seg6_dl_060431F0) DISPLAY_LIST(bowser_seg6_dl_06043548) DISPLAY_LIST(bowser_seg6_dl_06043648) DISPLAY_LIST(bowser_seg6_dl_06043698) -DISPLAY_LIST(flame_seg6_dl_0601C080) -DISPLAY_LIST(flame_seg6_dl_0601C0B0) -DISPLAY_LIST(flame_seg6_dl_0601C0C8) -DISPLAY_LIST(flame_seg6_dl_0601C0E0) -DISPLAY_LIST(flame_seg6_dl_0601C108) -DISPLAY_LIST(flame_seg6_dl_0601C1A8) -DISPLAY_LIST(flame_seg6_dl_0601C248) -DISPLAY_LIST(flame_seg6_dl_0601C2E8) -DISPLAY_LIST(flame_seg6_dl_0601C388) -DISPLAY_LIST(flame_seg6_dl_0601C428) -DISPLAY_LIST(flame_seg6_dl_0601C4C8) -DISPLAY_LIST(flame_seg6_dl_0601C568) -DISPLAY_LIST(flame_seg6_dl_0601C608) -DISPLAY_LIST(flame_seg6_dl_0601C6A8) -DISPLAY_LIST(flame_seg6_dl_0601C748) -DISPLAY_LIST(flame_seg6_dl_0601C7E8) -DISPLAY_LIST(flame_seg6_dl_0601C888) -DISPLAY_LIST(flame_seg6_dl_0601C928) -DISPLAY_LIST(bowser_key_dl) DISPLAY_LIST(breakable_box_seg8_dl_08012C30) DISPLAY_LIST(breakable_box_seg8_dl_08012CD8) DISPLAY_LIST(breakable_box_seg8_dl_08012D20) @@ -223,15 +371,64 @@ DISPLAY_LIST(cannon_base_seg8_dl_080056D0) DISPLAY_LIST(cannon_base_seg8_dl_080057F8) DISPLAY_LIST(cannon_lid_seg8_dl_08004898) DISPLAY_LIST(cannon_lid_seg8_dl_080048E0) -DISPLAY_LIST(capswitch_seg5_dl_05002D88) -DISPLAY_LIST(cap_switch_exclamation_seg5_dl_05002E00) -DISPLAY_LIST(capswitch_seg5_dl_05003020) DISPLAY_LIST(cap_switch_base_seg5_dl_05003120) +DISPLAY_LIST(cap_switch_exclamation_seg5_dl_05002E00) +DISPLAY_LIST(capswitch_seg5_dl_05002D88) +DISPLAY_LIST(capswitch_seg5_dl_05003020) DISPLAY_LIST(capswitch_seg5_dl_05003280) DISPLAY_LIST(capswitch_seg5_dl_05003350) DISPLAY_LIST(capswitch_seg5_dl_05003370) DISPLAY_LIST(capswitch_seg5_dl_05003390) DISPLAY_LIST(capswitch_seg5_dl_050033B0) +DISPLAY_LIST(castle_courtyard_seg7_dl_070048B8) +DISPLAY_LIST(castle_courtyard_seg7_dl_07005078) +DISPLAY_LIST(castle_courtyard_seg7_dl_07005698) +DISPLAY_LIST(castle_courtyard_seg7_dl_07005938) +DISPLAY_LIST(castle_grounds_dl_waterfall) +DISPLAY_LIST(castle_grounds_seg7_dl_07006D70) +DISPLAY_LIST(castle_grounds_seg7_dl_070095F0) +DISPLAY_LIST(castle_grounds_seg7_dl_0700A290) +DISPLAY_LIST(castle_grounds_seg7_dl_0700A860) +DISPLAY_LIST(castle_grounds_seg7_dl_0700B1D0) +DISPLAY_LIST(castle_grounds_seg7_dl_0700BA20) +DISPLAY_LIST(castle_grounds_seg7_dl_0700BB80) +DISPLAY_LIST(castle_grounds_seg7_dl_0700BC68) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C210) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C430) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C670) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C6A8) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C6E8) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C728) +DISPLAY_LIST(castle_grounds_seg7_dl_0700C768) +DISPLAY_LIST(castle_grounds_seg7_dl_0700EA58) +DISPLAY_LIST(castle_grounds_seg7_us_dl_0700F2E8) +DISPLAY_LIST(ccm_seg7_dl_0700B090) +DISPLAY_LIST(ccm_seg7_dl_0700B1D8) +DISPLAY_LIST(ccm_seg7_dl_0700C380) +DISPLAY_LIST(ccm_seg7_dl_0700D578) +DISPLAY_LIST(ccm_seg7_dl_0700DDF0) +DISPLAY_LIST(ccm_seg7_dl_0700E708) +DISPLAY_LIST(ccm_seg7_dl_0700E970) +DISPLAY_LIST(ccm_seg7_dl_0700F440) +DISPLAY_LIST(ccm_seg7_dl_0700F650) +DISPLAY_LIST(ccm_seg7_dl_0700F780) +DISPLAY_LIST(ccm_seg7_dl_0700FB00) +DISPLAY_LIST(ccm_seg7_dl_0700FD08) +DISPLAY_LIST(ccm_seg7_dl_07010660) +DISPLAY_LIST(ccm_seg7_dl_070109D0) +DISPLAY_LIST(ccm_seg7_dl_07010B50) +DISPLAY_LIST(ccm_seg7_dl_07010F28) +DISPLAY_LIST(ccm_seg7_dl_070118B0) +DISPLAY_LIST(ccm_seg7_dl_07012BD8) +DISPLAY_LIST(ccm_seg7_dl_070136D0) +DISPLAY_LIST(ccm_seg7_dl_07013870) +DISPLAY_LIST(ccm_seg7_dl_0701CE30) +DISPLAY_LIST(ccm_seg7_dl_0701E558) +DISPLAY_LIST(ccm_seg7_dl_0701E6B0) +DISPLAY_LIST(ccm_seg7_dl_0701FC78) +DISPLAY_LIST(ccm_seg7_dl_0701FD78) +DISPLAY_LIST(ccm_seg7_dl_0701FE60) +DISPLAY_LIST(ccm_seg7_dl_070207F0) DISPLAY_LIST(chain_ball_seg6_dl_060212E8) DISPLAY_LIST(chain_chomp_seg6_dl_06024000) DISPLAY_LIST(chain_chomp_seg6_dl_06024040) @@ -310,12 +507,44 @@ DISPLAY_LIST(coin_seg3_dl_03007940) DISPLAY_LIST(coin_seg3_dl_03007968) DISPLAY_LIST(coin_seg3_dl_03007990) DISPLAY_LIST(coin_seg3_dl_030079B8) +DISPLAY_LIST(cotmc_dl_water) +DISPLAY_LIST(cotmc_dl_water_begin) +DISPLAY_LIST(cotmc_dl_water_end) +DISPLAY_LIST(cotmc_seg7_dl_07007D48) +DISPLAY_LIST(cotmc_seg7_dl_0700A160) +DISPLAY_LIST(cotmc_seg7_dl_0700A4B8) DISPLAY_LIST(cyan_fish_seg6_dl_0600DD20) DISPLAY_LIST(cyan_fish_seg6_dl_0600DDD8) DISPLAY_LIST(cyan_fish_seg6_dl_0600DE90) DISPLAY_LIST(cyan_fish_seg6_dl_0600DED8) DISPLAY_LIST(cyan_fish_seg6_dl_0600DFC0) DISPLAY_LIST(cyan_fish_seg6_dl_0600E038) +DISPLAY_LIST(ddd_seg7_dl_07004D48) +DISPLAY_LIST(ddd_seg7_dl_070057E8) +DISPLAY_LIST(ddd_seg7_dl_07005C40) +DISPLAY_LIST(ddd_seg7_dl_07005F78) +DISPLAY_LIST(ddd_seg7_dl_07007408) +DISPLAY_LIST(ddd_seg7_dl_07007CB8) +DISPLAY_LIST(ddd_seg7_dl_07008C48) +DISPLAY_LIST(ddd_seg7_dl_07008F80) +DISPLAY_LIST(ddd_seg7_dl_07009030) +DISPLAY_LIST(ddd_seg7_dl_07009120) +DISPLAY_LIST(ddd_seg7_dl_07009208) +DISPLAY_LIST(ddd_seg7_dl_0700AF10) +DISPLAY_LIST(ddd_seg7_dl_0700B068) +DISPLAY_LIST(ddd_seg7_dl_0700BAE0) +DISPLAY_LIST(ddd_seg7_dl_0700CE48) +DISPLAY_LIST(ddd_seg7_dl_0700D2A0) +DISPLAY_LIST(debug_level_select_dl_07000858) +DISPLAY_LIST(debug_level_select_dl_07001100) +DISPLAY_LIST(debug_level_select_dl_07001BA0) +DISPLAY_LIST(debug_level_select_dl_070025F0) +DISPLAY_LIST(debug_level_select_dl_07003258) +DISPLAY_LIST(debug_level_select_dl_07003DB8) +DISPLAY_LIST(debug_level_select_dl_070048C8) +DISPLAY_LIST(debug_level_select_dl_07005558) +DISPLAY_LIST(debug_level_select_dl_070059F8) +DISPLAY_LIST(debug_level_select_dl_070063B0) DISPLAY_LIST(dirt_seg3_dl_0302BFF8) DISPLAY_LIST(dirt_seg3_dl_0302C028) DISPLAY_LIST(dirt_seg3_dl_0302C238) @@ -329,6 +558,138 @@ DISPLAY_LIST(dirt_seg3_dl_0302C3B0) DISPLAY_LIST(dirt_seg3_dl_0302C3E8) DISPLAY_LIST(dirt_seg3_dl_0302C420) DISPLAY_LIST(dirt_seg3_dl_0302C458) +DISPLAY_LIST(dl_billboard_num3_0) +DISPLAY_LIST(dl_billboard_num3_0x) +DISPLAY_LIST(dl_billboard_num3_0xx) +DISPLAY_LIST(dl_billboard_num3_1) +DISPLAY_LIST(dl_billboard_num3_1x) +DISPLAY_LIST(dl_billboard_num3_1xx) +DISPLAY_LIST(dl_billboard_num3_2) +DISPLAY_LIST(dl_billboard_num3_2x) +DISPLAY_LIST(dl_billboard_num3_2xx) +DISPLAY_LIST(dl_billboard_num3_3) +DISPLAY_LIST(dl_billboard_num3_3x) +DISPLAY_LIST(dl_billboard_num3_3xx) +DISPLAY_LIST(dl_billboard_num3_4) +DISPLAY_LIST(dl_billboard_num3_4x) +DISPLAY_LIST(dl_billboard_num3_4xx) +DISPLAY_LIST(dl_billboard_num3_5) +DISPLAY_LIST(dl_billboard_num3_5x) +DISPLAY_LIST(dl_billboard_num3_5xx) +DISPLAY_LIST(dl_billboard_num3_6) +DISPLAY_LIST(dl_billboard_num3_6x) +DISPLAY_LIST(dl_billboard_num3_6xx) +DISPLAY_LIST(dl_billboard_num3_7) +DISPLAY_LIST(dl_billboard_num3_7x) +DISPLAY_LIST(dl_billboard_num3_7xx) +DISPLAY_LIST(dl_billboard_num3_8) +DISPLAY_LIST(dl_billboard_num3_8x) +DISPLAY_LIST(dl_billboard_num3_8xx) +DISPLAY_LIST(dl_billboard_num3_9) +DISPLAY_LIST(dl_billboard_num3_9x) +DISPLAY_LIST(dl_billboard_num3_9xx) +DISPLAY_LIST(dl_billboard_num3_x0) +DISPLAY_LIST(dl_billboard_num3_x0x) +DISPLAY_LIST(dl_billboard_num3_x1) +DISPLAY_LIST(dl_billboard_num3_x1x) +DISPLAY_LIST(dl_billboard_num3_x2) +DISPLAY_LIST(dl_billboard_num3_x2x) +DISPLAY_LIST(dl_billboard_num3_x3) +DISPLAY_LIST(dl_billboard_num3_x3x) +DISPLAY_LIST(dl_billboard_num3_x4) +DISPLAY_LIST(dl_billboard_num3_x4x) +DISPLAY_LIST(dl_billboard_num3_x5) +DISPLAY_LIST(dl_billboard_num3_x5x) +DISPLAY_LIST(dl_billboard_num3_x6) +DISPLAY_LIST(dl_billboard_num3_x6x) +DISPLAY_LIST(dl_billboard_num3_x7) +DISPLAY_LIST(dl_billboard_num3_x7x) +DISPLAY_LIST(dl_billboard_num3_x8) +DISPLAY_LIST(dl_billboard_num3_x8x) +DISPLAY_LIST(dl_billboard_num3_x9) +DISPLAY_LIST(dl_billboard_num3_x9x) +DISPLAY_LIST(dl_billboard_num3_xx0) +DISPLAY_LIST(dl_billboard_num3_xx1) +DISPLAY_LIST(dl_billboard_num3_xx2) +DISPLAY_LIST(dl_billboard_num3_xx3) +DISPLAY_LIST(dl_billboard_num3_xx4) +DISPLAY_LIST(dl_billboard_num3_xx5) +DISPLAY_LIST(dl_billboard_num3_xx6) +DISPLAY_LIST(dl_billboard_num3_xx7) +DISPLAY_LIST(dl_billboard_num3_xx8) +DISPLAY_LIST(dl_billboard_num3_xx9) +DISPLAY_LIST(dl_billboard_num_0) +DISPLAY_LIST(dl_billboard_num_1) +DISPLAY_LIST(dl_billboard_num_2) +DISPLAY_LIST(dl_billboard_num_3) +DISPLAY_LIST(dl_billboard_num_4) +DISPLAY_LIST(dl_billboard_num_5) +DISPLAY_LIST(dl_billboard_num_6) +DISPLAY_LIST(dl_billboard_num_7) +DISPLAY_LIST(dl_billboard_num_8) +DISPLAY_LIST(dl_billboard_num_9) +DISPLAY_LIST(dl_billboard_num_begin) +DISPLAY_LIST(dl_billboard_num_end) +DISPLAY_LIST(dl_castle_aquarium_light) +DISPLAY_LIST(dl_castle_lobby_wing_cap_light) +DISPLAY_LIST(dl_cruiser_metal_holes) +DISPLAY_LIST(dl_draw_quad_verts_0123) +DISPLAY_LIST(dl_draw_quad_verts_4567) +DISPLAY_LIST(dl_draw_text_bg_box) +DISPLAY_LIST(dl_draw_triangle) +DISPLAY_LIST(dl_flying_carpet_begin) +DISPLAY_LIST(dl_flying_carpet_end) +DISPLAY_LIST(dl_flying_carpet_model_half) +DISPLAY_LIST(dl_hud_img_begin) +DISPLAY_LIST(dl_hud_img_end) +DISPLAY_LIST(dl_hud_img_load_tex_block) +DISPLAY_LIST(dl_ia8_up_arrow_begin) +DISPLAY_LIST(dl_ia8_up_arrow_end) +DISPLAY_LIST(dl_ia8_up_arrow_load_texture_block) +DISPLAY_LIST(dl_ia_text_end) +DISPLAY_LIST(dl_menu_copy_button) +DISPLAY_LIST(dl_menu_erase_button) +DISPLAY_LIST(dl_menu_file_button) +DISPLAY_LIST(dl_menu_generic_button) +DISPLAY_LIST(dl_menu_grabbing_hand) +DISPLAY_LIST(dl_menu_ia8_text_begin) +DISPLAY_LIST(dl_menu_ia8_text_end) +DISPLAY_LIST(dl_menu_idle_hand) +DISPLAY_LIST(dl_menu_mario_new_button_base) +DISPLAY_LIST(dl_menu_mario_save_button_base) +DISPLAY_LIST(dl_menu_rgba16_wood_course) +DISPLAY_LIST(dl_menu_save_button_back) +DISPLAY_LIST(dl_menu_save_button_fade_back) +DISPLAY_LIST(dl_menu_score_button) +DISPLAY_LIST(dl_menu_sound_button) +DISPLAY_LIST(dl_paintings_draw_ripples) +DISPLAY_LIST(dl_paintings_env_mapped_begin) +DISPLAY_LIST(dl_paintings_env_mapped_end) +DISPLAY_LIST(dl_paintings_rippling_begin) +DISPLAY_LIST(dl_paintings_rippling_end) +DISPLAY_LIST(dl_power_meter_base) +DISPLAY_LIST(dl_power_meter_health_segments_begin) +DISPLAY_LIST(dl_power_meter_health_segments_end) +DISPLAY_LIST(dl_proj_mtx_fullscreen) +DISPLAY_LIST(dl_rgba16_load_tex_block) +DISPLAY_LIST(dl_rgba16_text_begin) +DISPLAY_LIST(dl_rgba16_text_end) +DISPLAY_LIST(dl_rgba16_unused) +DISPLAY_LIST(dl_screen_transition_end) +DISPLAY_LIST(dl_shadow_4_verts) +DISPLAY_LIST(dl_shadow_9_verts) +DISPLAY_LIST(dl_shadow_begin) +DISPLAY_LIST(dl_shadow_circle) +DISPLAY_LIST(dl_shadow_end) +DISPLAY_LIST(dl_shadow_spike_ext) +DISPLAY_LIST(dl_shadow_square) +DISPLAY_LIST(dl_skybox_begin) +DISPLAY_LIST(dl_skybox_end) +DISPLAY_LIST(dl_skybox_tile_tex_settings) +DISPLAY_LIST(dl_transition_draw_filled_region) +DISPLAY_LIST(dl_waterbox_end) +DISPLAY_LIST(dl_waterbox_ia16_begin) +DISPLAY_LIST(dl_waterbox_rgba16_begin) DISPLAY_LIST(door_seg3_dl_03013C10) DISPLAY_LIST(door_seg3_dl_03013CC8) DISPLAY_LIST(door_seg3_dl_03013D78) @@ -392,20 +753,9 @@ DISPLAY_LIST(dorrie_seg6_dl_0600DDA0) DISPLAY_LIST(dorrie_seg6_dl_0600DE38) DISPLAY_LIST(dorrie_seg6_dl_0600DF60) DISPLAY_LIST(dorrie_seg6_dl_0600DFA8) -DISPLAY_LIST(error_model_error_bone_mesh_layer_1_tri_0) -DISPLAY_LIST(mat_error_model_f3d_material) DISPLAY_LIST(error_model_error_bone_mesh_layer_1) +DISPLAY_LIST(error_model_error_bone_mesh_layer_1_tri_0) DISPLAY_LIST(error_model_material_revert_render_settings) -DISPLAY_LIST(exclamation_box_seg8_dl_08018FA8) -DISPLAY_LIST(exclamation_box_seg8_dl_08019008) -DISPLAY_LIST(exclamation_box_seg8_dl_08019058) -DISPLAY_LIST(exclamation_box_seg8_dl_08019220) -DISPLAY_LIST(exclamation_box_seg8_dl_08019280) -DISPLAY_LIST(exclamation_box_seg8_dl_080192D0) -DISPLAY_LIST(exclamation_box_seg8_dl_08019318) -DISPLAY_LIST(exclamation_box_seg8_dl_08019378) -DISPLAY_LIST(exclamation_box_seg8_dl_080193D8) -DISPLAY_LIST(exclamation_box_seg8_dl_08019438) DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024EB8) DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024F30) DISPLAY_LIST(exclamation_box_outline_seg8_dl_08024F58) @@ -417,6 +767,16 @@ DISPLAY_LIST(exclamation_box_outline_seg8_dl_08025968) DISPLAY_LIST(exclamation_box_outline_seg8_dl_080259F8) DISPLAY_LIST(exclamation_box_outline_seg8_dl_08025EC0) DISPLAY_LIST(exclamation_box_outline_seg8_dl_08025F08) +DISPLAY_LIST(exclamation_box_seg8_dl_08018FA8) +DISPLAY_LIST(exclamation_box_seg8_dl_08019008) +DISPLAY_LIST(exclamation_box_seg8_dl_08019058) +DISPLAY_LIST(exclamation_box_seg8_dl_08019220) +DISPLAY_LIST(exclamation_box_seg8_dl_08019280) +DISPLAY_LIST(exclamation_box_seg8_dl_080192D0) +DISPLAY_LIST(exclamation_box_seg8_dl_08019318) +DISPLAY_LIST(exclamation_box_seg8_dl_08019378) +DISPLAY_LIST(exclamation_box_seg8_dl_080193D8) +DISPLAY_LIST(exclamation_box_seg8_dl_08019438) DISPLAY_LIST(explosion_seg3_dl_03004208) DISPLAY_LIST(explosion_seg3_dl_03004298) DISPLAY_LIST(explosion_seg3_dl_030042B0) @@ -465,6 +825,24 @@ DISPLAY_LIST(flame_seg3_dl_0301B560) DISPLAY_LIST(flame_seg3_dl_0301B578) DISPLAY_LIST(flame_seg3_dl_0301B590) DISPLAY_LIST(flame_seg3_dl_0301B5A8) +DISPLAY_LIST(flame_seg6_dl_0601C080) +DISPLAY_LIST(flame_seg6_dl_0601C0B0) +DISPLAY_LIST(flame_seg6_dl_0601C0C8) +DISPLAY_LIST(flame_seg6_dl_0601C0E0) +DISPLAY_LIST(flame_seg6_dl_0601C108) +DISPLAY_LIST(flame_seg6_dl_0601C1A8) +DISPLAY_LIST(flame_seg6_dl_0601C248) +DISPLAY_LIST(flame_seg6_dl_0601C2E8) +DISPLAY_LIST(flame_seg6_dl_0601C388) +DISPLAY_LIST(flame_seg6_dl_0601C428) +DISPLAY_LIST(flame_seg6_dl_0601C4C8) +DISPLAY_LIST(flame_seg6_dl_0601C568) +DISPLAY_LIST(flame_seg6_dl_0601C608) +DISPLAY_LIST(flame_seg6_dl_0601C6A8) +DISPLAY_LIST(flame_seg6_dl_0601C748) +DISPLAY_LIST(flame_seg6_dl_0601C7E8) +DISPLAY_LIST(flame_seg6_dl_0601C888) +DISPLAY_LIST(flame_seg6_dl_0601C928) DISPLAY_LIST(flyguy_seg8_dl_08010840) DISPLAY_LIST(flyguy_seg8_dl_08010968) DISPLAY_LIST(flyguy_seg8_dl_08010A90) @@ -476,6 +854,7 @@ DISPLAY_LIST(flyguy_seg8_dl_080116D0) DISPLAY_LIST(flyguy_seg8_dl_08011710) DISPLAY_LIST(fwoosh_seg5_dl_05016008) DISPLAY_LIST(fwoosh_seg5_dl_05016040) +DISPLAY_LIST(geo_num3_switch) DISPLAY_LIST(goomba_seg8_dl_0801B2E8) DISPLAY_LIST(goomba_seg8_dl_0801B560) DISPLAY_LIST(goomba_seg8_dl_0801B5A0) @@ -520,6 +899,47 @@ DISPLAY_LIST(heave_ho_seg5_dl_05014560) DISPLAY_LIST(heave_ho_seg5_dl_050145D0) DISPLAY_LIST(heave_ho_seg5_dl_050149A8) DISPLAY_LIST(heave_ho_seg5_dl_05014D80) +DISPLAY_LIST(hmc_seg7_dl_070078B0) +DISPLAY_LIST(hmc_seg7_dl_07007B50) +DISPLAY_LIST(hmc_seg7_dl_070080E8) +DISPLAY_LIST(hmc_seg7_dl_070093F0) +DISPLAY_LIST(hmc_seg7_dl_0700E448) +DISPLAY_LIST(hmc_seg7_dl_0700EF00) +DISPLAY_LIST(hmc_seg7_dl_0700F3E8) +DISPLAY_LIST(hmc_seg7_dl_0700FA40) +DISPLAY_LIST(hmc_seg7_dl_0700FEF0) +DISPLAY_LIST(hmc_seg7_dl_07010070) +DISPLAY_LIST(hmc_seg7_dl_07013CA8) +DISPLAY_LIST(hmc_seg7_dl_07013E80) +DISPLAY_LIST(hmc_seg7_dl_07014300) +DISPLAY_LIST(hmc_seg7_dl_07014B08) +DISPLAY_LIST(hmc_seg7_dl_07014C00) +DISPLAY_LIST(hmc_seg7_dl_07014E48) +DISPLAY_LIST(hmc_seg7_dl_070173A8) +DISPLAY_LIST(hmc_seg7_dl_07017C98) +DISPLAY_LIST(hmc_seg7_dl_07018200) +DISPLAY_LIST(hmc_seg7_dl_07019248) +DISPLAY_LIST(hmc_seg7_dl_07019368) +DISPLAY_LIST(hmc_seg7_dl_0701A080) +DISPLAY_LIST(hmc_seg7_dl_0701A400) +DISPLAY_LIST(hmc_seg7_dl_0701E820) +DISPLAY_LIST(hmc_seg7_dl_0701F1B0) +DISPLAY_LIST(hmc_seg7_dl_0701F690) +DISPLAY_LIST(hmc_seg7_dl_0701F818) +DISPLAY_LIST(hmc_seg7_dl_0701FD58) +DISPLAY_LIST(hmc_seg7_dl_0701FFF8) +DISPLAY_LIST(hmc_seg7_dl_07020FD0) +DISPLAY_LIST(hmc_seg7_dl_07021760) +DISPLAY_LIST(hmc_seg7_dl_07021BA0) +DISPLAY_LIST(hmc_seg7_dl_070228A0) +DISPLAY_LIST(hmc_seg7_dl_07022AA0) +DISPLAY_LIST(hmc_seg7_dl_07022DA0) +DISPLAY_LIST(hmc_seg7_dl_07023090) +DISPLAY_LIST(hmc_seg7_dl_07023BC8) +DISPLAY_LIST(hmc_seg7_dl_07023E10) +DISPLAY_LIST(hmc_seg7_dl_07024110) +DISPLAY_LIST(hmc_seg7_dl_07024268) +DISPLAY_LIST(hmc_seg7_dl_070242A0) DISPLAY_LIST(hoot_seg5_dl_05001B80) DISPLAY_LIST(hoot_seg5_dl_05001C00) DISPLAY_LIST(hoot_seg5_dl_05001DF0) @@ -555,6 +975,90 @@ DISPLAY_LIST(impact_smoke_seg6_dl_06062B38) DISPLAY_LIST(impact_smoke_seg6_dl_06062BD8) DISPLAY_LIST(impact_smoke_seg6_dl_06062C78) DISPLAY_LIST(impact_smoke_seg6_dl_06062D18) +DISPLAY_LIST(inside_castle_seg7_dl_070225D8) +DISPLAY_LIST(inside_castle_seg7_dl_07022610) +DISPLAY_LIST(inside_castle_seg7_dl_070234C0) +DISPLAY_LIST(inside_castle_seg7_dl_07023520) +DISPLAY_LIST(inside_castle_seg7_dl_07023DB0) +DISPLAY_LIST(inside_castle_seg7_dl_07028FD0) +DISPLAY_LIST(inside_castle_seg7_dl_07029578) +DISPLAY_LIST(inside_castle_seg7_dl_0702A650) +DISPLAY_LIST(inside_castle_seg7_dl_0702AA10) +DISPLAY_LIST(inside_castle_seg7_dl_0702AB20) +DISPLAY_LIST(inside_castle_seg7_dl_0702E408) +DISPLAY_LIST(inside_castle_seg7_dl_0702FD30) +DISPLAY_LIST(inside_castle_seg7_dl_07031168) +DISPLAY_LIST(inside_castle_seg7_dl_07031588) +DISPLAY_LIST(inside_castle_seg7_dl_07031720) +DISPLAY_LIST(inside_castle_seg7_dl_07031830) +DISPLAY_LIST(inside_castle_seg7_dl_07032FC0) +DISPLAY_LIST(inside_castle_seg7_dl_07033158) +DISPLAY_LIST(inside_castle_seg7_dl_07034D88) +DISPLAY_LIST(inside_castle_seg7_dl_07035178) +DISPLAY_LIST(inside_castle_seg7_dl_07035288) +DISPLAY_LIST(inside_castle_seg7_dl_07036D88) +DISPLAY_LIST(inside_castle_seg7_dl_07037988) +DISPLAY_LIST(inside_castle_seg7_dl_07037BF8) +DISPLAY_LIST(inside_castle_seg7_dl_07037DE8) +DISPLAY_LIST(inside_castle_seg7_dl_07038350) +DISPLAY_LIST(inside_castle_seg7_dl_0703A6C8) +DISPLAY_LIST(inside_castle_seg7_dl_0703A808) +DISPLAY_LIST(inside_castle_seg7_dl_0703BA08) +DISPLAY_LIST(inside_castle_seg7_dl_0703BCB8) +DISPLAY_LIST(inside_castle_seg7_dl_0703BFA8) +DISPLAY_LIST(inside_castle_seg7_dl_0703E6F0) +DISPLAY_LIST(inside_castle_seg7_dl_07043028) +DISPLAY_LIST(inside_castle_seg7_dl_07043B48) +DISPLAY_LIST(inside_castle_seg7_dl_07043CD8) +DISPLAY_LIST(inside_castle_seg7_dl_0704A0E8) +DISPLAY_LIST(inside_castle_seg7_dl_0704A2E0) +DISPLAY_LIST(inside_castle_seg7_dl_0704AA98) +DISPLAY_LIST(inside_castle_seg7_dl_0704C7D8) +DISPLAY_LIST(inside_castle_seg7_dl_07050938) +DISPLAY_LIST(inside_castle_seg7_dl_070512F8) +DISPLAY_LIST(inside_castle_seg7_dl_07051678) +DISPLAY_LIST(inside_castle_seg7_dl_070519C8) +DISPLAY_LIST(inside_castle_seg7_dl_07051B60) +DISPLAY_LIST(inside_castle_seg7_dl_070558D0) +DISPLAY_LIST(inside_castle_seg7_dl_070572A0) +DISPLAY_LIST(inside_castle_seg7_dl_07057F00) +DISPLAY_LIST(inside_castle_seg7_dl_07058950) +DISPLAY_LIST(inside_castle_seg7_dl_07059190) +DISPLAY_LIST(inside_castle_seg7_dl_0705E088) +DISPLAY_LIST(inside_castle_seg7_dl_0705E2A0) +DISPLAY_LIST(inside_castle_seg7_dl_0705E450) +DISPLAY_LIST(inside_castle_seg7_dl_070616E8) +DISPLAY_LIST(inside_castle_seg7_dl_07061C20) +DISPLAY_LIST(inside_castle_seg7_dl_07064B78) +DISPLAY_LIST(inside_castle_seg7_dl_07064D58) +DISPLAY_LIST(inside_castle_seg7_dl_07066CE0) +DISPLAY_LIST(inside_castle_seg7_dl_07066E90) +DISPLAY_LIST(inside_castle_seg7_dl_07066FA0) +DISPLAY_LIST(inside_castle_seg7_dl_07068850) +DISPLAY_LIST(inside_castle_seg7_dl_07068B10) +DISPLAY_LIST(intro_seg7_dl_0700B3A0) +DISPLAY_LIST(intro_seg7_dl_0700C6A0) +DISPLAY_LIST(jrb_seg7_dl_07002FD0) +DISPLAY_LIST(jrb_seg7_dl_07004940) +DISPLAY_LIST(jrb_seg7_dl_07004C78) +DISPLAY_LIST(jrb_seg7_dl_070058C8) +DISPLAY_LIST(jrb_seg7_dl_070069B0) +DISPLAY_LIST(jrb_seg7_dl_07007570) +DISPLAY_LIST(jrb_seg7_dl_07007718) +DISPLAY_LIST(jrb_seg7_dl_07007AC8) +DISPLAY_LIST(jrb_seg7_dl_07007DC8) +DISPLAY_LIST(jrb_seg7_dl_070080F8) +DISPLAY_LIST(jrb_seg7_dl_07008FD8) +DISPLAY_LIST(jrb_seg7_dl_070090B0) +DISPLAY_LIST(jrb_seg7_dl_07009A58) +DISPLAY_LIST(jrb_seg7_dl_07009B30) +DISPLAY_LIST(jrb_seg7_dl_0700A608) +DISPLAY_LIST(jrb_seg7_dl_0700AC68) +DISPLAY_LIST(jrb_seg7_dl_0700AE48) +DISPLAY_LIST(jrb_seg7_dl_0700AFB0) +DISPLAY_LIST(jrb_seg7_dl_0700EF00) +DISPLAY_LIST(jrb_seg7_dl_0700FE48) +DISPLAY_LIST(jrb_seg7_dl_07010548) DISPLAY_LIST(king_bobomb_seg5_dl_0500A4B8) DISPLAY_LIST(king_bobomb_seg5_dl_0500A4F0) DISPLAY_LIST(king_bobomb_seg5_dl_0500A5A0) @@ -612,6 +1116,19 @@ DISPLAY_LIST(klepto_seg5_dl_05005020) DISPLAY_LIST(klepto_seg5_dl_05005068) DISPLAY_LIST(klepto_seg5_dl_05005130) DISPLAY_LIST(klepto_seg5_dl_05005178) +DISPLAY_LIST(koopa_flag_seg6_dl_06000968) +DISPLAY_LIST(koopa_flag_seg6_dl_06000A08) +DISPLAY_LIST(koopa_flag_seg6_dl_06000AB8) +DISPLAY_LIST(koopa_flag_seg6_dl_06000AE8) +DISPLAY_LIST(koopa_flag_seg6_dl_06000B08) +DISPLAY_LIST(koopa_flag_seg6_dl_06000BC0) +DISPLAY_LIST(koopa_flag_seg6_dl_06000BF8) +DISPLAY_LIST(koopa_flag_seg6_dl_06000CA8) +DISPLAY_LIST(koopa_flag_seg6_dl_06000CE0) +DISPLAY_LIST(koopa_flag_seg6_dl_06000D90) +DISPLAY_LIST(koopa_flag_seg6_dl_06000DB0) +DISPLAY_LIST(koopa_flag_seg6_dl_06000E20) +DISPLAY_LIST(koopa_flag_seg6_dl_06000E38) DISPLAY_LIST(koopa_seg6_dl_06007658) DISPLAY_LIST(koopa_seg6_dl_060076B0) DISPLAY_LIST(koopa_seg6_dl_06007850) @@ -643,19 +1160,6 @@ DISPLAY_LIST(koopa_seg6_dl_0600BE10) DISPLAY_LIST(koopa_seg6_dl_0600BE80) DISPLAY_LIST(koopa_seg6_dl_0600C240) DISPLAY_LIST(koopa_seg6_dl_0600C498) -DISPLAY_LIST(koopa_flag_seg6_dl_06000968) -DISPLAY_LIST(koopa_flag_seg6_dl_06000A08) -DISPLAY_LIST(koopa_flag_seg6_dl_06000AB8) -DISPLAY_LIST(koopa_flag_seg6_dl_06000AE8) -DISPLAY_LIST(koopa_flag_seg6_dl_06000B08) -DISPLAY_LIST(koopa_flag_seg6_dl_06000BC0) -DISPLAY_LIST(koopa_flag_seg6_dl_06000BF8) -DISPLAY_LIST(koopa_flag_seg6_dl_06000CA8) -DISPLAY_LIST(koopa_flag_seg6_dl_06000CE0) -DISPLAY_LIST(koopa_flag_seg6_dl_06000D90) -DISPLAY_LIST(koopa_flag_seg6_dl_06000DB0) -DISPLAY_LIST(koopa_flag_seg6_dl_06000E20) -DISPLAY_LIST(koopa_flag_seg6_dl_06000E38) DISPLAY_LIST(koopa_shell_seg8_dl_08027108) DISPLAY_LIST(koopa_shell_seg8_dl_08027170) DISPLAY_LIST(koopa_shell_seg8_dl_08027258) @@ -665,6 +1169,20 @@ DISPLAY_LIST(koopa_shell_seg8_dl_080288E0) DISPLAY_LIST(koopa_shell_seg8_dl_08028978) DISPLAY_LIST(koopa_shell_seg8_dl_08028A20) DISPLAY_LIST(koopa_shell_seg8_dl_08028B78) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05012760) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05012890) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05012910) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05012EF0) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013160) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013298) +DISPLAY_LIST(lakitu_enemy_seg5_dl_050132D8) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013320) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013350) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013378) +DISPLAY_LIST(lakitu_enemy_seg5_dl_050134A8) +DISPLAY_LIST(lakitu_enemy_seg5_dl_050136A0) +DISPLAY_LIST(lakitu_enemy_seg5_dl_05013860) +DISPLAY_LIST(lakitu_enemy_seg5_dl_050138B0) DISPLAY_LIST(lakitu_seg6_dl_06003C80) DISPLAY_LIST(lakitu_seg6_dl_06003DB0) DISPLAY_LIST(lakitu_seg6_dl_06003E30) @@ -683,120 +1201,79 @@ DISPLAY_LIST(lakitu_seg6_dl_06005360) DISPLAY_LIST(lakitu_seg6_dl_06005598) DISPLAY_LIST(lakitu_seg6_dl_060055E8) DISPLAY_LIST(lakitu_seg6_dl_06005610) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05012760) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05012890) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05012910) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05012EF0) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05013160) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05013298) -DISPLAY_LIST(lakitu_enemy_seg5_dl_050132D8) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05013320) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05013350) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05013378) -DISPLAY_LIST(lakitu_enemy_seg5_dl_050134A8) -DISPLAY_LIST(lakitu_enemy_seg5_dl_050136A0) -DISPLAY_LIST(lakitu_enemy_seg5_dl_05013860) -DISPLAY_LIST(lakitu_enemy_seg5_dl_050138B0) DISPLAY_LIST(leaves_seg3_dl_0301CDE0) -DISPLAY_LIST(luigi_butt_dl) +DISPLAY_LIST(lll_dl_lava_floor) +DISPLAY_LIST(lll_dl_lavafall_volcano) +DISPLAY_LIST(lll_seg7_dl_070134E0) +DISPLAY_LIST(lll_seg7_dl_070137C0) +DISPLAY_LIST(lll_seg7_dl_070138F8) +DISPLAY_LIST(lll_seg7_dl_07013D28) +DISPLAY_LIST(lll_seg7_dl_07014788) +DISPLAY_LIST(lll_seg7_dl_07014BD8) +DISPLAY_LIST(lll_seg7_dl_07015458) +DISPLAY_LIST(lll_seg7_dl_07015C88) +DISPLAY_LIST(lll_seg7_dl_07015E20) +DISPLAY_LIST(lll_seg7_dl_07016250) +DISPLAY_LIST(lll_seg7_dl_070165C8) +DISPLAY_LIST(lll_seg7_dl_07016B00) +DISPLAY_LIST(lll_seg7_dl_070174E0) +DISPLAY_LIST(lll_seg7_dl_070178A8) +DISPLAY_LIST(lll_seg7_dl_07017B50) +DISPLAY_LIST(lll_seg7_dl_07017F40) +DISPLAY_LIST(lll_seg7_dl_07018380) +DISPLAY_LIST(lll_seg7_dl_07018680) +DISPLAY_LIST(lll_seg7_dl_07018A30) +DISPLAY_LIST(lll_seg7_dl_07018C90) +DISPLAY_LIST(lll_seg7_dl_07018EF8) +DISPLAY_LIST(lll_seg7_dl_07019160) +DISPLAY_LIST(lll_seg7_dl_070193E0) +DISPLAY_LIST(lll_seg7_dl_07019A08) +DISPLAY_LIST(lll_seg7_dl_07019C08) +DISPLAY_LIST(lll_seg7_dl_0701A010) +DISPLAY_LIST(lll_seg7_dl_0701A1F0) +DISPLAY_LIST(lll_seg7_dl_0701A388) +DISPLAY_LIST(lll_seg7_dl_0701A3B8) +DISPLAY_LIST(lll_seg7_dl_0701A3E8) +DISPLAY_LIST(lll_seg7_dl_0701A418) +DISPLAY_LIST(lll_seg7_dl_0701A448) +DISPLAY_LIST(lll_seg7_dl_0701A478) +DISPLAY_LIST(lll_seg7_dl_0701A4A8) +DISPLAY_LIST(lll_seg7_dl_0701A4D8) +DISPLAY_LIST(lll_seg7_dl_0701A508) +DISPLAY_LIST(lll_seg7_dl_0701A538) +DISPLAY_LIST(lll_seg7_dl_0701A568) +DISPLAY_LIST(lll_seg7_dl_0701A598) +DISPLAY_LIST(lll_seg7_dl_0701A5C8) +DISPLAY_LIST(lll_seg7_dl_0701A5F8) +DISPLAY_LIST(lll_seg7_dl_0701A628) +DISPLAY_LIST(lll_seg7_dl_0701A878) +DISPLAY_LIST(lll_seg7_dl_0701AD70) +DISPLAY_LIST(lll_seg7_dl_070235C8) +DISPLAY_LIST(lll_seg7_dl_07024C18) +DISPLAY_LIST(lll_seg7_dl_070255D8) +DISPLAY_LIST(lll_seg7_dl_07025A48) +DISPLAY_LIST(lll_seg7_dl_07025BD8) +DISPLAY_LIST(lll_seg7_dl_07025EC0) DISPLAY_LIST(luigi_butt) -DISPLAY_LIST(luigi_metal_butt) -DISPLAY_LIST(luigi_left_arm_shared_dl) -DISPLAY_LIST(luigi_left_arm) -DISPLAY_LIST(luigi_left_forearm_shared_dl) -DISPLAY_LIST(luigi_left_hand_closed_shared_dl) -DISPLAY_LIST(luigi_left_hand_closed) -DISPLAY_LIST(luigi_right_arm_shared_dl) -DISPLAY_LIST(luigi_right_arm) -DISPLAY_LIST(luigi_right_forearm_shared_dl) -DISPLAY_LIST(luigi_right_hand_closed_dl) -DISPLAY_LIST(luigi_right_hand_closed) -DISPLAY_LIST(luigi_metal_right_hand_closed) -DISPLAY_LIST(luigi_left_thigh_dl) -DISPLAY_LIST(luigi_left_thigh) -DISPLAY_LIST(luigi_metal_left_thigh) -DISPLAY_LIST(luigi_left_leg_shared_dl) -DISPLAY_LIST(luigi_left_foot_shared_dl) -DISPLAY_LIST(luigi_left_foot) -DISPLAY_LIST(luigi_right_thigh_shared_dl) -DISPLAY_LIST(luigi_right_thigh) -DISPLAY_LIST(luigi_right_leg_shared_dl) -DISPLAY_LIST(luigi_right_foot_dl) -DISPLAY_LIST(luigi_right_foot) -DISPLAY_LIST(luigi_metal_right_foot) -DISPLAY_LIST(luigi_yellow_button_dl) -DISPLAY_LIST(luigi_pants_overalls_shared_dl) -DISPLAY_LIST(luigi_tshirt_shared_dl) -DISPLAY_LIST(luigi_torso_dl) -DISPLAY_LIST(luigi_torso) -DISPLAY_LIST(luigi_metal_torso_shared_dl) -DISPLAY_LIST(luigi_l_logo_dl) -DISPLAY_LIST(luigi_eyes_cap_on_dl) -DISPLAY_LIST(luigi_hair_sideburn_cap_on_dl) -DISPLAY_LIST(luigi_mustache_cap_on_dl) -DISPLAY_LIST(luigi_face_part_cap_on_dl) -DISPLAY_LIST(luigi_face_cap_dl) -DISPLAY_LIST(luigi_face_back_hair_cap_on_dl) -DISPLAY_LIST(luigi_hair_sideburn_decal_cap_on) -DISPLAY_LIST(luigi_l_logo_decal) -DISPLAY_LIST(luigi_face_cap_on_dl) -DISPLAY_LIST(luigi_cap_on_eyes_front) -DISPLAY_LIST(luigi_cap_on_eyes_half_closed) -DISPLAY_LIST(luigi_cap_on_eyes_closed) -DISPLAY_LIST(luigi_cap_on_eyes_right) -DISPLAY_LIST(luigi_cap_on_eyes_left) -DISPLAY_LIST(luigi_cap_on_eyes_up) -DISPLAY_LIST(luigi_cap_on_eyes_down) -DISPLAY_LIST(luigi_cap_on_eyes_dead) -DISPLAY_LIST(luigi_metal_cap_on_shared_dl) -DISPLAY_LIST(luigi_eyes_cap_off_dl) -DISPLAY_LIST(luigi_mustache_cap_off_dl) -DISPLAY_LIST(luigi_hair_sideburn_cap_off_dl) -DISPLAY_LIST(luigi_face_part_cap_off_dl) -DISPLAY_LIST(luigi_face_hair_cap_off_dl) -DISPLAY_LIST(luigi_hair_sideburn_decal_cap_off) -DISPLAY_LIST(luigi_face_cap_off_dl) +DISPLAY_LIST(luigi_butt_dl) +DISPLAY_LIST(luigi_cap_l_logo_decal) +DISPLAY_LIST(luigi_cap_material_revert_render_settings) +DISPLAY_LIST(luigi_cap_off_eyes_closed) +DISPLAY_LIST(luigi_cap_off_eyes_dead) +DISPLAY_LIST(luigi_cap_off_eyes_down) DISPLAY_LIST(luigi_cap_off_eyes_front) DISPLAY_LIST(luigi_cap_off_eyes_half_closed) -DISPLAY_LIST(luigi_cap_off_eyes_closed) -DISPLAY_LIST(luigi_cap_off_eyes_right) DISPLAY_LIST(luigi_cap_off_eyes_left) +DISPLAY_LIST(luigi_cap_off_eyes_right) DISPLAY_LIST(luigi_cap_off_eyes_up) -DISPLAY_LIST(luigi_cap_off_eyes_down) -DISPLAY_LIST(luigi_cap_off_eyes_dead) -DISPLAY_LIST(luigi_metal_cap_off_shared_dl) -DISPLAY_LIST(luigi_left_hand_open_shared_dl) -DISPLAY_LIST(luigi_left_hand_open) -DISPLAY_LIST(luigi_right_hand_open_dl) -DISPLAY_LIST(luigi_right_hand_open) -DISPLAY_LIST(luigi_metal_right_hand_open) -DISPLAY_LIST(luigi_right_hand_cap_l_logo_dl) -DISPLAY_LIST(luigi_right_hand_cap_top_dl) -DISPLAY_LIST(luigi_right_hand_cap_hand_position_dl) -DISPLAY_LIST(luigi_right_hand_cap_bottom_dl) -DISPLAY_LIST(luigi_right_hand_cap_decal) -DISPLAY_LIST(luigi_right_hand_cap_dl) -DISPLAY_LIST(luigi_right_hand_cap_wings_half_1_dl) -DISPLAY_LIST(luigi_right_hand_cap_wings_half_2_dl) -DISPLAY_LIST(luigi_right_hand_cap_wings_intial_dl) -DISPLAY_LIST(luigi_right_hand_cap_wings_transparent_intial_dl) -DISPLAY_LIST(luigi_right_hand_cap_metal_wings_intial_dl) -DISPLAY_LIST(luigi_right_hand_cap_wings_end_dl) -DISPLAY_LIST(luigi_right_hand_cap) -DISPLAY_LIST(luigi_right_hand_cap_wings) -DISPLAY_LIST(luigi_right_hand_cap_wings_transparent) -DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl) -DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl_wings) -DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl_wings_transparent) -DISPLAY_LIST(luigi_right_hand_peace_shared_dl) -DISPLAY_LIST(luigi_right_hand_peace) -DISPLAY_LIST(luigi_wings_half_1_dl) -DISPLAY_LIST(luigi_wings_half_2_dl) -DISPLAY_LIST(luigi_cap_wings) -DISPLAY_LIST(luigi_cap_wings_transparent) -DISPLAY_LIST(luigi_metal_cap_wings) -DISPLAY_LIST(luigi_metal_cap_wings_transparent) -DISPLAY_LIST(luigi_material_revert_render_settings) +DISPLAY_LIST(luigi_cap_on_eyes_closed) +DISPLAY_LIST(luigi_cap_on_eyes_dead) +DISPLAY_LIST(luigi_cap_on_eyes_down) +DISPLAY_LIST(luigi_cap_on_eyes_front) +DISPLAY_LIST(luigi_cap_on_eyes_half_closed) +DISPLAY_LIST(luigi_cap_on_eyes_left) +DISPLAY_LIST(luigi_cap_on_eyes_right) +DISPLAY_LIST(luigi_cap_on_eyes_up) DISPLAY_LIST(luigi_cap_seg3_dl_03022B30) DISPLAY_LIST(luigi_cap_seg3_dl_03022B68) DISPLAY_LIST(luigi_cap_seg3_dl_03022CC8) @@ -806,14 +1283,93 @@ DISPLAY_LIST(luigi_cap_seg3_dl_03022EA8) DISPLAY_LIST(luigi_cap_seg3_dl_03022ED8) DISPLAY_LIST(luigi_cap_seg3_dl_03022ED8_metal) DISPLAY_LIST(luigi_cap_seg3_dl_03022F20) -DISPLAY_LIST(luigi_cap_l_logo_decal) DISPLAY_LIST(luigi_cap_seg3_dl_03022F48) DISPLAY_LIST(luigi_cap_seg3_dl_03022FF8) DISPLAY_LIST(luigi_cap_seg3_dl_030230B0) DISPLAY_LIST(luigi_cap_seg3_dl_03023108) DISPLAY_LIST(luigi_cap_seg3_dl_03023160) DISPLAY_LIST(luigi_cap_seg3_dl_03023298) -DISPLAY_LIST(luigi_cap_material_revert_render_settings) +DISPLAY_LIST(luigi_cap_wings) +DISPLAY_LIST(luigi_cap_wings_transparent) +DISPLAY_LIST(luigi_eyes_cap_off_dl) +DISPLAY_LIST(luigi_eyes_cap_on_dl) +DISPLAY_LIST(luigi_face_back_hair_cap_on_dl) +DISPLAY_LIST(luigi_face_cap_dl) +DISPLAY_LIST(luigi_face_cap_off_dl) +DISPLAY_LIST(luigi_face_cap_on_dl) +DISPLAY_LIST(luigi_face_hair_cap_off_dl) +DISPLAY_LIST(luigi_face_part_cap_off_dl) +DISPLAY_LIST(luigi_face_part_cap_on_dl) +DISPLAY_LIST(luigi_hair_sideburn_cap_off_dl) +DISPLAY_LIST(luigi_hair_sideburn_cap_on_dl) +DISPLAY_LIST(luigi_hair_sideburn_decal_cap_off) +DISPLAY_LIST(luigi_hair_sideburn_decal_cap_on) +DISPLAY_LIST(luigi_l_logo_decal) +DISPLAY_LIST(luigi_l_logo_dl) +DISPLAY_LIST(luigi_left_arm) +DISPLAY_LIST(luigi_left_arm_shared_dl) +DISPLAY_LIST(luigi_left_foot) +DISPLAY_LIST(luigi_left_foot_shared_dl) +DISPLAY_LIST(luigi_left_forearm_shared_dl) +DISPLAY_LIST(luigi_left_hand_closed) +DISPLAY_LIST(luigi_left_hand_closed_shared_dl) +DISPLAY_LIST(luigi_left_hand_open) +DISPLAY_LIST(luigi_left_hand_open_shared_dl) +DISPLAY_LIST(luigi_left_leg_shared_dl) +DISPLAY_LIST(luigi_left_thigh) +DISPLAY_LIST(luigi_left_thigh_dl) +DISPLAY_LIST(luigi_material_revert_render_settings) +DISPLAY_LIST(luigi_metal_butt) +DISPLAY_LIST(luigi_metal_cap_off_shared_dl) +DISPLAY_LIST(luigi_metal_cap_on_shared_dl) +DISPLAY_LIST(luigi_metal_cap_wings) +DISPLAY_LIST(luigi_metal_cap_wings_transparent) +DISPLAY_LIST(luigi_metal_left_thigh) +DISPLAY_LIST(luigi_metal_right_foot) +DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl) +DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl_wings) +DISPLAY_LIST(luigi_metal_right_hand_cap_shared_dl_wings_transparent) +DISPLAY_LIST(luigi_metal_right_hand_closed) +DISPLAY_LIST(luigi_metal_right_hand_open) +DISPLAY_LIST(luigi_metal_torso_shared_dl) +DISPLAY_LIST(luigi_mustache_cap_off_dl) +DISPLAY_LIST(luigi_mustache_cap_on_dl) +DISPLAY_LIST(luigi_pants_overalls_shared_dl) +DISPLAY_LIST(luigi_right_arm) +DISPLAY_LIST(luigi_right_arm_shared_dl) +DISPLAY_LIST(luigi_right_foot) +DISPLAY_LIST(luigi_right_foot_dl) +DISPLAY_LIST(luigi_right_forearm_shared_dl) +DISPLAY_LIST(luigi_right_hand_cap) +DISPLAY_LIST(luigi_right_hand_cap_bottom_dl) +DISPLAY_LIST(luigi_right_hand_cap_decal) +DISPLAY_LIST(luigi_right_hand_cap_dl) +DISPLAY_LIST(luigi_right_hand_cap_hand_position_dl) +DISPLAY_LIST(luigi_right_hand_cap_l_logo_dl) +DISPLAY_LIST(luigi_right_hand_cap_metal_wings_intial_dl) +DISPLAY_LIST(luigi_right_hand_cap_top_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings) +DISPLAY_LIST(luigi_right_hand_cap_wings_end_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_half_1_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_half_2_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_intial_dl) +DISPLAY_LIST(luigi_right_hand_cap_wings_transparent) +DISPLAY_LIST(luigi_right_hand_cap_wings_transparent_intial_dl) +DISPLAY_LIST(luigi_right_hand_closed) +DISPLAY_LIST(luigi_right_hand_closed_dl) +DISPLAY_LIST(luigi_right_hand_open) +DISPLAY_LIST(luigi_right_hand_open_dl) +DISPLAY_LIST(luigi_right_hand_peace) +DISPLAY_LIST(luigi_right_hand_peace_shared_dl) +DISPLAY_LIST(luigi_right_leg_shared_dl) +DISPLAY_LIST(luigi_right_thigh) +DISPLAY_LIST(luigi_right_thigh_shared_dl) +DISPLAY_LIST(luigi_torso) +DISPLAY_LIST(luigi_torso_dl) +DISPLAY_LIST(luigi_tshirt_shared_dl) +DISPLAY_LIST(luigi_wings_half_1_dl) +DISPLAY_LIST(luigi_wings_half_2_dl) +DISPLAY_LIST(luigi_yellow_button_dl) DISPLAY_LIST(mad_piano_seg5_dl_05008B68) DISPLAY_LIST(mad_piano_seg5_dl_05008BD0) DISPLAY_LIST(mad_piano_seg5_dl_05008CB0) @@ -864,105 +1420,26 @@ DISPLAY_LIST(manta_seg5_dl_05006750) DISPLAY_LIST(manta_seg5_dl_05006B08) DISPLAY_LIST(manta_seg5_dl_05006B70) DISPLAY_LIST(manta_seg5_dl_05006C08) -DISPLAY_LIST(mario_butt_dl) DISPLAY_LIST(mario_butt) -DISPLAY_LIST(mario_metal_butt) -DISPLAY_LIST(mario_left_arm_shared_dl) -DISPLAY_LIST(mario_left_arm) -DISPLAY_LIST(mario_left_forearm_shared_dl) -DISPLAY_LIST(mario_left_hand_closed_shared_dl) -DISPLAY_LIST(mario_left_hand_closed) -DISPLAY_LIST(mario_right_arm_shared_dl) -DISPLAY_LIST(mario_right_arm) -DISPLAY_LIST(mario_right_forearm_shared_dl) -DISPLAY_LIST(mario_right_hand_closed_dl) -DISPLAY_LIST(mario_right_hand_closed) -DISPLAY_LIST(mario_metal_right_hand_closed) -DISPLAY_LIST(mario_left_thigh_dl) -DISPLAY_LIST(mario_left_thigh) -DISPLAY_LIST(mario_metal_left_thigh) -DISPLAY_LIST(mario_left_leg_shared_dl) -DISPLAY_LIST(mario_left_foot_shared_dl) -DISPLAY_LIST(mario_left_foot) -DISPLAY_LIST(mario_right_thigh_shared_dl) -DISPLAY_LIST(mario_right_thigh) -DISPLAY_LIST(mario_right_leg_shared_dl) -DISPLAY_LIST(mario_right_foot_dl) -DISPLAY_LIST(mario_right_foot) -DISPLAY_LIST(mario_metal_right_foot) -DISPLAY_LIST(mario_yellow_button_dl) -DISPLAY_LIST(mario_pants_overalls_shared_dl) -DISPLAY_LIST(mario_tshirt_shared_dl) -DISPLAY_LIST(mario_torso_dl) -DISPLAY_LIST(mario_torso) -DISPLAY_LIST(mario_metal_torso_shared_dl) -DISPLAY_LIST(mario_m_logo_dl) -DISPLAY_LIST(mario_eyes_cap_on_dl) -DISPLAY_LIST(mario_hair_sideburn_cap_on_dl) -DISPLAY_LIST(mario_mustache_cap_on_dl) -DISPLAY_LIST(mario_face_part_cap_on_dl) -DISPLAY_LIST(mario_face_cap_dl) -DISPLAY_LIST(mario_face_back_hair_cap_on_dl) -DISPLAY_LIST(mario_hair_sideburn_decal_cap_on) -DISPLAY_LIST(mario_m_logo_decal) -DISPLAY_LIST(mario_face_cap_on_dl) -DISPLAY_LIST(mario_cap_on_eyes_front) -DISPLAY_LIST(mario_cap_on_eyes_half_closed) -DISPLAY_LIST(mario_cap_on_eyes_closed) -DISPLAY_LIST(mario_cap_on_eyes_right) -DISPLAY_LIST(mario_cap_on_eyes_left) -DISPLAY_LIST(mario_cap_on_eyes_up) -DISPLAY_LIST(mario_cap_on_eyes_down) -DISPLAY_LIST(mario_cap_on_eyes_dead) -DISPLAY_LIST(mario_metal_cap_on_shared_dl) -DISPLAY_LIST(mario_eyes_cap_off_dl) -DISPLAY_LIST(mario_mustache_cap_off_dl) -DISPLAY_LIST(mario_hair_sideburn_cap_off_dl) -DISPLAY_LIST(mario_face_part_cap_off_dl) -DISPLAY_LIST(mario_face_hair_cap_off_dl) -DISPLAY_LIST(mario_hair_sideburn_decal_cap_off) -DISPLAY_LIST(mario_face_cap_off_dl) +DISPLAY_LIST(mario_butt_dl) +DISPLAY_LIST(mario_cap_m_logo_decal) +DISPLAY_LIST(mario_cap_material_revert_render_settings) +DISPLAY_LIST(mario_cap_off_eyes_closed) +DISPLAY_LIST(mario_cap_off_eyes_dead) +DISPLAY_LIST(mario_cap_off_eyes_down) DISPLAY_LIST(mario_cap_off_eyes_front) DISPLAY_LIST(mario_cap_off_eyes_half_closed) -DISPLAY_LIST(mario_cap_off_eyes_closed) -DISPLAY_LIST(mario_cap_off_eyes_right) DISPLAY_LIST(mario_cap_off_eyes_left) +DISPLAY_LIST(mario_cap_off_eyes_right) DISPLAY_LIST(mario_cap_off_eyes_up) -DISPLAY_LIST(mario_cap_off_eyes_down) -DISPLAY_LIST(mario_cap_off_eyes_dead) -DISPLAY_LIST(mario_metal_cap_off_shared_dl) -DISPLAY_LIST(mario_left_hand_open_shared_dl) -DISPLAY_LIST(mario_left_hand_open) -DISPLAY_LIST(mario_right_hand_open_dl) -DISPLAY_LIST(mario_right_hand_open) -DISPLAY_LIST(mario_metal_right_hand_open) -DISPLAY_LIST(mario_right_hand_cap_m_logo_dl) -DISPLAY_LIST(mario_right_hand_cap_top_dl) -DISPLAY_LIST(mario_right_hand_cap_hand_position_dl) -DISPLAY_LIST(mario_right_hand_cap_bottom_dl) -DISPLAY_LIST(mario_right_hand_cap_decal) -DISPLAY_LIST(mario_right_hand_cap_dl) -DISPLAY_LIST(mario_right_hand_cap_wings_half_1_dl) -DISPLAY_LIST(mario_right_hand_cap_wings_half_2_dl) -DISPLAY_LIST(mario_right_hand_cap_wings_intial_dl) -DISPLAY_LIST(mario_right_hand_cap_wings_transparent_intial_dl) -DISPLAY_LIST(mario_right_hand_cap_metal_wings_intial_dl) -DISPLAY_LIST(mario_right_hand_cap_wings_end_dl) -DISPLAY_LIST(mario_right_hand_cap) -DISPLAY_LIST(mario_right_hand_cap_wings) -DISPLAY_LIST(mario_right_hand_cap_wings_transparent) -DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl) -DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl_wings) -DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl_wings_transparent) -DISPLAY_LIST(mario_right_hand_peace_shared_dl) -DISPLAY_LIST(mario_right_hand_peace) -DISPLAY_LIST(mario_wings_half_1_dl) -DISPLAY_LIST(mario_wings_half_2_dl) -DISPLAY_LIST(mario_cap_wings) -DISPLAY_LIST(mario_cap_wings_transparent) -DISPLAY_LIST(mario_metal_cap_wings) -DISPLAY_LIST(mario_metal_cap_wings_transparent) -DISPLAY_LIST(mario_material_revert_render_settings) +DISPLAY_LIST(mario_cap_on_eyes_closed) +DISPLAY_LIST(mario_cap_on_eyes_dead) +DISPLAY_LIST(mario_cap_on_eyes_down) +DISPLAY_LIST(mario_cap_on_eyes_front) +DISPLAY_LIST(mario_cap_on_eyes_half_closed) +DISPLAY_LIST(mario_cap_on_eyes_left) +DISPLAY_LIST(mario_cap_on_eyes_right) +DISPLAY_LIST(mario_cap_on_eyes_up) DISPLAY_LIST(mario_cap_seg3_dl_03022B30) DISPLAY_LIST(mario_cap_seg3_dl_03022B68) DISPLAY_LIST(mario_cap_seg3_dl_03022CC8) @@ -972,16 +1449,147 @@ DISPLAY_LIST(mario_cap_seg3_dl_03022EA8) DISPLAY_LIST(mario_cap_seg3_dl_03022ED8) DISPLAY_LIST(mario_cap_seg3_dl_03022ED8_metal) DISPLAY_LIST(mario_cap_seg3_dl_03022F20) -DISPLAY_LIST(mario_cap_m_logo_decal) DISPLAY_LIST(mario_cap_seg3_dl_03022F48) DISPLAY_LIST(mario_cap_seg3_dl_03022FF8) DISPLAY_LIST(mario_cap_seg3_dl_030230B0) DISPLAY_LIST(mario_cap_seg3_dl_03023108) DISPLAY_LIST(mario_cap_seg3_dl_03023160) DISPLAY_LIST(mario_cap_seg3_dl_03023298) -DISPLAY_LIST(mario_cap_material_revert_render_settings) -DISPLAY_LIST(metal_box_seg8_dl_08024B18) +DISPLAY_LIST(mario_cap_wings) +DISPLAY_LIST(mario_cap_wings_transparent) +DISPLAY_LIST(mario_eyes_cap_off_dl) +DISPLAY_LIST(mario_eyes_cap_on_dl) +DISPLAY_LIST(mario_face_back_hair_cap_on_dl) +DISPLAY_LIST(mario_face_cap_dl) +DISPLAY_LIST(mario_face_cap_off_dl) +DISPLAY_LIST(mario_face_cap_on_dl) +DISPLAY_LIST(mario_face_hair_cap_off_dl) +DISPLAY_LIST(mario_face_part_cap_off_dl) +DISPLAY_LIST(mario_face_part_cap_on_dl) +DISPLAY_LIST(mario_hair_sideburn_cap_off_dl) +DISPLAY_LIST(mario_hair_sideburn_cap_on_dl) +DISPLAY_LIST(mario_hair_sideburn_decal_cap_off) +DISPLAY_LIST(mario_hair_sideburn_decal_cap_on) +DISPLAY_LIST(mario_left_arm) +DISPLAY_LIST(mario_left_arm_shared_dl) +DISPLAY_LIST(mario_left_foot) +DISPLAY_LIST(mario_left_foot_shared_dl) +DISPLAY_LIST(mario_left_forearm_shared_dl) +DISPLAY_LIST(mario_left_hand_closed) +DISPLAY_LIST(mario_left_hand_closed_shared_dl) +DISPLAY_LIST(mario_left_hand_open) +DISPLAY_LIST(mario_left_hand_open_shared_dl) +DISPLAY_LIST(mario_left_leg_shared_dl) +DISPLAY_LIST(mario_left_thigh) +DISPLAY_LIST(mario_left_thigh_dl) +DISPLAY_LIST(mario_m_logo_decal) +DISPLAY_LIST(mario_m_logo_dl) +DISPLAY_LIST(mario_material_revert_render_settings) +DISPLAY_LIST(mario_metal_butt) +DISPLAY_LIST(mario_metal_cap_off_shared_dl) +DISPLAY_LIST(mario_metal_cap_on_shared_dl) +DISPLAY_LIST(mario_metal_cap_wings) +DISPLAY_LIST(mario_metal_cap_wings_transparent) +DISPLAY_LIST(mario_metal_left_thigh) +DISPLAY_LIST(mario_metal_right_foot) +DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl) +DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl_wings) +DISPLAY_LIST(mario_metal_right_hand_cap_shared_dl_wings_transparent) +DISPLAY_LIST(mario_metal_right_hand_closed) +DISPLAY_LIST(mario_metal_right_hand_open) +DISPLAY_LIST(mario_metal_torso_shared_dl) +DISPLAY_LIST(mario_mustache_cap_off_dl) +DISPLAY_LIST(mario_mustache_cap_on_dl) +DISPLAY_LIST(mario_pants_overalls_shared_dl) +DISPLAY_LIST(mario_right_arm) +DISPLAY_LIST(mario_right_arm_shared_dl) +DISPLAY_LIST(mario_right_foot) +DISPLAY_LIST(mario_right_foot_dl) +DISPLAY_LIST(mario_right_forearm_shared_dl) +DISPLAY_LIST(mario_right_hand_cap) +DISPLAY_LIST(mario_right_hand_cap_bottom_dl) +DISPLAY_LIST(mario_right_hand_cap_decal) +DISPLAY_LIST(mario_right_hand_cap_dl) +DISPLAY_LIST(mario_right_hand_cap_hand_position_dl) +DISPLAY_LIST(mario_right_hand_cap_m_logo_dl) +DISPLAY_LIST(mario_right_hand_cap_metal_wings_intial_dl) +DISPLAY_LIST(mario_right_hand_cap_top_dl) +DISPLAY_LIST(mario_right_hand_cap_wings) +DISPLAY_LIST(mario_right_hand_cap_wings_end_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_half_1_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_half_2_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_intial_dl) +DISPLAY_LIST(mario_right_hand_cap_wings_transparent) +DISPLAY_LIST(mario_right_hand_cap_wings_transparent_intial_dl) +DISPLAY_LIST(mario_right_hand_closed) +DISPLAY_LIST(mario_right_hand_closed_dl) +DISPLAY_LIST(mario_right_hand_open) +DISPLAY_LIST(mario_right_hand_open_dl) +DISPLAY_LIST(mario_right_hand_peace) +DISPLAY_LIST(mario_right_hand_peace_shared_dl) +DISPLAY_LIST(mario_right_leg_shared_dl) +DISPLAY_LIST(mario_right_thigh) +DISPLAY_LIST(mario_right_thigh_shared_dl) +DISPLAY_LIST(mario_torso) +DISPLAY_LIST(mario_torso_dl) +DISPLAY_LIST(mario_tshirt_shared_dl) +DISPLAY_LIST(mario_wings_half_1_dl) +DISPLAY_LIST(mario_wings_half_2_dl) +DISPLAY_LIST(mario_yellow_button_dl) +DISPLAY_LIST(mat_error_model_f3d_material) +DISPLAY_LIST(mat_revert_toad_cap_metal) +DISPLAY_LIST(mat_revert_toad_cap_metal_wing) +DISPLAY_LIST(mat_revert_toad_cap_metal_wing_tip) +DISPLAY_LIST(mat_revert_toad_cap_wing) +DISPLAY_LIST(mat_revert_toad_cap_wing_tip) +DISPLAY_LIST(mat_revert_toad_player_eyes_center) +DISPLAY_LIST(mat_revert_toad_player_eyes_closed) +DISPLAY_LIST(mat_revert_toad_player_eyes_dead) +DISPLAY_LIST(mat_revert_toad_player_eyes_down) +DISPLAY_LIST(mat_revert_toad_player_eyes_half_closed) +DISPLAY_LIST(mat_revert_toad_player_eyes_left) +DISPLAY_LIST(mat_revert_toad_player_eyes_right) +DISPLAY_LIST(mat_revert_toad_player_eyes_up) +DISPLAY_LIST(mat_revert_toad_player_hair) +DISPLAY_LIST(mat_revert_toad_player_metal) +DISPLAY_LIST(mat_revert_toad_player_metal_vest) +DISPLAY_LIST(mat_revert_toad_player_metal_wing) +DISPLAY_LIST(mat_revert_toad_player_metal_wing_tip) +DISPLAY_LIST(mat_revert_toad_player_vest) +DISPLAY_LIST(mat_revert_toad_player_wing) +DISPLAY_LIST(mat_revert_toad_player_wing_tip) +DISPLAY_LIST(mat_toad_cap_base) +DISPLAY_LIST(mat_toad_cap_inside) +DISPLAY_LIST(mat_toad_cap_metal) +DISPLAY_LIST(mat_toad_cap_metal_wing) +DISPLAY_LIST(mat_toad_cap_metal_wing_tip) +DISPLAY_LIST(mat_toad_cap_spots) +DISPLAY_LIST(mat_toad_cap_wing) +DISPLAY_LIST(mat_toad_cap_wing_tip) +DISPLAY_LIST(mat_toad_player_beige) +DISPLAY_LIST(mat_toad_player_brown) +DISPLAY_LIST(mat_toad_player_cap_base) +DISPLAY_LIST(mat_toad_player_cap_spots) +DISPLAY_LIST(mat_toad_player_eyes_center) +DISPLAY_LIST(mat_toad_player_eyes_closed) +DISPLAY_LIST(mat_toad_player_eyes_dead) +DISPLAY_LIST(mat_toad_player_eyes_down) +DISPLAY_LIST(mat_toad_player_eyes_half_closed) +DISPLAY_LIST(mat_toad_player_eyes_left) +DISPLAY_LIST(mat_toad_player_eyes_right) +DISPLAY_LIST(mat_toad_player_eyes_up) +DISPLAY_LIST(mat_toad_player_hair) +DISPLAY_LIST(mat_toad_player_metal) +DISPLAY_LIST(mat_toad_player_metal_vest) +DISPLAY_LIST(mat_toad_player_metal_wing) +DISPLAY_LIST(mat_toad_player_metal_wing_tip) +DISPLAY_LIST(mat_toad_player_toad_cap_inside) +DISPLAY_LIST(mat_toad_player_vest) +DISPLAY_LIST(mat_toad_player_white) +DISPLAY_LIST(mat_toad_player_wing) +DISPLAY_LIST(mat_toad_player_wing_tip) DISPLAY_LIST(metal_box_dl) +DISPLAY_LIST(metal_box_seg8_dl_08024B18) DISPLAY_LIST(mips_seg6_dl_06010600) DISPLAY_LIST(mips_seg6_dl_06010748) DISPLAY_LIST(mips_seg6_dl_060107B8) @@ -1019,6 +1627,7 @@ DISPLAY_LIST(moneybag_seg6_dl_06005708) DISPLAY_LIST(moneybag_seg6_dl_06005750) DISPLAY_LIST(moneybag_seg6_dl_06005980) DISPLAY_LIST(moneybag_seg6_dl_060059F0) +DISPLAY_LIST(monty_mole_hole_seg5_dl_05000840) DISPLAY_LIST(monty_mole_seg5_dl_05003208) DISPLAY_LIST(monty_mole_seg5_dl_050032A0) DISPLAY_LIST(monty_mole_seg5_dl_05003438) @@ -1045,7 +1654,6 @@ DISPLAY_LIST(monty_mole_seg5_dl_05004BE0) DISPLAY_LIST(monty_mole_seg5_dl_05004C00) DISPLAY_LIST(monty_mole_seg5_dl_05004CE8) DISPLAY_LIST(monty_mole_seg5_dl_05004D30) -DISPLAY_LIST(monty_mole_hole_seg5_dl_05000840) DISPLAY_LIST(mr_i_eyeball_seg6_dl_06002080) DISPLAY_LIST(mr_i_iris_seg6_dl_06004170) DISPLAY_LIST(mr_i_iris_seg6_dl_060041D8) @@ -1054,7 +1662,6 @@ DISPLAY_LIST(mr_i_iris_seg6_dl_06004208) DISPLAY_LIST(mr_i_iris_seg6_dl_06004220) DISPLAY_LIST(mushroom_1up_seg3_dl_0302A628) DISPLAY_LIST(mushroom_1up_seg3_dl_0302A660) -DISPLAY_LIST(geo_num3_switch) DISPLAY_LIST(peach_seg5_dl_05005648) DISPLAY_LIST(peach_seg5_dl_05005750) DISPLAY_LIST(peach_seg5_dl_05005780) @@ -1077,7 +1684,6 @@ DISPLAY_LIST(peach_seg5_dl_05006798) DISPLAY_LIST(peach_seg5_dl_05006A18) DISPLAY_LIST(peach_seg5_dl_05006FA8) DISPLAY_LIST(peach_seg5_dl_05007230) -DISPLAY_LIST(peach_seg5_us_dl_05007288) DISPLAY_LIST(peach_seg5_dl_05007810) DISPLAY_LIST(peach_seg5_dl_05007AB8) DISPLAY_LIST(peach_seg5_dl_05007CE8) @@ -1104,6 +1710,7 @@ DISPLAY_LIST(peach_seg5_dl_050097C0) DISPLAY_LIST(peach_seg5_dl_05009940) DISPLAY_LIST(peach_seg5_dl_05009E20) DISPLAY_LIST(peach_seg5_dl_0500A0A8) +DISPLAY_LIST(peach_seg5_us_dl_05007288) DISPLAY_LIST(peach_seg5_us_dl_0500A188) DISPLAY_LIST(pebble_seg3_dl_0301CB00) DISPLAY_LIST(penguin_seg5_dl_05006188) @@ -1156,12 +1763,55 @@ DISPLAY_LIST(pokey_seg5_dl_050130B0) DISPLAY_LIST(poundable_pole_seg6_dl_060022F0) DISPLAY_LIST(poundable_pole_seg6_dl_06002358) DISPLAY_LIST(poundable_pole_seg6_dl_06002410) -DISPLAY_LIST(dl_power_meter_base) -DISPLAY_LIST(dl_power_meter_health_segments_begin) -DISPLAY_LIST(dl_power_meter_health_segments_end) +DISPLAY_LIST(pss_seg7_dl_0700A7C0) +DISPLAY_LIST(pss_seg7_dl_0700AFA8) +DISPLAY_LIST(pss_seg7_dl_0700B3F0) +DISPLAY_LIST(pss_seg7_dl_0700D338) +DISPLAY_LIST(pss_seg7_dl_0700DAD8) +DISPLAY_LIST(pss_seg7_dl_0700E2B0) +DISPLAY_LIST(pss_seg7_dl_0700E3E8) DISPLAY_LIST(purple_switch_seg8_dl_0800C668) DISPLAY_LIST(purple_switch_seg8_dl_0800C6E0) DISPLAY_LIST(purple_switch_seg8_dl_0800C718) +DISPLAY_LIST(rr_seg7_dl_07002CC8) +DISPLAY_LIST(rr_seg7_dl_07002E80) +DISPLAY_LIST(rr_seg7_dl_07004A98) +DISPLAY_LIST(rr_seg7_dl_07005C80) +DISPLAY_LIST(rr_seg7_dl_07007E60) +DISPLAY_LIST(rr_seg7_dl_07008258) +DISPLAY_LIST(rr_seg7_dl_07008E20) +DISPLAY_LIST(rr_seg7_dl_0700BB48) +DISPLAY_LIST(rr_seg7_dl_0700CA38) +DISPLAY_LIST(rr_seg7_dl_0700DBD8) +DISPLAY_LIST(rr_seg7_dl_0700DE88) +DISPLAY_LIST(rr_seg7_dl_0700E178) +DISPLAY_LIST(rr_seg7_dl_0700E830) +DISPLAY_LIST(rr_seg7_dl_07012758) +DISPLAY_LIST(rr_seg7_dl_07014508) +DISPLAY_LIST(rr_seg7_dl_07014F30) +DISPLAY_LIST(rr_seg7_dl_070156B8) +DISPLAY_LIST(rr_seg7_dl_07015C68) +DISPLAY_LIST(rr_seg7_dl_07017530) +DISPLAY_LIST(rr_seg7_dl_07018B58) +DISPLAY_LIST(rr_seg7_dl_070191A0) +DISPLAY_LIST(rr_seg7_dl_07019AE0) +DISPLAY_LIST(rr_seg7_dl_0701A568) +DISPLAY_LIST(rr_seg7_dl_0701A680) +DISPLAY_LIST(rr_seg7_dl_0701AB78) +DISPLAY_LIST(rr_seg7_dl_0701ADF8) +DISPLAY_LIST(rr_seg7_dl_0701AFA0) +DISPLAY_LIST(rr_seg7_dl_0701B220) +DISPLAY_LIST(rr_seg7_dl_0701B4C0) +DISPLAY_LIST(rr_seg7_dl_0701B848) +DISPLAY_LIST(rr_seg7_dl_0701B980) +DISPLAY_LIST(rr_seg7_dl_0701BD08) +DISPLAY_LIST(rr_seg7_dl_0701E670) +DISPLAY_LIST(rr_seg7_dl_07021100) +DISPLAY_LIST(rr_seg7_dl_07023B90) +DISPLAY_LIST(rr_seg7_dl_07026630) +DISPLAY_LIST(rr_seg7_dl_07028FA8) +DISPLAY_LIST(sa_seg7_dl_07002DE8) +DISPLAY_LIST(sa_seg7_dl_07002FD0) DISPLAY_LIST(sand_seg3_dl_0302BCD0) DISPLAY_LIST(scuttlebug_seg6_dl_06013988) DISPLAY_LIST(scuttlebug_seg6_dl_060139C0) @@ -1219,11 +1869,33 @@ DISPLAY_LIST(skeeter_seg6_dl_06004678) DISPLAY_LIST(skeeter_seg6_dl_06004A40) DISPLAY_LIST(skeeter_seg6_dl_06005328) DISPLAY_LIST(skeeter_seg6_dl_06005358) +DISPLAY_LIST(sl_seg7_dl_07005478) +DISPLAY_LIST(sl_seg7_dl_070056B0) +DISPLAY_LIST(sl_seg7_dl_070073D0) +DISPLAY_LIST(sl_seg7_dl_07007880) +DISPLAY_LIST(sl_seg7_dl_070088B0) +DISPLAY_LIST(sl_seg7_dl_07008D58) +DISPLAY_LIST(sl_seg7_dl_0700A5A0) +DISPLAY_LIST(sl_seg7_dl_0700A780) +DISPLAY_LIST(sl_seg7_dl_0700A890) +DISPLAY_LIST(sl_seg7_dl_0700A980) +DISPLAY_LIST(sl_seg7_dl_0700BAE8) +DISPLAY_LIST(sl_seg7_dl_0700BCF8) +DISPLAY_LIST(sl_seg7_dl_0700C9E8) +DISPLAY_LIST(sl_seg7_dl_0700CB58) DISPLAY_LIST(small_key_seg5_dl_05006700) DISPLAY_LIST(small_key_seg5_dl_05006A08) DISPLAY_LIST(small_key_seg5_dl_05006A28) DISPLAY_LIST(small_key_seg5_dl_05006A48) DISPLAY_LIST(small_key_seg5_dl_05006A68) +DISPLAY_LIST(smoke_seg4_dl_040216A0) +DISPLAY_LIST(smoke_seg4_dl_04021718) +DISPLAY_LIST(smoke_seg4_dl_04021730) +DISPLAY_LIST(smoke_seg4_dl_04021748) +DISPLAY_LIST(smoke_seg4_dl_04021760) +DISPLAY_LIST(smoke_seg4_dl_04021778) +DISPLAY_LIST(smoke_seg4_dl_04021790) +DISPLAY_LIST(smoke_seg4_dl_040217A8) DISPLAY_LIST(smoke_seg5_dl_05007AC0) DISPLAY_LIST(smoke_seg5_dl_05007AF8) DISPLAY_LIST(snowman_seg5_dl_0500C4C8) @@ -1253,6 +1925,12 @@ DISPLAY_LIST(snufit_seg6_dl_060099D8) DISPLAY_LIST(snufit_seg6_dl_06009A10) DISPLAY_LIST(snufit_seg6_dl_06009B18) DISPLAY_LIST(snufit_seg6_dl_06009B68) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035288) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035300) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035318) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035330) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035348) +DISPLAY_LIST(sparkles_animation_seg4_dl_04035360) DISPLAY_LIST(sparkles_seg4_dl_0402A490) DISPLAY_LIST(sparkles_seg4_dl_0402A4F8) DISPLAY_LIST(sparkles_seg4_dl_0402A510) @@ -1260,12 +1938,6 @@ DISPLAY_LIST(sparkles_seg4_dl_0402A528) DISPLAY_LIST(sparkles_seg4_dl_0402A540) DISPLAY_LIST(sparkles_seg4_dl_0402A558) DISPLAY_LIST(sparkles_seg4_dl_0402A570) -DISPLAY_LIST(sparkles_animation_seg4_dl_04035288) -DISPLAY_LIST(sparkles_animation_seg4_dl_04035300) -DISPLAY_LIST(sparkles_animation_seg4_dl_04035318) -DISPLAY_LIST(sparkles_animation_seg4_dl_04035330) -DISPLAY_LIST(sparkles_animation_seg4_dl_04035348) -DISPLAY_LIST(sparkles_animation_seg4_dl_04035360) DISPLAY_LIST(spindrift_seg5_dl_050002A0) DISPLAY_LIST(spindrift_seg5_dl_05000328) DISPLAY_LIST(spindrift_seg5_dl_05002710) @@ -1280,12 +1952,6 @@ DISPLAY_LIST(spindrift_seg5_dl_05002AD8) DISPLAY_LIST(spindrift_seg5_dl_05002B30) DISPLAY_LIST(spindrift_seg5_dl_05002C98) DISPLAY_LIST(spindrift_seg5_dl_05002D08) -DISPLAY_LIST(spiny_seg5_dl_05016418) -DISPLAY_LIST(spiny_seg5_dl_050164E0) -DISPLAY_LIST(spiny_seg5_dl_050165A8) -DISPLAY_LIST(spiny_seg5_dl_05016670) -DISPLAY_LIST(spiny_seg5_dl_05016738) -DISPLAY_LIST(spiny_seg5_dl_05016A48) DISPLAY_LIST(spiny_egg_seg5_dl_050151A8) DISPLAY_LIST(spiny_egg_seg5_dl_050151E0) DISPLAY_LIST(spiny_egg_seg5_dl_05015218) @@ -1296,9 +1962,50 @@ DISPLAY_LIST(spiny_egg_seg5_dl_050152F8) DISPLAY_LIST(spiny_egg_seg5_dl_05015330) DISPLAY_LIST(spiny_egg_seg5_dl_05015368) DISPLAY_LIST(spiny_egg_seg5_dl_05015740) +DISPLAY_LIST(spiny_seg5_dl_05016418) +DISPLAY_LIST(spiny_seg5_dl_050164E0) +DISPLAY_LIST(spiny_seg5_dl_050165A8) +DISPLAY_LIST(spiny_seg5_dl_05016670) +DISPLAY_LIST(spiny_seg5_dl_05016738) +DISPLAY_LIST(spiny_seg5_dl_05016A48) DISPLAY_LIST(springboard_checkerboard_seg5_dl_050016B8) -DISPLAY_LIST(springboard_spring_seg5_dl_05001800) DISPLAY_LIST(springboard_checkerboard_seg5_dl_05001900) +DISPLAY_LIST(springboard_spring_seg5_dl_05001800) +DISPLAY_LIST(ssl_dl_pyramid_corners_quicksand) +DISPLAY_LIST(ssl_dl_pyramid_quicksand) +DISPLAY_LIST(ssl_dl_pyramid_quicksand_pit_begin) +DISPLAY_LIST(ssl_dl_pyramid_quicksand_pit_end) +DISPLAY_LIST(ssl_dl_pyramid_quicksand_pit_static) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_begin) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_end) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_floor_begin) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_floor_end) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_front_end) +DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_side_end) +DISPLAY_LIST(ssl_dl_quicksand_begin) +DISPLAY_LIST(ssl_dl_quicksand_end) +DISPLAY_LIST(ssl_dl_quicksand_pit) +DISPLAY_LIST(ssl_dl_quicksand_pit_begin) +DISPLAY_LIST(ssl_dl_quicksand_pit_end) +DISPLAY_LIST(ssl_dl_sides_quicksand) +DISPLAY_LIST(ssl_seg7_dl_07009F48) +DISPLAY_LIST(ssl_seg7_dl_0700BA78) +DISPLAY_LIST(ssl_seg7_dl_0700BC18) +DISPLAY_LIST(ssl_seg7_dl_0700BD00) +DISPLAY_LIST(ssl_seg7_dl_0700BF18) +DISPLAY_LIST(ssl_seg7_dl_0700FCE0) +DISPLAY_LIST(ssl_seg7_dl_0701EE80) +DISPLAY_LIST(ssl_seg7_dl_0701F920) +DISPLAY_LIST(ssl_seg7_dl_0701FCE0) +DISPLAY_LIST(ssl_seg7_dl_07021A08) +DISPLAY_LIST(ssl_seg7_dl_07021DE8) +DISPLAY_LIST(ssl_seg7_dl_070220A8) +DISPLAY_LIST(ssl_seg7_dl_070221E8) +DISPLAY_LIST(ssl_seg7_dl_070228A8) +DISPLAY_LIST(ssl_seg7_dl_070229E8) +DISPLAY_LIST(ssl_seg7_dl_07022CF8) +DISPLAY_LIST(ssl_seg7_dl_070233A8) +DISPLAY_LIST(ssl_seg7_dl_070235C0) DISPLAY_LIST(star_seg3_dl_0302B7B0) DISPLAY_LIST(star_seg3_dl_0302B870) DISPLAY_LIST(star_seg3_dl_0302B9C0) @@ -1344,168 +2051,144 @@ DISPLAY_LIST(swoop_seg6_dl_06006B98) DISPLAY_LIST(swoop_seg6_dl_06006BD0) DISPLAY_LIST(swoop_seg6_dl_06006CC8) DISPLAY_LIST(swoop_seg6_dl_06006D00) -DISPLAY_LIST(unknown_seg8_dl_08026260) +DISPLAY_LIST(thi_seg7_dl_07005260) +DISPLAY_LIST(thi_seg7_dl_07006968) +DISPLAY_LIST(thi_seg7_dl_07007008) +DISPLAY_LIST(thi_seg7_dl_070072E8) +DISPLAY_LIST(thi_seg7_dl_070073C0) +DISPLAY_LIST(thi_seg7_dl_07007538) +DISPLAY_LIST(thi_seg7_dl_07007648) +DISPLAY_LIST(thi_seg7_dl_07007930) +DISPLAY_LIST(thi_seg7_dl_07007C20) +DISPLAY_LIST(thi_seg7_dl_07009670) +DISPLAY_LIST(thi_seg7_dl_07009D50) +DISPLAY_LIST(thi_seg7_dl_07009F58) DISPLAY_LIST(thwomp_seg5_dl_0500B570) DISPLAY_LIST(thwomp_seg5_dl_0500B718) DISPLAY_LIST(thwomp_seg5_dl_0500B750) +DISPLAY_LIST(tiny_bubble_dl_0B006A50) +DISPLAY_LIST(tiny_bubble_dl_0B006AB0) +DISPLAY_LIST(tiny_bubble_dl_0B006CD8) +DISPLAY_LIST(tiny_bubble_dl_0B006D38) +DISPLAY_LIST(tiny_bubble_dl_0B006D68) +DISPLAY_LIST(title_screen_bg_dl_0A000100) +DISPLAY_LIST(title_screen_bg_dl_0A000118) +DISPLAY_LIST(title_screen_bg_dl_0A000130) +DISPLAY_LIST(title_screen_bg_dl_0A000148) +DISPLAY_LIST(title_screen_bg_dl_0A000160) +DISPLAY_LIST(title_screen_bg_dl_0A000178) +DISPLAY_LIST(title_screen_bg_dl_0A000190) +DISPLAY_LIST(toad_cap_Metal_Cap_mesh_layer_1) +DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4) +DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_cap_Winged_Metal_Cap_Wings_mesh_layer_4) +DISPLAY_LIST(toad_cap_material_revert_render_settings) +DISPLAY_LIST(toad_cap_mesh_layer_1) +DISPLAY_LIST(toad_cap_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_cap_mesh_layer_1_tri_1) +DISPLAY_LIST(toad_cap_mesh_layer_5) +DISPLAY_LIST(toad_cap_mesh_layer_5_tri_0) +DISPLAY_LIST(toad_player_Cap_DL_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Cap_DL_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_player_Head_Capless_Switch_Option_Head_Capless_mesh_layer_4) +DISPLAY_LIST(toad_player_Head_Capless_Switch_Option_Head_Capless_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_closed_2) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_dead_7) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_down_6) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_half_closed_1) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_left_4) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_right_3) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_up_5) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1) +DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_1_tri_1) +DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_1_tri_1) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_4_tri_0) +DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_4_tri_1) +DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1) +DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1_mat_override_metal_0) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_0) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_1) +DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_2) +DISPLAY_LIST(toad_player_cap_base) +DISPLAY_LIST(toad_player_cap_decal) +DISPLAY_LIST(toad_player_cap_wings) +DISPLAY_LIST(toad_player_material_revert_render_settings) +DISPLAY_LIST(toad_player_metal_cap) +DISPLAY_LIST(toad_player_metal_cap_wings) +DISPLAY_LIST(toad_player_right_hand_cap) +DISPLAY_LIST(toad_player_right_hand_cap_decal) +DISPLAY_LIST(toad_player_right_hand_cap_metal) +DISPLAY_LIST(toad_player_wings_half_1_dl) +DISPLAY_LIST(toad_player_wings_half_2_dl) DISPLAY_LIST(toad_seg6_dl_06007300) DISPLAY_LIST(toad_seg6_dl_06007498) DISPLAY_LIST(toad_seg6_dl_060076C0) DISPLAY_LIST(toad_seg6_dl_06007710) -DISPLAY_LIST(toad_seg6_us_dl_06007788) DISPLAY_LIST(toad_seg6_dl_06007960) DISPLAY_LIST(toad_seg6_dl_06007A48) -DISPLAY_LIST(toad_seg6_us_dl_06007B00) DISPLAY_LIST(toad_seg6_dl_06007D10) DISPLAY_LIST(toad_seg6_dl_06007EB0) DISPLAY_LIST(toad_seg6_dl_060080C0) DISPLAY_LIST(toad_seg6_dl_060081F8) DISPLAY_LIST(toad_seg6_dl_060083E8) DISPLAY_LIST(toad_seg6_dl_06008520) -DISPLAY_LIST(toad_seg6_us_dl_06008608) DISPLAY_LIST(toad_seg6_dl_06008748) DISPLAY_LIST(toad_seg6_dl_06008890) DISPLAY_LIST(toad_seg6_dl_06008A90) DISPLAY_LIST(toad_seg6_dl_06008BD8) -DISPLAY_LIST(toad_cap_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_cap_mesh_layer_1_tri_1) -DISPLAY_LIST(toad_cap_mesh_layer_5_tri_0) -DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4_tri_0) -DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4_tri_1) -DISPLAY_LIST(mat_toad_cap_metal) -DISPLAY_LIST(mat_revert_toad_cap_metal) -DISPLAY_LIST(mat_toad_cap_base) -DISPLAY_LIST(mat_toad_cap_inside) -DISPLAY_LIST(mat_toad_cap_spots) -DISPLAY_LIST(mat_toad_cap_wing) -DISPLAY_LIST(mat_revert_toad_cap_wing) -DISPLAY_LIST(mat_toad_cap_wing_tip) -DISPLAY_LIST(mat_revert_toad_cap_wing_tip) -DISPLAY_LIST(mat_toad_cap_metal_wing) -DISPLAY_LIST(mat_revert_toad_cap_metal_wing) -DISPLAY_LIST(mat_toad_cap_metal_wing_tip) -DISPLAY_LIST(mat_revert_toad_cap_metal_wing_tip) -DISPLAY_LIST(toad_cap_mesh_layer_1) -DISPLAY_LIST(toad_cap_mesh_layer_5) -DISPLAY_LIST(toad_cap_Metal_Cap_mesh_layer_1) -DISPLAY_LIST(toad_cap_Wing_Cap_Wings_mesh_layer_4) -DISPLAY_LIST(toad_cap_Winged_Metal_Cap_Wings_mesh_layer_4) -DISPLAY_LIST(toad_cap_material_revert_render_settings) -DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_1) -DISPLAY_LIST(toad_player_Torso_mesh_layer_1_tri_2) -DISPLAY_LIST(toad_player_Cap_DL_mesh_layer_4_tri_0) -DISPLAY_LIST(toad_player_Cap_DL_mesh_layer_4_tri_1) -DISPLAY_LIST(toad_player_Head_Capless_Switch_Option_Head_Capless_mesh_layer_4_tri_0) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_wings_half_1_dl) -DISPLAY_LIST(toad_player_wings_half_2_dl) -DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_1_tri_1) -DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_4_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_Switch_Option_Right_Hand_Cap_mesh_layer_4_tri_1) -DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_1_tri_1) -DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_4_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_mesh_layer_4_tri_1) -DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_tri_0) -DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_tri_1) -DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1_tri_0) -DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1_tri_0) -DISPLAY_LIST(mat_toad_player_white) -DISPLAY_LIST(mat_toad_player_beige) -DISPLAY_LIST(mat_toad_player_vest) -DISPLAY_LIST(mat_revert_toad_player_vest) -DISPLAY_LIST(mat_toad_player_metal) -DISPLAY_LIST(mat_revert_toad_player_metal) -DISPLAY_LIST(mat_toad_player_metal_vest) -DISPLAY_LIST(mat_revert_toad_player_metal_vest) -DISPLAY_LIST(mat_toad_player_cap_base) -DISPLAY_LIST(mat_toad_player_cap_spots) -DISPLAY_LIST(mat_toad_player_hair) -DISPLAY_LIST(mat_revert_toad_player_hair) -DISPLAY_LIST(mat_toad_player_eyes_center) -DISPLAY_LIST(mat_revert_toad_player_eyes_center) -DISPLAY_LIST(mat_toad_player_eyes_half_closed) -DISPLAY_LIST(mat_revert_toad_player_eyes_half_closed) -DISPLAY_LIST(mat_toad_player_eyes_closed) -DISPLAY_LIST(mat_revert_toad_player_eyes_closed) -DISPLAY_LIST(mat_toad_player_eyes_right) -DISPLAY_LIST(mat_revert_toad_player_eyes_right) -DISPLAY_LIST(mat_toad_player_eyes_left) -DISPLAY_LIST(mat_revert_toad_player_eyes_left) -DISPLAY_LIST(mat_toad_player_eyes_up) -DISPLAY_LIST(mat_revert_toad_player_eyes_up) -DISPLAY_LIST(mat_toad_player_eyes_down) -DISPLAY_LIST(mat_revert_toad_player_eyes_down) -DISPLAY_LIST(mat_toad_player_eyes_dead) -DISPLAY_LIST(mat_revert_toad_player_eyes_dead) -DISPLAY_LIST(mat_toad_player_wing) -DISPLAY_LIST(mat_revert_toad_player_wing) -DISPLAY_LIST(mat_toad_player_wing_tip) -DISPLAY_LIST(mat_revert_toad_player_wing_tip) -DISPLAY_LIST(mat_toad_player_metal_wing) -DISPLAY_LIST(mat_revert_toad_player_metal_wing) -DISPLAY_LIST(mat_toad_player_metal_wing_tip) -DISPLAY_LIST(mat_revert_toad_player_metal_wing_tip) -DISPLAY_LIST(mat_toad_player_toad_cap_inside) -DISPLAY_LIST(mat_toad_player_brown) -DISPLAY_LIST(toad_player_Torso_mesh_layer_1) -DISPLAY_LIST(toad_player_Torso_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_cap_base) -DISPLAY_LIST(toad_player_cap_decal) -DISPLAY_LIST(toad_player_metal_cap) -DISPLAY_LIST(toad_player_Head_Capless_Switch_Option_Head_Capless_mesh_layer_4) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_half_closed_1) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_closed_2) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_right_3) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_left_4) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_up_5) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_down_6) -DISPLAY_LIST(toad_player_Head_DL_mesh_layer_1_mat_override_eyes_dead_7) -DISPLAY_LIST(toad_player_cap_wings) -DISPLAY_LIST(toad_player_metal_cap_wings) -DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1) -DISPLAY_LIST(toad_player_Left_Arm_Color_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1) -DISPLAY_LIST(toad_player_Left_Forearm_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1) -DISPLAY_LIST(toad_player_Left_Hand_DL_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1) -DISPLAY_LIST(toad_player_Left_Hand_Open_Switch_Option_Left_Hand_Open_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1) -DISPLAY_LIST(toad_player_Right_Arm_Color_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1) -DISPLAY_LIST(toad_player_Right_Forearm_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1) -DISPLAY_LIST(toad_player_Right_Hand_DL_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1) -DISPLAY_LIST(toad_player_Right_Hand_Open_Switch_Option_Right_Hand_Open_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1) -DISPLAY_LIST(toad_player_Right_Hand_Peace_Switch_Option_Right_Hand_Peace_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_right_hand_cap) -DISPLAY_LIST(toad_player_right_hand_cap_metal) -DISPLAY_LIST(toad_player_right_hand_cap_decal) -DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4) -DISPLAY_LIST(toad_player_Right_Hand_Wing_Cap_Switch_Option_Right_Hand_Wing_Cap_Wings_mesh_layer_4_mat_override_metal_0) -DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1) -DISPLAY_LIST(toad_player_Left_Shoe_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1) -DISPLAY_LIST(toad_player_Right_Shoe_DL_mesh_layer_1_mat_override_metal_0) -DISPLAY_LIST(toad_player_material_revert_render_settings) +DISPLAY_LIST(toad_seg6_us_dl_06007788) +DISPLAY_LIST(toad_seg6_us_dl_06007B00) +DISPLAY_LIST(toad_seg6_us_dl_06008608) DISPLAY_LIST(tornado_seg5_dl_05014450) DISPLAY_LIST(tornado_seg5_dl_050145C0) +DISPLAY_LIST(totwc_seg7_dl_07005D28) +DISPLAY_LIST(totwc_seg7_dl_07007048) +DISPLAY_LIST(totwc_seg7_dl_070078B8) +DISPLAY_LIST(totwc_seg7_dl_070079A8) DISPLAY_LIST(transparent_star_seg3_dl_0302C560) DISPLAY_LIST(transparent_star_seg3_dl_0302C620) DISPLAY_LIST(treasure_chest_seg6_dl_06016D58) @@ -1524,6 +2207,78 @@ DISPLAY_LIST(tree_seg3_dl_03030FA0) DISPLAY_LIST(tree_seg3_dl_03032088) DISPLAY_LIST(tree_seg3_dl_03032170) DISPLAY_LIST(tree_seg3_dl_03033258) +DISPLAY_LIST(ttc_dl_surface_treadmill) +DISPLAY_LIST(ttc_dl_surface_treadmill_begin) +DISPLAY_LIST(ttc_dl_surface_treadmill_end) +DISPLAY_LIST(ttc_seg7_dl_0700AD38) +DISPLAY_LIST(ttc_seg7_dl_0700B1D8) +DISPLAY_LIST(ttc_seg7_dl_0700E878) +DISPLAY_LIST(ttc_seg7_dl_0700ECB8) +DISPLAY_LIST(ttc_seg7_dl_0700EFE0) +DISPLAY_LIST(ttc_seg7_dl_0700F760) +DISPLAY_LIST(ttc_seg7_dl_0700FBB8) +DISPLAY_LIST(ttc_seg7_dl_0700FFE8) +DISPLAY_LIST(ttc_seg7_dl_070102B8) +DISPLAY_LIST(ttc_seg7_dl_07010868) +DISPLAY_LIST(ttc_seg7_dl_07010D38) +DISPLAY_LIST(ttc_seg7_dl_07011040) +DISPLAY_LIST(ttc_seg7_dl_07011360) +DISPLAY_LIST(ttc_seg7_dl_070116A8) +DISPLAY_LIST(ttc_seg7_dl_07011B38) +DISPLAY_LIST(ttc_seg7_dl_07012028) +DISPLAY_LIST(ttc_seg7_dl_07012148) +DISPLAY_LIST(ttc_seg7_dl_07012278) +DISPLAY_LIST(ttm_dl_bottom_waterfall) +DISPLAY_LIST(ttm_dl_puddle_waterfall) +DISPLAY_LIST(ttm_dl_waterfall) +DISPLAY_LIST(ttm_seg7_dl_0700A120) +DISPLAY_LIST(ttm_seg7_dl_0700A2E0) +DISPLAY_LIST(ttm_seg7_dl_0700A8C0) +DISPLAY_LIST(ttm_seg7_dl_0700AB08) +DISPLAY_LIST(ttm_seg7_dl_0700AF90) +DISPLAY_LIST(ttm_seg7_dl_0700B0D0) +DISPLAY_LIST(ttm_seg7_dl_0700B530) +DISPLAY_LIST(ttm_seg7_dl_0700B670) +DISPLAY_LIST(ttm_seg7_dl_0700BAD0) +DISPLAY_LIST(ttm_seg7_dl_0700BC10) +DISPLAY_LIST(ttm_seg7_dl_0700BE20) +DISPLAY_LIST(ttm_seg7_dl_0700C070) +DISPLAY_LIST(ttm_seg7_dl_0700C408) +DISPLAY_LIST(ttm_seg7_dl_0700CAE0) +DISPLAY_LIST(ttm_seg7_dl_0700CD10) +DISPLAY_LIST(ttm_seg7_dl_0700D1D8) +DISPLAY_LIST(ttm_seg7_dl_0700D688) +DISPLAY_LIST(ttm_seg7_dl_0700DF78) +DISPLAY_LIST(ttm_seg7_dl_0700E308) +DISPLAY_LIST(ttm_seg7_dl_0700EAC8) +DISPLAY_LIST(ttm_seg7_dl_0700EC58) +DISPLAY_LIST(ttm_seg7_dl_0700F270) +DISPLAY_LIST(ttm_seg7_dl_0700FA18) +DISPLAY_LIST(ttm_seg7_dl_07010978) +DISPLAY_LIST(ttm_seg7_dl_07010A68) +DISPLAY_LIST(ttm_seg7_dl_07011128) +DISPLAY_LIST(ttm_seg7_dl_07011608) +DISPLAY_LIST(ttm_seg7_dl_07011C78) +DISPLAY_LIST(ttm_seg7_dl_07011D78) +DISPLAY_LIST(ttm_seg7_dl_07012270) +DISPLAY_LIST(ttm_seg7_dl_07012388) +DISPLAY_LIST(ttm_seg7_dl_070123A0) +DISPLAY_LIST(ttm_seg7_dl_070123B8) +DISPLAY_LIST(ttm_seg7_dl_07012410) +DISPLAY_LIST(ttm_seg7_dl_07013430) +DISPLAY_LIST(ttm_seg7_dl_07013608) +DISPLAY_LIST(ttm_seg7_dl_0701D798) +DISPLAY_LIST(ttm_seg7_dl_0701DBB8) +DISPLAY_LIST(ttm_seg7_dl_070249A0) +DISPLAY_LIST(ttm_seg7_dl_07024C78) +DISPLAY_LIST(ttm_seg7_dl_07025F48) +DISPLAY_LIST(ttm_seg7_dl_0702A1B8) +DISPLAY_LIST(ttm_seg7_dl_0702A8A0) +DISPLAY_LIST(ttm_seg7_dl_0702A9C0) +DISPLAY_LIST(ttm_seg7_dl_0702AAA8) +DISPLAY_LIST(ttm_seg7_dl_0702AB90) +DISPLAY_LIST(ttm_seg7_dl_0702AC78) +DISPLAY_LIST(ttm_seg7_dl_0702BB60) DISPLAY_LIST(ukiki_seg5_dl_0500B040) DISPLAY_LIST(ukiki_seg5_dl_0500B1D8) DISPLAY_LIST(ukiki_seg5_dl_0500B278) @@ -1582,121 +2337,32 @@ DISPLAY_LIST(unagi_seg5_dl_0500E030) DISPLAY_LIST(unagi_seg5_dl_0500E088) DISPLAY_LIST(unagi_seg5_dl_0500E200) DISPLAY_LIST(unagi_seg5_dl_0500E258) -DISPLAY_LIST(smoke_seg4_dl_040216A0) -DISPLAY_LIST(smoke_seg4_dl_04021718) -DISPLAY_LIST(smoke_seg4_dl_04021730) -DISPLAY_LIST(smoke_seg4_dl_04021748) -DISPLAY_LIST(smoke_seg4_dl_04021760) -DISPLAY_LIST(smoke_seg4_dl_04021778) -DISPLAY_LIST(smoke_seg4_dl_04021790) -DISPLAY_LIST(smoke_seg4_dl_040217A8) -DISPLAY_LIST(waluigi_butt_dl) +DISPLAY_LIST(unknown_seg8_dl_08026260) +DISPLAY_LIST(vcutm_seg7_dl_07007E88) +DISPLAY_LIST(vcutm_seg7_dl_070080D0) +DISPLAY_LIST(vcutm_seg7_dl_07008E10) +DISPLAY_LIST(vcutm_seg7_dl_070093E8) +DISPLAY_LIST(vcutm_seg7_dl_070096E0) DISPLAY_LIST(waluigi_butt) -DISPLAY_LIST(waluigi_metal_butt) -DISPLAY_LIST(waluigi_left_arm_shared_dl) -DISPLAY_LIST(waluigi_left_arm) -DISPLAY_LIST(waluigi_left_forearm_shared_dl) -DISPLAY_LIST(waluigi_left_hand_closed_shared_dl) -DISPLAY_LIST(waluigi_left_hand_closed) -DISPLAY_LIST(waluigi_right_arm_shared_dl) -DISPLAY_LIST(waluigi_right_arm) -DISPLAY_LIST(waluigi_right_forearm_shared_dl) -DISPLAY_LIST(waluigi_right_hand_closed_dl) -DISPLAY_LIST(waluigi_right_hand_closed) -DISPLAY_LIST(waluigi_metal_right_hand_closed) -DISPLAY_LIST(waluigi_left_thigh_dl) -DISPLAY_LIST(waluigi_left_thigh) -DISPLAY_LIST(waluigi_metal_left_thigh) -DISPLAY_LIST(waluigi_left_leg_shared_dl) -DISPLAY_LIST(waluigi_left_foot_shared_dl) -DISPLAY_LIST(waluigi_left_foot) -DISPLAY_LIST(waluigi_right_thigh_shared_dl) -DISPLAY_LIST(waluigi_right_thigh) -DISPLAY_LIST(waluigi_right_leg_shared_dl) -DISPLAY_LIST(waluigi_right_foot_dl) -DISPLAY_LIST(waluigi_right_foot) -DISPLAY_LIST(waluigi_metal_right_foot) -DISPLAY_LIST(waluigi_yellow_button_dl) -DISPLAY_LIST(waluigi_pants_overalls_shared_dl) -DISPLAY_LIST(waluigi_tshirt_shared_dl) -DISPLAY_LIST(waluigi_torso_dl) -DISPLAY_LIST(waluigi_torso) -DISPLAY_LIST(waluigi_metal_torso_shared_dl) -DISPLAY_LIST(waluigi_r_logo_dl) -DISPLAY_LIST(waluigi_eyes_cap_on_dl) -DISPLAY_LIST(waluigi_hair_sideburn_cap_on_dl) -DISPLAY_LIST(waluigi_mouth_cap_on_dl) -DISPLAY_LIST(waluigi_face_part_cap_on_dl) -DISPLAY_LIST(waluigi_face_cap_dl) -DISPLAY_LIST(waluigi_face_back_hair_cap_on_dl) -DISPLAY_LIST(waluigi_nose_cap_on_dl) -DISPLAY_LIST(waluigi_mustache_cap_on_dl) -DISPLAY_LIST(waluigi_mustache_cap_on_dead_dl) -DISPLAY_LIST(waluigi_hair_sideburn_decal_cap_on) -DISPLAY_LIST(waluigi_r_logo_decal) -DISPLAY_LIST(waluigi_face_cap_on_dl) -DISPLAY_LIST(waluigi_face_cap_on_dead_dl) -DISPLAY_LIST(waluigi_cap_on_eyes_front) -DISPLAY_LIST(waluigi_cap_on_eyes_half_closed) -DISPLAY_LIST(waluigi_cap_on_eyes_closed) -DISPLAY_LIST(waluigi_cap_on_eyes_right) -DISPLAY_LIST(waluigi_cap_on_eyes_left) -DISPLAY_LIST(waluigi_cap_on_eyes_up) -DISPLAY_LIST(waluigi_cap_on_eyes_down) -DISPLAY_LIST(waluigi_cap_on_eyes_dead) -DISPLAY_LIST(waluigi_metal_cap_on_shared_dl) -DISPLAY_LIST(waluigi_eyes_cap_off_dl) -DISPLAY_LIST(waluigi_mouth_cap_off_dl) -DISPLAY_LIST(waluigi_hair_sideburn_cap_off_dl) -DISPLAY_LIST(waluigi_face_part_cap_off_dl) -DISPLAY_LIST(waluigi_face_hair_cap_off_dl) -DISPLAY_LIST(waluigi_nose_cap_off_dl) -DISPLAY_LIST(waluigi_mustache_cap_off_dl) -DISPLAY_LIST(waluigi_mustache_cap_off_dead_dl) -DISPLAY_LIST(waluigi_hair_sideburn_decal_cap_off) -DISPLAY_LIST(waluigi_face_cap_off_dl) -DISPLAY_LIST(waluigi_face_cap_off_dead_dl) +DISPLAY_LIST(waluigi_butt_dl) +DISPLAY_LIST(waluigi_cap_material_revert_render_settings) +DISPLAY_LIST(waluigi_cap_off_eyes_closed) +DISPLAY_LIST(waluigi_cap_off_eyes_dead) +DISPLAY_LIST(waluigi_cap_off_eyes_down) DISPLAY_LIST(waluigi_cap_off_eyes_front) DISPLAY_LIST(waluigi_cap_off_eyes_half_closed) -DISPLAY_LIST(waluigi_cap_off_eyes_closed) -DISPLAY_LIST(waluigi_cap_off_eyes_right) DISPLAY_LIST(waluigi_cap_off_eyes_left) +DISPLAY_LIST(waluigi_cap_off_eyes_right) DISPLAY_LIST(waluigi_cap_off_eyes_up) -DISPLAY_LIST(waluigi_cap_off_eyes_down) -DISPLAY_LIST(waluigi_cap_off_eyes_dead) -DISPLAY_LIST(waluigi_metal_cap_off_shared_dl) -DISPLAY_LIST(waluigi_left_hand_open_shared_dl) -DISPLAY_LIST(waluigi_left_hand_open) -DISPLAY_LIST(waluigi_right_hand_open_dl) -DISPLAY_LIST(waluigi_right_hand_open) -DISPLAY_LIST(waluigi_metal_right_hand_open) -DISPLAY_LIST(waluigi_right_hand_cap_r_logo_dl) -DISPLAY_LIST(waluigi_right_hand_cap_top_dl) -DISPLAY_LIST(waluigi_right_hand_cap_hand_position_dl) -DISPLAY_LIST(waluigi_right_hand_cap_bottom_dl) -DISPLAY_LIST(waluigi_right_hand_cap_decal) -DISPLAY_LIST(waluigi_right_hand_cap_dl) -DISPLAY_LIST(waluigi_right_hand_cap_wings_half_1_dl) -DISPLAY_LIST(waluigi_right_hand_cap_wings_half_2_dl) -DISPLAY_LIST(waluigi_right_hand_cap_wings_intial_dl) -DISPLAY_LIST(waluigi_right_hand_cap_wings_transparent_intial_dl) -DISPLAY_LIST(waluigi_right_hand_cap_metal_wings_intial_dl) -DISPLAY_LIST(waluigi_right_hand_cap_wings_end_dl) -DISPLAY_LIST(waluigi_right_hand_cap) -DISPLAY_LIST(waluigi_right_hand_cap_wings) -DISPLAY_LIST(waluigi_right_hand_cap_wings_transparent) -DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl) -DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl_wings) -DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl_wings_transparent) -DISPLAY_LIST(waluigi_right_hand_peace_shared_dl) -DISPLAY_LIST(waluigi_right_hand_peace) -DISPLAY_LIST(waluigi_wings_half_1_dl) -DISPLAY_LIST(waluigi_wings_half_2_dl) -DISPLAY_LIST(waluigi_cap_wings) -DISPLAY_LIST(waluigi_cap_wings_transparent) -DISPLAY_LIST(waluigi_metal_cap_wings) -DISPLAY_LIST(waluigi_metal_cap_wings_transparent) -DISPLAY_LIST(waluigi_material_revert_render_settings) +DISPLAY_LIST(waluigi_cap_on_eyes_closed) +DISPLAY_LIST(waluigi_cap_on_eyes_dead) +DISPLAY_LIST(waluigi_cap_on_eyes_down) +DISPLAY_LIST(waluigi_cap_on_eyes_front) +DISPLAY_LIST(waluigi_cap_on_eyes_half_closed) +DISPLAY_LIST(waluigi_cap_on_eyes_left) +DISPLAY_LIST(waluigi_cap_on_eyes_right) +DISPLAY_LIST(waluigi_cap_on_eyes_up) +DISPLAY_LIST(waluigi_cap_r_logo_decal) DISPLAY_LIST(waluigi_cap_seg3_dl_03022B30) DISPLAY_LIST(waluigi_cap_seg3_dl_03022B68) DISPLAY_LIST(waluigi_cap_seg3_dl_03022CC8) @@ -1706,121 +2372,120 @@ DISPLAY_LIST(waluigi_cap_seg3_dl_03022EA8) DISPLAY_LIST(waluigi_cap_seg3_dl_03022ED8) DISPLAY_LIST(waluigi_cap_seg3_dl_03022ED8_metal) DISPLAY_LIST(waluigi_cap_seg3_dl_03022F20) -DISPLAY_LIST(waluigi_cap_r_logo_decal) DISPLAY_LIST(waluigi_cap_seg3_dl_03022F48) DISPLAY_LIST(waluigi_cap_seg3_dl_03022FF8) DISPLAY_LIST(waluigi_cap_seg3_dl_030230B0) DISPLAY_LIST(waluigi_cap_seg3_dl_03023108) DISPLAY_LIST(waluigi_cap_seg3_dl_03023160) DISPLAY_LIST(waluigi_cap_seg3_dl_03023298) -DISPLAY_LIST(waluigi_cap_material_revert_render_settings) -DISPLAY_LIST(wario_butt_dl) +DISPLAY_LIST(waluigi_cap_wings) +DISPLAY_LIST(waluigi_cap_wings_transparent) +DISPLAY_LIST(waluigi_eyes_cap_off_dl) +DISPLAY_LIST(waluigi_eyes_cap_on_dl) +DISPLAY_LIST(waluigi_face_back_hair_cap_on_dl) +DISPLAY_LIST(waluigi_face_cap_dl) +DISPLAY_LIST(waluigi_face_cap_off_dead_dl) +DISPLAY_LIST(waluigi_face_cap_off_dl) +DISPLAY_LIST(waluigi_face_cap_on_dead_dl) +DISPLAY_LIST(waluigi_face_cap_on_dl) +DISPLAY_LIST(waluigi_face_hair_cap_off_dl) +DISPLAY_LIST(waluigi_face_part_cap_off_dl) +DISPLAY_LIST(waluigi_face_part_cap_on_dl) +DISPLAY_LIST(waluigi_hair_sideburn_cap_off_dl) +DISPLAY_LIST(waluigi_hair_sideburn_cap_on_dl) +DISPLAY_LIST(waluigi_hair_sideburn_decal_cap_off) +DISPLAY_LIST(waluigi_hair_sideburn_decal_cap_on) +DISPLAY_LIST(waluigi_left_arm) +DISPLAY_LIST(waluigi_left_arm_shared_dl) +DISPLAY_LIST(waluigi_left_foot) +DISPLAY_LIST(waluigi_left_foot_shared_dl) +DISPLAY_LIST(waluigi_left_forearm_shared_dl) +DISPLAY_LIST(waluigi_left_hand_closed) +DISPLAY_LIST(waluigi_left_hand_closed_shared_dl) +DISPLAY_LIST(waluigi_left_hand_open) +DISPLAY_LIST(waluigi_left_hand_open_shared_dl) +DISPLAY_LIST(waluigi_left_leg_shared_dl) +DISPLAY_LIST(waluigi_left_thigh) +DISPLAY_LIST(waluigi_left_thigh_dl) +DISPLAY_LIST(waluigi_material_revert_render_settings) +DISPLAY_LIST(waluigi_metal_butt) +DISPLAY_LIST(waluigi_metal_cap_off_shared_dl) +DISPLAY_LIST(waluigi_metal_cap_on_shared_dl) +DISPLAY_LIST(waluigi_metal_cap_wings) +DISPLAY_LIST(waluigi_metal_cap_wings_transparent) +DISPLAY_LIST(waluigi_metal_left_thigh) +DISPLAY_LIST(waluigi_metal_right_foot) +DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl) +DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl_wings) +DISPLAY_LIST(waluigi_metal_right_hand_cap_shared_dl_wings_transparent) +DISPLAY_LIST(waluigi_metal_right_hand_closed) +DISPLAY_LIST(waluigi_metal_right_hand_open) +DISPLAY_LIST(waluigi_metal_torso_shared_dl) +DISPLAY_LIST(waluigi_mouth_cap_off_dl) +DISPLAY_LIST(waluigi_mouth_cap_on_dl) +DISPLAY_LIST(waluigi_mustache_cap_off_dead_dl) +DISPLAY_LIST(waluigi_mustache_cap_off_dl) +DISPLAY_LIST(waluigi_mustache_cap_on_dead_dl) +DISPLAY_LIST(waluigi_mustache_cap_on_dl) +DISPLAY_LIST(waluigi_nose_cap_off_dl) +DISPLAY_LIST(waluigi_nose_cap_on_dl) +DISPLAY_LIST(waluigi_pants_overalls_shared_dl) +DISPLAY_LIST(waluigi_r_logo_decal) +DISPLAY_LIST(waluigi_r_logo_dl) +DISPLAY_LIST(waluigi_right_arm) +DISPLAY_LIST(waluigi_right_arm_shared_dl) +DISPLAY_LIST(waluigi_right_foot) +DISPLAY_LIST(waluigi_right_foot_dl) +DISPLAY_LIST(waluigi_right_forearm_shared_dl) +DISPLAY_LIST(waluigi_right_hand_cap) +DISPLAY_LIST(waluigi_right_hand_cap_bottom_dl) +DISPLAY_LIST(waluigi_right_hand_cap_decal) +DISPLAY_LIST(waluigi_right_hand_cap_dl) +DISPLAY_LIST(waluigi_right_hand_cap_hand_position_dl) +DISPLAY_LIST(waluigi_right_hand_cap_metal_wings_intial_dl) +DISPLAY_LIST(waluigi_right_hand_cap_r_logo_dl) +DISPLAY_LIST(waluigi_right_hand_cap_top_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings) +DISPLAY_LIST(waluigi_right_hand_cap_wings_end_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_half_1_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_half_2_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_intial_dl) +DISPLAY_LIST(waluigi_right_hand_cap_wings_transparent) +DISPLAY_LIST(waluigi_right_hand_cap_wings_transparent_intial_dl) +DISPLAY_LIST(waluigi_right_hand_closed) +DISPLAY_LIST(waluigi_right_hand_closed_dl) +DISPLAY_LIST(waluigi_right_hand_open) +DISPLAY_LIST(waluigi_right_hand_open_dl) +DISPLAY_LIST(waluigi_right_hand_peace) +DISPLAY_LIST(waluigi_right_hand_peace_shared_dl) +DISPLAY_LIST(waluigi_right_leg_shared_dl) +DISPLAY_LIST(waluigi_right_thigh) +DISPLAY_LIST(waluigi_right_thigh_shared_dl) +DISPLAY_LIST(waluigi_torso) +DISPLAY_LIST(waluigi_torso_dl) +DISPLAY_LIST(waluigi_tshirt_shared_dl) +DISPLAY_LIST(waluigi_wings_half_1_dl) +DISPLAY_LIST(waluigi_wings_half_2_dl) +DISPLAY_LIST(waluigi_yellow_button_dl) DISPLAY_LIST(wario_butt) -DISPLAY_LIST(wario_metal_butt) -DISPLAY_LIST(wario_left_arm_shared_dl) -DISPLAY_LIST(wario_left_arm) -DISPLAY_LIST(wario_left_forearm_shared_dl) -DISPLAY_LIST(wario_left_hand_closed_shared_dl) -DISPLAY_LIST(wario_left_hand_closed) -DISPLAY_LIST(wario_right_arm_shared_dl) -DISPLAY_LIST(wario_right_arm) -DISPLAY_LIST(wario_right_forearm_shared_dl) -DISPLAY_LIST(wario_right_hand_closed_dl) -DISPLAY_LIST(wario_right_hand_closed) -DISPLAY_LIST(wario_metal_right_hand_closed) -DISPLAY_LIST(wario_left_thigh_dl) -DISPLAY_LIST(wario_left_thigh) -DISPLAY_LIST(wario_metal_left_thigh) -DISPLAY_LIST(wario_left_leg_shared_dl) -DISPLAY_LIST(wario_left_foot_shared_dl) -DISPLAY_LIST(wario_left_foot) -DISPLAY_LIST(wario_right_thigh_shared_dl) -DISPLAY_LIST(wario_right_thigh) -DISPLAY_LIST(wario_right_leg_shared_dl) -DISPLAY_LIST(wario_right_foot_dl) -DISPLAY_LIST(wario_right_foot) -DISPLAY_LIST(wario_metal_right_foot) -DISPLAY_LIST(wario_white_button_dl) -DISPLAY_LIST(wario_pants_overalls_shared_dl) -DISPLAY_LIST(wario_tshirt_shared_dl) -DISPLAY_LIST(wario_torso_dl) -DISPLAY_LIST(wario_torso) -DISPLAY_LIST(wario_metal_torso_shared_dl) -DISPLAY_LIST(wario_w_logo_dl) -DISPLAY_LIST(wario_eyes_cap_on_dl) -DISPLAY_LIST(wario_hair_sideburn_cap_on_dl) -DISPLAY_LIST(wario_mouth_cap_on_dl) -DISPLAY_LIST(wario_face_part_cap_on_dl) -DISPLAY_LIST(wario_face_cap_dl) -DISPLAY_LIST(wario_face_back_hair_cap_on_dl) -DISPLAY_LIST(wario_nose_cap_on_dl) -DISPLAY_LIST(wario_mustache_cap_on_dl) -DISPLAY_LIST(wario_mustache_cap_on_dead_dl) -DISPLAY_LIST(wario_hair_sideburn_decal_cap_on) -DISPLAY_LIST(wario_w_logo_decal) -DISPLAY_LIST(wario_face_cap_on_dl) -DISPLAY_LIST(wario_face_cap_on_dead_dl) -DISPLAY_LIST(wario_cap_on_eyes_front) -DISPLAY_LIST(wario_cap_on_eyes_half_closed) -DISPLAY_LIST(wario_cap_on_eyes_closed) -DISPLAY_LIST(wario_cap_on_eyes_right) -DISPLAY_LIST(wario_cap_on_eyes_left) -DISPLAY_LIST(wario_cap_on_eyes_up) -DISPLAY_LIST(wario_cap_on_eyes_down) -DISPLAY_LIST(wario_cap_on_eyes_dead) -DISPLAY_LIST(wario_metal_cap_on_shared_dl) -DISPLAY_LIST(wario_eyes_cap_off_dl) -DISPLAY_LIST(wario_mouth_cap_off_dl) -DISPLAY_LIST(wario_hair_sideburn_cap_off_dl) -DISPLAY_LIST(wario_face_part_cap_off_dl) -DISPLAY_LIST(wario_face_hair_cap_off_dl) -DISPLAY_LIST(wario_nose_cap_off_dl) -DISPLAY_LIST(wario_mustache_cap_off_dl) -DISPLAY_LIST(wario_mustache_cap_off_dead_dl) -DISPLAY_LIST(wario_hair_sideburn_decal_cap_off) -DISPLAY_LIST(wario_face_cap_off_dl) -DISPLAY_LIST(wario_face_cap_off_dead_dl) +DISPLAY_LIST(wario_butt_dl) +DISPLAY_LIST(wario_cap_material_revert_render_settings) +DISPLAY_LIST(wario_cap_off_eyes_closed) +DISPLAY_LIST(wario_cap_off_eyes_dead) +DISPLAY_LIST(wario_cap_off_eyes_down) DISPLAY_LIST(wario_cap_off_eyes_front) DISPLAY_LIST(wario_cap_off_eyes_half_closed) -DISPLAY_LIST(wario_cap_off_eyes_closed) -DISPLAY_LIST(wario_cap_off_eyes_right) DISPLAY_LIST(wario_cap_off_eyes_left) +DISPLAY_LIST(wario_cap_off_eyes_right) DISPLAY_LIST(wario_cap_off_eyes_up) -DISPLAY_LIST(wario_cap_off_eyes_down) -DISPLAY_LIST(wario_cap_off_eyes_dead) -DISPLAY_LIST(wario_metal_cap_off_shared_dl) -DISPLAY_LIST(wario_left_hand_open_shared_dl) -DISPLAY_LIST(wario_left_hand_open) -DISPLAY_LIST(wario_right_hand_open_dl) -DISPLAY_LIST(wario_right_hand_open) -DISPLAY_LIST(wario_metal_right_hand_open) -DISPLAY_LIST(wario_right_hand_cap_w_logo_dl) -DISPLAY_LIST(wario_right_hand_cap_top_dl) -DISPLAY_LIST(wario_right_hand_cap_hand_position_dl) -DISPLAY_LIST(wario_right_hand_cap_bottom_dl) -DISPLAY_LIST(wario_right_hand_cap_decal) -DISPLAY_LIST(wario_right_hand_cap_dl) -DISPLAY_LIST(wario_right_hand_cap_wings_half_1_dl) -DISPLAY_LIST(wario_right_hand_cap_wings_half_2_dl) -DISPLAY_LIST(wario_right_hand_cap_wings_intial_dl) -DISPLAY_LIST(wario_right_hand_cap_wings_transparent_intial_dl) -DISPLAY_LIST(wario_right_hand_cap_metal_wings_intial_dl) -DISPLAY_LIST(wario_right_hand_cap_wings_end_dl) -DISPLAY_LIST(wario_right_hand_cap) -DISPLAY_LIST(wario_right_hand_cap_wings) -DISPLAY_LIST(wario_right_hand_cap_wings_transparent) -DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl) -DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl_wings) -DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl_wings_transparent) -DISPLAY_LIST(wario_right_hand_peace_shared_dl) -DISPLAY_LIST(wario_right_hand_peace) -DISPLAY_LIST(wario_wings_half_1_dl) -DISPLAY_LIST(wario_wings_half_2_dl) -DISPLAY_LIST(wario_cap_wings) -DISPLAY_LIST(wario_cap_wings_transparent) -DISPLAY_LIST(wario_metal_cap_wings) -DISPLAY_LIST(wario_metal_cap_wings_transparent) -DISPLAY_LIST(wario_material_revert_render_settings) +DISPLAY_LIST(wario_cap_on_eyes_closed) +DISPLAY_LIST(wario_cap_on_eyes_dead) +DISPLAY_LIST(wario_cap_on_eyes_down) +DISPLAY_LIST(wario_cap_on_eyes_front) +DISPLAY_LIST(wario_cap_on_eyes_half_closed) +DISPLAY_LIST(wario_cap_on_eyes_left) +DISPLAY_LIST(wario_cap_on_eyes_right) +DISPLAY_LIST(wario_cap_on_eyes_up) DISPLAY_LIST(wario_cap_seg3_dl_03022B30) DISPLAY_LIST(wario_cap_seg3_dl_03022B68) DISPLAY_LIST(wario_cap_seg3_dl_03022CC8) @@ -1830,14 +2495,102 @@ DISPLAY_LIST(wario_cap_seg3_dl_03022EA8) DISPLAY_LIST(wario_cap_seg3_dl_03022ED8) DISPLAY_LIST(wario_cap_seg3_dl_03022ED8_metal) DISPLAY_LIST(wario_cap_seg3_dl_03022F20) -DISPLAY_LIST(wario_cap_w_logo_decal) DISPLAY_LIST(wario_cap_seg3_dl_03022F48) DISPLAY_LIST(wario_cap_seg3_dl_03022FF8) DISPLAY_LIST(wario_cap_seg3_dl_030230B0) DISPLAY_LIST(wario_cap_seg3_dl_03023108) DISPLAY_LIST(wario_cap_seg3_dl_03023160) DISPLAY_LIST(wario_cap_seg3_dl_03023298) -DISPLAY_LIST(wario_cap_material_revert_render_settings) +DISPLAY_LIST(wario_cap_w_logo_decal) +DISPLAY_LIST(wario_cap_wings) +DISPLAY_LIST(wario_cap_wings_transparent) +DISPLAY_LIST(wario_eyes_cap_off_dl) +DISPLAY_LIST(wario_eyes_cap_on_dl) +DISPLAY_LIST(wario_face_back_hair_cap_on_dl) +DISPLAY_LIST(wario_face_cap_dl) +DISPLAY_LIST(wario_face_cap_off_dead_dl) +DISPLAY_LIST(wario_face_cap_off_dl) +DISPLAY_LIST(wario_face_cap_on_dead_dl) +DISPLAY_LIST(wario_face_cap_on_dl) +DISPLAY_LIST(wario_face_hair_cap_off_dl) +DISPLAY_LIST(wario_face_part_cap_off_dl) +DISPLAY_LIST(wario_face_part_cap_on_dl) +DISPLAY_LIST(wario_hair_sideburn_cap_off_dl) +DISPLAY_LIST(wario_hair_sideburn_cap_on_dl) +DISPLAY_LIST(wario_hair_sideburn_decal_cap_off) +DISPLAY_LIST(wario_hair_sideburn_decal_cap_on) +DISPLAY_LIST(wario_left_arm) +DISPLAY_LIST(wario_left_arm_shared_dl) +DISPLAY_LIST(wario_left_foot) +DISPLAY_LIST(wario_left_foot_shared_dl) +DISPLAY_LIST(wario_left_forearm_shared_dl) +DISPLAY_LIST(wario_left_hand_closed) +DISPLAY_LIST(wario_left_hand_closed_shared_dl) +DISPLAY_LIST(wario_left_hand_open) +DISPLAY_LIST(wario_left_hand_open_shared_dl) +DISPLAY_LIST(wario_left_leg_shared_dl) +DISPLAY_LIST(wario_left_thigh) +DISPLAY_LIST(wario_left_thigh_dl) +DISPLAY_LIST(wario_material_revert_render_settings) +DISPLAY_LIST(wario_metal_butt) +DISPLAY_LIST(wario_metal_cap_off_shared_dl) +DISPLAY_LIST(wario_metal_cap_on_shared_dl) +DISPLAY_LIST(wario_metal_cap_wings) +DISPLAY_LIST(wario_metal_cap_wings_transparent) +DISPLAY_LIST(wario_metal_left_thigh) +DISPLAY_LIST(wario_metal_right_foot) +DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl) +DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl_wings) +DISPLAY_LIST(wario_metal_right_hand_cap_shared_dl_wings_transparent) +DISPLAY_LIST(wario_metal_right_hand_closed) +DISPLAY_LIST(wario_metal_right_hand_open) +DISPLAY_LIST(wario_metal_torso_shared_dl) +DISPLAY_LIST(wario_mouth_cap_off_dl) +DISPLAY_LIST(wario_mouth_cap_on_dl) +DISPLAY_LIST(wario_mustache_cap_off_dead_dl) +DISPLAY_LIST(wario_mustache_cap_off_dl) +DISPLAY_LIST(wario_mustache_cap_on_dead_dl) +DISPLAY_LIST(wario_mustache_cap_on_dl) +DISPLAY_LIST(wario_nose_cap_off_dl) +DISPLAY_LIST(wario_nose_cap_on_dl) +DISPLAY_LIST(wario_pants_overalls_shared_dl) +DISPLAY_LIST(wario_right_arm) +DISPLAY_LIST(wario_right_arm_shared_dl) +DISPLAY_LIST(wario_right_foot) +DISPLAY_LIST(wario_right_foot_dl) +DISPLAY_LIST(wario_right_forearm_shared_dl) +DISPLAY_LIST(wario_right_hand_cap) +DISPLAY_LIST(wario_right_hand_cap_bottom_dl) +DISPLAY_LIST(wario_right_hand_cap_decal) +DISPLAY_LIST(wario_right_hand_cap_dl) +DISPLAY_LIST(wario_right_hand_cap_hand_position_dl) +DISPLAY_LIST(wario_right_hand_cap_metal_wings_intial_dl) +DISPLAY_LIST(wario_right_hand_cap_top_dl) +DISPLAY_LIST(wario_right_hand_cap_w_logo_dl) +DISPLAY_LIST(wario_right_hand_cap_wings) +DISPLAY_LIST(wario_right_hand_cap_wings_end_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_half_1_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_half_2_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_intial_dl) +DISPLAY_LIST(wario_right_hand_cap_wings_transparent) +DISPLAY_LIST(wario_right_hand_cap_wings_transparent_intial_dl) +DISPLAY_LIST(wario_right_hand_closed) +DISPLAY_LIST(wario_right_hand_closed_dl) +DISPLAY_LIST(wario_right_hand_open) +DISPLAY_LIST(wario_right_hand_open_dl) +DISPLAY_LIST(wario_right_hand_peace) +DISPLAY_LIST(wario_right_hand_peace_shared_dl) +DISPLAY_LIST(wario_right_leg_shared_dl) +DISPLAY_LIST(wario_right_thigh) +DISPLAY_LIST(wario_right_thigh_shared_dl) +DISPLAY_LIST(wario_torso) +DISPLAY_LIST(wario_torso_dl) +DISPLAY_LIST(wario_tshirt_shared_dl) +DISPLAY_LIST(wario_w_logo_decal) +DISPLAY_LIST(wario_w_logo_dl) +DISPLAY_LIST(wario_white_button_dl) +DISPLAY_LIST(wario_wings_half_1_dl) +DISPLAY_LIST(wario_wings_half_2_dl) DISPLAY_LIST(warp_pipe_seg3_dl_03008E40) DISPLAY_LIST(warp_pipe_seg3_dl_03008F98) DISPLAY_LIST(warp_pipe_seg3_dl_03009968) @@ -1867,12 +2620,65 @@ DISPLAY_LIST(water_wave_seg4_dl_040273F0) DISPLAY_LIST(water_wave_seg4_dl_04027408) DISPLAY_LIST(water_wave_seg4_dl_04027420) DISPLAY_LIST(water_wave_seg4_dl_04027438) +DISPLAY_LIST(wdw_seg7_dl_07009AB0) +DISPLAY_LIST(wdw_seg7_dl_0700A138) +DISPLAY_LIST(wdw_seg7_dl_07011E48) +DISPLAY_LIST(wdw_seg7_dl_07012258) +DISPLAY_LIST(wdw_seg7_dl_07012798) +DISPLAY_LIST(wdw_seg7_dl_07012908) +DISPLAY_LIST(wdw_seg7_dl_07012B90) +DISPLAY_LIST(wdw_seg7_dl_07012E88) +DISPLAY_LIST(wdw_seg7_dl_070131B8) +DISPLAY_LIST(wdw_seg7_dl_07013490) +DISPLAY_LIST(wdw_seg7_dl_07013B70) +DISPLAY_LIST(wdw_seg7_dl_07013E40) +DISPLAY_LIST(wdw_seg7_dl_070140E0) +DISPLAY_LIST(wf_seg7_dl_070050C8) +DISPLAY_LIST(wf_seg7_dl_070052B8) +DISPLAY_LIST(wf_seg7_dl_07005538) +DISPLAY_LIST(wf_seg7_dl_07005690) +DISPLAY_LIST(wf_seg7_dl_07005DD8) +DISPLAY_LIST(wf_seg7_dl_07005EE8) +DISPLAY_LIST(wf_seg7_dl_070064E8) +DISPLAY_LIST(wf_seg7_dl_070065F8) +DISPLAY_LIST(wf_seg7_dl_07006820) +DISPLAY_LIST(wf_seg7_dl_07007220) +DISPLAY_LIST(wf_seg7_dl_07007518) +DISPLAY_LIST(wf_seg7_dl_070087B0) +DISPLAY_LIST(wf_seg7_dl_07008FE8) +DISPLAY_LIST(wf_seg7_dl_07009278) +DISPLAY_LIST(wf_seg7_dl_07009780) +DISPLAY_LIST(wf_seg7_dl_07009890) +DISPLAY_LIST(wf_seg7_dl_07009DB0) +DISPLAY_LIST(wf_seg7_dl_0700A170) +DISPLAY_LIST(wf_seg7_dl_0700ABA0) +DISPLAY_LIST(wf_seg7_dl_0700AEC8) +DISPLAY_LIST(wf_seg7_dl_0700AFB8) +DISPLAY_LIST(wf_seg7_dl_0700BA28) +DISPLAY_LIST(wf_seg7_dl_0700BF50) +DISPLAY_LIST(wf_seg7_dl_0700D028) +DISPLAY_LIST(wf_seg7_dl_0700D300) +DISPLAY_LIST(wf_seg7_dl_0700D708) +DISPLAY_LIST(wf_seg7_dl_0700D9F0) +DISPLAY_LIST(wf_seg7_dl_0700DE20) +DISPLAY_LIST(wf_seg7_dl_0700E0F0) +DISPLAY_LIST(wf_seg7_dl_0700E3D0) +DISPLAY_LIST(wf_seg7_dl_0700E760) +DISPLAY_LIST(wf_seg7_dl_0700E9B8) +DISPLAY_LIST(wf_seg7_dl_0700EB40) +DISPLAY_LIST(wf_seg7_dl_0700EDC0) +DISPLAY_LIST(wf_seg7_dl_0700F018) +DISPLAY_LIST(wf_seg7_dl_0700F1A8) +DISPLAY_LIST(wf_seg7_dl_0700F340) +DISPLAY_LIST(wf_seg7_dl_0700F610) +DISPLAY_LIST(wf_seg7_dl_0700F6C0) +DISPLAY_LIST(wf_seg7_dl_0700F7F8) DISPLAY_LIST(whirlpool_seg5_dl_05013B58) DISPLAY_LIST(whirlpool_seg5_dl_05013CB8) DISPLAY_LIST(white_particle_dl) +DISPLAY_LIST(white_particle_small_dl) DISPLAY_LIST(white_particle_small_dl_begin) DISPLAY_LIST(white_particle_small_dl_end) -DISPLAY_LIST(white_particle_small_dl) DISPLAY_LIST(white_particle_small_unused_dl) DISPLAY_LIST(whomp_seg6_dl_0601F4F8) DISPLAY_LIST(whomp_seg6_dl_0601F570) @@ -1917,16 +2723,28 @@ DISPLAY_LIST(wiggler_seg5_dl_0500E518) DISPLAY_LIST(wiggler_seg5_dl_0500E608) DISPLAY_LIST(wiggler_seg5_dl_0500E640) DISPLAY_LIST(wiggler_seg5_dl_0500E678) +DISPLAY_LIST(wmotr_seg7_dl_0700C1F8) +DISPLAY_LIST(wmotr_seg7_dl_0700EFD8) +DISPLAY_LIST(wmotr_seg7_dl_07010608) DISPLAY_LIST(wooden_signpost_seg3_dl_0302D9C8) DISPLAY_LIST(wooden_signpost_seg3_dl_0302DA48) DISPLAY_LIST(wooden_signpost_seg3_dl_0302DC40) DISPLAY_LIST(wooden_signpost_seg3_dl_0302DCD0) DISPLAY_LIST(wooden_signpost_seg3_dl_0302DD08) -DISPLAY_LIST(yellow_sphere_seg6_dl_0601F388) -DISPLAY_LIST(yellow_sphere_seg6_dl_0601F3C0) DISPLAY_LIST(yellow_sphere_seg5_dl_05000840) DISPLAY_LIST(yellow_sphere_seg5_dl_05000888) DISPLAY_LIST(yellow_sphere_seg5_dl_050008C8) +DISPLAY_LIST(yellow_sphere_seg6_dl_0601F388) +DISPLAY_LIST(yellow_sphere_seg6_dl_0601F3C0) +DISPLAY_LIST(yoshi_egg_seg5_dl_050097B8) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009820) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009838) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009850) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009868) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009880) +DISPLAY_LIST(yoshi_egg_seg5_dl_05009898) +DISPLAY_LIST(yoshi_egg_seg5_dl_050098B0) +DISPLAY_LIST(yoshi_egg_seg5_dl_050098C8) DISPLAY_LIST(yoshi_seg5_dl_0501D440) DISPLAY_LIST(yoshi_seg5_dl_0501D488) DISPLAY_LIST(yoshi_seg5_dl_0501D4E0) @@ -1950,821 +2768,3 @@ DISPLAY_LIST(yoshi_seg5_dl_05022160) DISPLAY_LIST(yoshi_seg5_dl_050222A8) DISPLAY_LIST(yoshi_seg5_dl_05022408) DISPLAY_LIST(yoshi_seg5_dl_05022608) -DISPLAY_LIST(yoshi_egg_seg5_dl_050097B8) -DISPLAY_LIST(yoshi_egg_seg5_dl_05009820) -DISPLAY_LIST(yoshi_egg_seg5_dl_05009838) -DISPLAY_LIST(yoshi_egg_seg5_dl_05009850) -DISPLAY_LIST(yoshi_egg_seg5_dl_05009868) -DISPLAY_LIST(yoshi_egg_seg5_dl_05009880) -DISPLAY_LIST(yoshi_egg_seg5_dl_05009898) -DISPLAY_LIST(yoshi_egg_seg5_dl_050098B0) -DISPLAY_LIST(yoshi_egg_seg5_dl_050098C8) -DISPLAY_LIST(debug_level_select_dl_07000858) -DISPLAY_LIST(debug_level_select_dl_07001100) -DISPLAY_LIST(debug_level_select_dl_07001BA0) -DISPLAY_LIST(debug_level_select_dl_070025F0) -DISPLAY_LIST(debug_level_select_dl_07003258) -DISPLAY_LIST(debug_level_select_dl_07003DB8) -DISPLAY_LIST(debug_level_select_dl_070048C8) -DISPLAY_LIST(debug_level_select_dl_07005558) -DISPLAY_LIST(debug_level_select_dl_070059F8) -DISPLAY_LIST(debug_level_select_dl_070063B0) -DISPLAY_LIST(tiny_bubble_dl_0B006A50) -DISPLAY_LIST(tiny_bubble_dl_0B006AB0) -DISPLAY_LIST(tiny_bubble_dl_0B006CD8) -DISPLAY_LIST(tiny_bubble_dl_0B006D38) -DISPLAY_LIST(tiny_bubble_dl_0B006D68) -DISPLAY_LIST(dl_hud_img_begin) -DISPLAY_LIST(dl_hud_img_load_tex_block) -DISPLAY_LIST(dl_hud_img_end) -DISPLAY_LIST(dl_rgba16_text_begin) -DISPLAY_LIST(dl_rgba16_load_tex_block) -DISPLAY_LIST(dl_rgba16_text_end) -DISPLAY_LIST(dl_draw_text_bg_box) -DISPLAY_LIST(dl_ia_text_end) -DISPLAY_LIST(dl_draw_triangle) -DISPLAY_LIST(dl_billboard_num_begin) -DISPLAY_LIST(dl_billboard_num_end) -DISPLAY_LIST(dl_billboard_num_0) -DISPLAY_LIST(dl_billboard_num_1) -DISPLAY_LIST(dl_billboard_num_2) -DISPLAY_LIST(dl_billboard_num_3) -DISPLAY_LIST(dl_billboard_num_4) -DISPLAY_LIST(dl_billboard_num_5) -DISPLAY_LIST(dl_billboard_num_6) -DISPLAY_LIST(dl_billboard_num_7) -DISPLAY_LIST(dl_billboard_num_8) -DISPLAY_LIST(dl_billboard_num_9) -DISPLAY_LIST(dl_draw_quad_verts_0123) -DISPLAY_LIST(dl_draw_quad_verts_4567) -DISPLAY_LIST(dl_shadow_begin) -DISPLAY_LIST(dl_shadow_circle) -DISPLAY_LIST(dl_shadow_square) -DISPLAY_LIST(dl_shadow_spike_ext) -DISPLAY_LIST(dl_shadow_9_verts) -DISPLAY_LIST(dl_shadow_4_verts) -DISPLAY_LIST(dl_shadow_end) -DISPLAY_LIST(dl_proj_mtx_fullscreen) -DISPLAY_LIST(dl_screen_transition_end) -DISPLAY_LIST(dl_transition_draw_filled_region) -DISPLAY_LIST(dl_skybox_begin) -DISPLAY_LIST(dl_skybox_tile_tex_settings) -DISPLAY_LIST(dl_skybox_end) -DISPLAY_LIST(dl_waterbox_rgba16_begin) -DISPLAY_LIST(dl_waterbox_ia16_begin) -DISPLAY_LIST(dl_waterbox_end) -DISPLAY_LIST(dl_ia8_up_arrow_begin) -DISPLAY_LIST(dl_rgba16_unused) -DISPLAY_LIST(dl_ia8_up_arrow_load_texture_block) -DISPLAY_LIST(dl_ia8_up_arrow_end) -DISPLAY_LIST(dl_paintings_rippling_begin) -DISPLAY_LIST(dl_paintings_rippling_end) -DISPLAY_LIST(dl_paintings_env_mapped_begin) -DISPLAY_LIST(dl_paintings_env_mapped_end) -DISPLAY_LIST(dl_paintings_draw_ripples) -DISPLAY_LIST(title_screen_bg_dl_0A000100) -DISPLAY_LIST(title_screen_bg_dl_0A000118) -DISPLAY_LIST(title_screen_bg_dl_0A000130) -DISPLAY_LIST(title_screen_bg_dl_0A000148) -DISPLAY_LIST(title_screen_bg_dl_0A000160) -DISPLAY_LIST(title_screen_bg_dl_0A000178) -DISPLAY_LIST(title_screen_bg_dl_0A000190) -DISPLAY_LIST(bbh_seg7_dl_070075A8) -DISPLAY_LIST(bbh_seg7_dl_0700B9E0) -DISPLAY_LIST(bbh_seg7_dl_0700BBF8) -DISPLAY_LIST(bbh_seg7_dl_0700D080) -DISPLAY_LIST(bbh_seg7_dl_0700D2E0) -DISPLAY_LIST(bbh_seg7_dl_0700D490) -DISPLAY_LIST(bbh_seg7_dl_0700D7E0) -DISPLAY_LIST(bbh_seg7_dl_0700F510) -DISPLAY_LIST(bbh_seg7_dl_0700F848) -DISPLAY_LIST(bbh_seg7_dl_07011120) -DISPLAY_LIST(bbh_seg7_dl_07012220) -DISPLAY_LIST(bbh_seg7_dl_07007940) -DISPLAY_LIST(bbh_seg7_dl_07012510) -DISPLAY_LIST(bbh_seg7_dl_070126E8) -DISPLAY_LIST(bbh_seg7_dl_070139A8) -DISPLAY_LIST(bbh_seg7_dl_07013BE8) -DISPLAY_LIST(bbh_seg7_dl_07014FD8) -DISPLAY_LIST(bbh_seg7_dl_07015398) -DISPLAY_LIST(bbh_seg7_dl_070156E0) -DISPLAY_LIST(bbh_seg7_dl_07015A20) -DISPLAY_LIST(bbh_seg7_dl_07017378) -DISPLAY_LIST(bbh_seg7_dl_07017570) -DISPLAY_LIST(bbh_seg7_dl_07007B90) -DISPLAY_LIST(bbh_seg7_dl_07017788) -DISPLAY_LIST(bbh_seg7_dl_07019EF8) -DISPLAY_LIST(bbh_seg7_dl_0701A080) -DISPLAY_LIST(bbh_seg7_dl_0701A850) -DISPLAY_LIST(bbh_seg7_dl_0701B6D0) -DISPLAY_LIST(bbh_seg7_dl_0701E4E0) -DISPLAY_LIST(bbh_seg7_dl_0701E8D8) -DISPLAY_LIST(bbh_seg7_dl_0701ED18) -DISPLAY_LIST(bbh_seg7_dl_0701EEC8) -DISPLAY_LIST(bbh_seg7_dl_0701F070) -DISPLAY_LIST(bbh_seg7_dl_07007FD0) -DISPLAY_LIST(bbh_seg7_dl_07008B58) -DISPLAY_LIST(bbh_seg7_dl_07008EA8) -DISPLAY_LIST(bbh_seg7_dl_0700AFF0) -DISPLAY_LIST(bbh_seg7_dl_0700B1C8) -DISPLAY_LIST(bbh_seg7_dl_0700B418) -DISPLAY_LIST(bbh_seg7_dl_070206F0) -DISPLAY_LIST(bbh_seg7_dl_070202F0) -DISPLAY_LIST(bbh_seg7_dl_0701FFE8) -DISPLAY_LIST(bbh_seg7_dl_0701FD28) -DISPLAY_LIST(bbh_seg7_dl_0701F2E8) -DISPLAY_LIST(bbh_seg7_dl_0701F5F8) -DISPLAY_LIST(bbh_seg7_dl_0701F7E8) -DISPLAY_LIST(bbh_seg7_dl_0701FAB0) -DISPLAY_LIST(bitdw_seg7_dl_070020C8) -DISPLAY_LIST(bitdw_seg7_dl_070032F8) -DISPLAY_LIST(bitdw_seg7_dl_0700AD10) -DISPLAY_LIST(bitdw_seg7_dl_07005078) -DISPLAY_LIST(bitdw_seg7_dl_07007AA8) -DISPLAY_LIST(bitdw_seg7_dl_07008FF0) -DISPLAY_LIST(bitdw_seg7_dl_07005BC0) -DISPLAY_LIST(bitdw_seg7_dl_07003BF0) -DISPLAY_LIST(bitdw_seg7_dl_07004318) -DISPLAY_LIST(bitdw_seg7_dl_070045C0) -DISPLAY_LIST(bitdw_seg7_dl_070093B0) -DISPLAY_LIST(bitdw_seg7_dl_0700A368) -DISPLAY_LIST(bitdw_seg7_dl_070028A0) -DISPLAY_LIST(bitdw_seg7_dl_0700A6A8) -DISPLAY_LIST(bitdw_seg7_dl_07003608) -DISPLAY_LIST(bitdw_seg7_dl_070065F0) -DISPLAY_LIST(bitdw_seg7_dl_0700C0E0) -DISPLAY_LIST(bitdw_seg7_dl_0700C670) -DISPLAY_LIST(bitdw_seg7_dl_0700CC00) -DISPLAY_LIST(bitdw_seg7_dl_0700D190) -DISPLAY_LIST(bitdw_seg7_dl_0700D3E8) -DISPLAY_LIST(bitdw_seg7_dl_0700BB58) -DISPLAY_LIST(bitdw_seg7_dl_0700B8D8) -DISPLAY_LIST(bitdw_seg7_dl_0700B220) -DISPLAY_LIST(bitdw_seg7_dl_0700AFA0) -DISPLAY_LIST(bitdw_seg7_dl_0700B480) -DISPLAY_LIST(bitfs_dl_lava_sections) -DISPLAY_LIST(bitfs_dl_lava_floor) -DISPLAY_LIST(bitfs_seg7_dl_07002118) -DISPLAY_LIST(bitfs_seg7_dl_07007958) -DISPLAY_LIST(bitfs_seg7_dl_07008F48) -DISPLAY_LIST(bitfs_seg7_dl_070091E0) -DISPLAY_LIST(bitfs_seg7_dl_070095E0) -DISPLAY_LIST(bitfs_seg7_dl_0700AA00) -DISPLAY_LIST(bitfs_seg7_dl_0700AB90) -DISPLAY_LIST(bitfs_seg7_dl_0700BED8) -DISPLAY_LIST(bitfs_seg7_dl_0700C3C0) -DISPLAY_LIST(bitfs_seg7_dl_0700EC78) -DISPLAY_LIST(bitfs_seg7_dl_0700ED90) -DISPLAY_LIST(bitfs_seg7_dl_07002A78) -DISPLAY_LIST(bitfs_seg7_dl_0700F1C8) -DISPLAY_LIST(bitfs_seg7_dl_07003670) -DISPLAY_LIST(bitfs_seg7_dl_07003C60) -DISPLAY_LIST(bitfs_seg7_dl_070040B0) -DISPLAY_LIST(bitfs_seg7_dl_07004630) -DISPLAY_LIST(bitfs_seg7_dl_07006B90) -DISPLAY_LIST(bitfs_seg7_dl_07007070) -DISPLAY_LIST(bitfs_seg7_dl_07007720) -DISPLAY_LIST(bitfs_seg7_dl_0700F508) -DISPLAY_LIST(bitfs_seg7_dl_07011318) -DISPLAY_LIST(bitfs_seg7_dl_07011798) -DISPLAY_LIST(bitfs_seg7_dl_07011D98) -DISPLAY_LIST(bitfs_seg7_dl_07011E28) -DISPLAY_LIST(bitfs_seg7_dl_0700F6A8) -DISPLAY_LIST(bitfs_seg7_dl_0700FB38) -DISPLAY_LIST(bitfs_seg7_dl_07011BA0) -DISPLAY_LIST(bitfs_seg7_dl_07011568) -DISPLAY_LIST(bitfs_seg7_dl_07010340) -DISPLAY_LIST(bitfs_seg7_dl_07011138) -DISPLAY_LIST(bitfs_seg7_dl_0700FD08) -DISPLAY_LIST(bitfs_seg7_dl_07010168) -DISPLAY_LIST(bitfs_seg7_dl_0700FF90) -DISPLAY_LIST(bits_seg7_dl_07002918) -DISPLAY_LIST(bits_seg7_dl_07009690) -DISPLAY_LIST(bits_seg7_dl_0700B4A0) -DISPLAY_LIST(bits_seg7_dl_0700B820) -DISPLAY_LIST(bits_seg7_dl_0700BA18) -DISPLAY_LIST(bits_seg7_dl_0700CDC0) -DISPLAY_LIST(bits_seg7_dl_0700D278) -DISPLAY_LIST(bits_seg7_dl_0700D5A0) -DISPLAY_LIST(bits_seg7_dl_0700DD00) -DISPLAY_LIST(bits_seg7_dl_0700FC70) -DISPLAY_LIST(bits_seg7_dl_070128F0) -DISPLAY_LIST(bits_seg7_dl_07003670) -DISPLAY_LIST(bits_seg7_dl_07012B10) -DISPLAY_LIST(bits_seg7_dl_07012D40) -DISPLAY_LIST(bits_seg7_dl_070135A0) -DISPLAY_LIST(bits_seg7_dl_07013820) -DISPLAY_LIST(bits_seg7_dl_07013C78) -DISPLAY_LIST(bits_seg7_dl_07013EF8) -DISPLAY_LIST(bits_seg7_dl_07014178) -DISPLAY_LIST(bits_seg7_dl_07014C28) -DISPLAY_LIST(bits_seg7_dl_070153C0) -DISPLAY_LIST(bits_seg7_dl_07015B60) -DISPLAY_LIST(bits_seg7_dl_070047F0) -DISPLAY_LIST(bits_seg7_dl_07016300) -DISPLAY_LIST(bits_seg7_dl_07016AA0) -DISPLAY_LIST(bits_seg7_dl_07016DA0) -DISPLAY_LIST(bits_seg7_dl_07005DB8) -DISPLAY_LIST(bits_seg7_dl_07007AF0) -DISPLAY_LIST(bits_seg7_dl_07007C28) -DISPLAY_LIST(bits_seg7_dl_07007EC8) -DISPLAY_LIST(bits_seg7_dl_07008D18) -DISPLAY_LIST(bits_seg7_dl_07008FE8) -DISPLAY_LIST(bob_seg7_dl_07004390) -DISPLAY_LIST(bob_seg7_dl_07009D80) -DISPLAY_LIST(bob_seg7_dl_0700A470) -DISPLAY_LIST(bob_seg7_dl_0700A920) -DISPLAY_LIST(bob_seg7_dl_0700DD18) -DISPLAY_LIST(bob_seg7_dl_0700E338) -DISPLAY_LIST(bob_seg7_dl_0700E458) -DISPLAY_LIST(bob_seg7_dl_0700E8A0) -DISPLAY_LIST(bob_seg7_dl_0700E768) -DISPLAY_LIST(bowser_1_seg7_dl_07002768) -DISPLAY_LIST(bowser_2_seg7_dl_07001930) -DISPLAY_LIST(bowser_2_seg7_dl_07000D30) -DISPLAY_LIST(bowser_2_seg7_dl_07000FE0) -DISPLAY_LIST(bowser_3_seg7_dl_070046B0) -DISPLAY_LIST(bowser_3_seg7_dl_07004958) -DISPLAY_LIST(bowser_3_seg7_dl_070022A8) -DISPLAY_LIST(bowser_3_seg7_dl_07003FA0) -DISPLAY_LIST(bowser_3_seg7_dl_070025E0) -DISPLAY_LIST(bowser_3_seg7_dl_07002918) -DISPLAY_LIST(bowser_3_seg7_dl_07002C50) -DISPLAY_LIST(bowser_3_seg7_dl_07002F88) -DISPLAY_LIST(bowser_3_seg7_dl_070032C0) -DISPLAY_LIST(bowser_3_seg7_dl_070035F8) -DISPLAY_LIST(bowser_3_seg7_dl_07003930) -DISPLAY_LIST(bowser_3_seg7_dl_07003C68) -DISPLAY_LIST(castle_courtyard_seg7_dl_070048B8) -DISPLAY_LIST(castle_courtyard_seg7_dl_07005698) -DISPLAY_LIST(castle_courtyard_seg7_dl_07005938) -DISPLAY_LIST(castle_courtyard_seg7_dl_07005078) -DISPLAY_LIST(castle_grounds_dl_waterfall) -DISPLAY_LIST(castle_grounds_seg7_dl_07006D70) -DISPLAY_LIST(castle_grounds_seg7_dl_0700C430) -DISPLAY_LIST(castle_grounds_seg7_dl_0700C670) -DISPLAY_LIST(castle_grounds_seg7_dl_0700C6A8) -DISPLAY_LIST(castle_grounds_seg7_dl_0700C6E8) -DISPLAY_LIST(castle_grounds_seg7_dl_0700C728) -DISPLAY_LIST(castle_grounds_seg7_dl_0700C768) -DISPLAY_LIST(castle_grounds_seg7_dl_0700EA58) -DISPLAY_LIST(castle_grounds_seg7_us_dl_0700F2E8) -DISPLAY_LIST(castle_grounds_seg7_dl_070095F0) -DISPLAY_LIST(castle_grounds_seg7_dl_0700A290) -DISPLAY_LIST(castle_grounds_seg7_dl_0700A860) -DISPLAY_LIST(castle_grounds_seg7_dl_0700B1D0) -DISPLAY_LIST(castle_grounds_seg7_dl_0700BA20) -DISPLAY_LIST(castle_grounds_seg7_dl_0700BB80) -DISPLAY_LIST(castle_grounds_seg7_dl_0700BC68) -DISPLAY_LIST(castle_grounds_seg7_dl_0700C210) -DISPLAY_LIST(inside_castle_seg7_dl_070225D8) -DISPLAY_LIST(inside_castle_seg7_dl_07022610) -DISPLAY_LIST(inside_castle_seg7_dl_070234C0) -DISPLAY_LIST(inside_castle_seg7_dl_07023520) -DISPLAY_LIST(inside_castle_seg7_dl_07023DB0) -DISPLAY_LIST(inside_castle_seg7_dl_07031168) -DISPLAY_LIST(inside_castle_seg7_dl_07031588) -DISPLAY_LIST(inside_castle_seg7_dl_07031720) -DISPLAY_LIST(inside_castle_seg7_dl_07031830) -DISPLAY_LIST(inside_castle_seg7_dl_07032FC0) -DISPLAY_LIST(inside_castle_seg7_dl_07033158) -DISPLAY_LIST(inside_castle_seg7_dl_07034D88) -DISPLAY_LIST(inside_castle_seg7_dl_07035178) -DISPLAY_LIST(inside_castle_seg7_dl_07035288) -DISPLAY_LIST(inside_castle_seg7_dl_07036D88) -DISPLAY_LIST(inside_castle_seg7_dl_07037988) -DISPLAY_LIST(inside_castle_seg7_dl_07028FD0) -DISPLAY_LIST(inside_castle_seg7_dl_07037BF8) -DISPLAY_LIST(inside_castle_seg7_dl_07037DE8) -DISPLAY_LIST(dl_castle_aquarium_light) -DISPLAY_LIST(inside_castle_seg7_dl_07038350) -DISPLAY_LIST(inside_castle_seg7_dl_0703A6C8) -DISPLAY_LIST(inside_castle_seg7_dl_0703A808) -DISPLAY_LIST(inside_castle_seg7_dl_0703BA08) -DISPLAY_LIST(inside_castle_seg7_dl_07029578) -DISPLAY_LIST(inside_castle_seg7_dl_0702A650) -DISPLAY_LIST(dl_castle_lobby_wing_cap_light) -DISPLAY_LIST(inside_castle_seg7_dl_0702AA10) -DISPLAY_LIST(inside_castle_seg7_dl_0702AB20) -DISPLAY_LIST(inside_castle_seg7_dl_0702E408) -DISPLAY_LIST(inside_castle_seg7_dl_0702FD30) -DISPLAY_LIST(inside_castle_seg7_dl_0703E6F0) -DISPLAY_LIST(inside_castle_seg7_dl_07051678) -DISPLAY_LIST(inside_castle_seg7_dl_070519C8) -DISPLAY_LIST(inside_castle_seg7_dl_07051B60) -DISPLAY_LIST(inside_castle_seg7_dl_070558D0) -DISPLAY_LIST(inside_castle_seg7_dl_070572A0) -DISPLAY_LIST(inside_castle_seg7_dl_07057F00) -DISPLAY_LIST(inside_castle_seg7_dl_07043028) -DISPLAY_LIST(inside_castle_seg7_dl_07043B48) -DISPLAY_LIST(inside_castle_seg7_dl_07043CD8) -DISPLAY_LIST(inside_castle_seg7_dl_0704A0E8) -DISPLAY_LIST(inside_castle_seg7_dl_0704A2E0) -DISPLAY_LIST(inside_castle_seg7_dl_0704AA98) -DISPLAY_LIST(inside_castle_seg7_dl_0704C7D8) -DISPLAY_LIST(inside_castle_seg7_dl_07050938) -DISPLAY_LIST(inside_castle_seg7_dl_070512F8) -DISPLAY_LIST(inside_castle_seg7_dl_0705E088) -DISPLAY_LIST(inside_castle_seg7_dl_07066FA0) -DISPLAY_LIST(inside_castle_seg7_dl_07068850) -DISPLAY_LIST(inside_castle_seg7_dl_0705E2A0) -DISPLAY_LIST(inside_castle_seg7_dl_0705E450) -DISPLAY_LIST(inside_castle_seg7_dl_070616E8) -DISPLAY_LIST(inside_castle_seg7_dl_07061C20) -DISPLAY_LIST(inside_castle_seg7_dl_07064B78) -DISPLAY_LIST(inside_castle_seg7_dl_07064D58) -DISPLAY_LIST(inside_castle_seg7_dl_07066CE0) -DISPLAY_LIST(inside_castle_seg7_dl_07066E90) -DISPLAY_LIST(inside_castle_seg7_dl_07059190) -DISPLAY_LIST(inside_castle_seg7_dl_07058950) -DISPLAY_LIST(inside_castle_seg7_dl_0703BFA8) -DISPLAY_LIST(inside_castle_seg7_dl_0703BCB8) -DISPLAY_LIST(inside_castle_seg7_dl_07068B10) -DISPLAY_LIST(ccm_seg7_dl_0700B090) -DISPLAY_LIST(ccm_seg7_dl_07010660) -DISPLAY_LIST(ccm_seg7_dl_070109D0) -DISPLAY_LIST(ccm_seg7_dl_07010B50) -DISPLAY_LIST(ccm_seg7_dl_0700B1D8) -DISPLAY_LIST(ccm_seg7_dl_0700C380) -DISPLAY_LIST(ccm_seg7_dl_0700D578) -DISPLAY_LIST(ccm_seg7_dl_0700DDF0) -DISPLAY_LIST(ccm_seg7_dl_0700E708) -DISPLAY_LIST(ccm_seg7_dl_0700E970) -DISPLAY_LIST(ccm_seg7_dl_0700F440) -DISPLAY_LIST(ccm_seg7_dl_0700F650) -DISPLAY_LIST(ccm_seg7_dl_0700F780) -DISPLAY_LIST(ccm_seg7_dl_0700FB00) -DISPLAY_LIST(ccm_seg7_dl_0700FD08) -DISPLAY_LIST(ccm_seg7_dl_0701CE30) -DISPLAY_LIST(ccm_seg7_dl_0701E558) -DISPLAY_LIST(ccm_seg7_dl_0701E6B0) -DISPLAY_LIST(ccm_seg7_dl_0701FC78) -DISPLAY_LIST(ccm_seg7_dl_0701FD78) -DISPLAY_LIST(ccm_seg7_dl_0701FE60) -DISPLAY_LIST(ccm_seg7_dl_070207F0) -DISPLAY_LIST(ccm_seg7_dl_07010F28) -DISPLAY_LIST(ccm_seg7_dl_070118B0) -DISPLAY_LIST(ccm_seg7_dl_07012BD8) -DISPLAY_LIST(ccm_seg7_dl_070136D0) -DISPLAY_LIST(ccm_seg7_dl_07013870) -DISPLAY_LIST(cotmc_dl_water_begin) -DISPLAY_LIST(cotmc_dl_water_end) -DISPLAY_LIST(cotmc_dl_water) -DISPLAY_LIST(cotmc_seg7_dl_07007D48) -DISPLAY_LIST(cotmc_seg7_dl_0700A160) -DISPLAY_LIST(cotmc_seg7_dl_0700A4B8) -DISPLAY_LIST(ddd_seg7_dl_07004D48) -DISPLAY_LIST(ddd_seg7_dl_070057E8) -DISPLAY_LIST(ddd_seg7_dl_07005C40) -DISPLAY_LIST(ddd_seg7_dl_07005F78) -DISPLAY_LIST(ddd_seg7_dl_07007408) -DISPLAY_LIST(ddd_seg7_dl_07007CB8) -DISPLAY_LIST(ddd_seg7_dl_07008C48) -DISPLAY_LIST(ddd_seg7_dl_07008F80) -DISPLAY_LIST(ddd_seg7_dl_0700BAE0) -DISPLAY_LIST(ddd_seg7_dl_0700CE48) -DISPLAY_LIST(ddd_seg7_dl_0700D2A0) -DISPLAY_LIST(ddd_seg7_dl_0700AF10) -DISPLAY_LIST(ddd_seg7_dl_0700B068) -DISPLAY_LIST(ddd_seg7_dl_07009030) -DISPLAY_LIST(ddd_seg7_dl_07009120) -DISPLAY_LIST(ddd_seg7_dl_07009208) -DISPLAY_LIST(hmc_seg7_dl_07024268) -DISPLAY_LIST(hmc_seg7_dl_070242A0) -DISPLAY_LIST(hmc_seg7_dl_070078B0) -DISPLAY_LIST(hmc_seg7_dl_07010070) -DISPLAY_LIST(hmc_seg7_dl_07013CA8) -DISPLAY_LIST(hmc_seg7_dl_07013E80) -DISPLAY_LIST(hmc_seg7_dl_07014300) -DISPLAY_LIST(hmc_seg7_dl_07014B08) -DISPLAY_LIST(hmc_seg7_dl_07014C00) -DISPLAY_LIST(hmc_seg7_dl_07014E48) -DISPLAY_LIST(hmc_seg7_dl_070173A8) -DISPLAY_LIST(hmc_seg7_dl_07017C98) -DISPLAY_LIST(hmc_seg7_dl_07018200) -DISPLAY_LIST(hmc_seg7_dl_07007B50) -DISPLAY_LIST(hmc_seg7_dl_07019248) -DISPLAY_LIST(hmc_seg7_dl_07019368) -DISPLAY_LIST(hmc_seg7_dl_0701A080) -DISPLAY_LIST(hmc_seg7_dl_0701A400) -DISPLAY_LIST(hmc_seg7_dl_0701E820) -DISPLAY_LIST(hmc_seg7_dl_0701F1B0) -DISPLAY_LIST(hmc_seg7_dl_0701F690) -DISPLAY_LIST(hmc_seg7_dl_0701F818) -DISPLAY_LIST(hmc_seg7_dl_0701FD58) -DISPLAY_LIST(hmc_seg7_dl_07020FD0) -DISPLAY_LIST(hmc_seg7_dl_070080E8) -DISPLAY_LIST(hmc_seg7_dl_07021760) -DISPLAY_LIST(hmc_seg7_dl_07021BA0) -DISPLAY_LIST(hmc_seg7_dl_070228A0) -DISPLAY_LIST(hmc_seg7_dl_070093F0) -DISPLAY_LIST(hmc_seg7_dl_0700E448) -DISPLAY_LIST(hmc_seg7_dl_0700EF00) -DISPLAY_LIST(hmc_seg7_dl_0700F3E8) -DISPLAY_LIST(hmc_seg7_dl_0700FA40) -DISPLAY_LIST(hmc_seg7_dl_0700FEF0) -DISPLAY_LIST(hmc_seg7_dl_0701FFF8) -DISPLAY_LIST(hmc_seg7_dl_07022DA0) -DISPLAY_LIST(hmc_seg7_dl_07023090) -DISPLAY_LIST(hmc_seg7_dl_07022AA0) -DISPLAY_LIST(hmc_seg7_dl_07023BC8) -DISPLAY_LIST(hmc_seg7_dl_07023E10) -DISPLAY_LIST(hmc_seg7_dl_07024110) -DISPLAY_LIST(intro_seg7_dl_0700B3A0) -DISPLAY_LIST(intro_seg7_dl_0700C6A0) -DISPLAY_LIST(jrb_seg7_dl_07002FD0) -DISPLAY_LIST(jrb_seg7_dl_07004940) -DISPLAY_LIST(jrb_seg7_dl_07004C78) -DISPLAY_LIST(jrb_seg7_dl_070058C8) -DISPLAY_LIST(jrb_seg7_dl_070069B0) -DISPLAY_LIST(jrb_seg7_dl_07007570) -DISPLAY_LIST(jrb_seg7_dl_07007718) -DISPLAY_LIST(jrb_seg7_dl_0700EF00) -DISPLAY_LIST(jrb_seg7_dl_0700FE48) -DISPLAY_LIST(jrb_seg7_dl_07010548) -DISPLAY_LIST(jrb_seg7_dl_0700AE48) -DISPLAY_LIST(jrb_seg7_dl_0700AFB0) -DISPLAY_LIST(jrb_seg7_dl_07007DC8) -DISPLAY_LIST(jrb_seg7_dl_07007AC8) -DISPLAY_LIST(jrb_seg7_dl_070080F8) -DISPLAY_LIST(jrb_seg7_dl_07008FD8) -DISPLAY_LIST(jrb_seg7_dl_070090B0) -DISPLAY_LIST(jrb_seg7_dl_07009A58) -DISPLAY_LIST(jrb_seg7_dl_07009B30) -DISPLAY_LIST(jrb_seg7_dl_0700A608) -DISPLAY_LIST(jrb_seg7_dl_0700AC68) -DISPLAY_LIST(lll_seg7_dl_070134E0) -DISPLAY_LIST(lll_seg7_dl_070165C8) -DISPLAY_LIST(lll_seg7_dl_07016B00) -DISPLAY_LIST(lll_seg7_dl_070174E0) -DISPLAY_LIST(lll_seg7_dl_070178A8) -DISPLAY_LIST(lll_seg7_dl_07017B50) -DISPLAY_LIST(lll_seg7_dl_07017F40) -DISPLAY_LIST(lll_seg7_dl_070137C0) -DISPLAY_LIST(lll_seg7_dl_070138F8) -DISPLAY_LIST(lll_seg7_dl_07013D28) -DISPLAY_LIST(lll_seg7_dl_07014788) -DISPLAY_LIST(lll_seg7_dl_07014BD8) -DISPLAY_LIST(lll_seg7_dl_07015458) -DISPLAY_LIST(lll_seg7_dl_07015C88) -DISPLAY_LIST(lll_seg7_dl_07015E20) -DISPLAY_LIST(lll_seg7_dl_07016250) -DISPLAY_LIST(lll_dl_lava_floor) -DISPLAY_LIST(lll_dl_lavafall_volcano) -DISPLAY_LIST(lll_seg7_dl_070235C8) -DISPLAY_LIST(lll_seg7_dl_07024C18) -DISPLAY_LIST(lll_seg7_dl_070255D8) -DISPLAY_LIST(lll_seg7_dl_07025A48) -DISPLAY_LIST(lll_seg7_dl_07025BD8) -DISPLAY_LIST(lll_seg7_dl_07019160) -DISPLAY_LIST(lll_seg7_dl_07018680) -DISPLAY_LIST(lll_seg7_dl_070193E0) -DISPLAY_LIST(lll_seg7_dl_07018380) -DISPLAY_LIST(lll_seg7_dl_0701A388) -DISPLAY_LIST(lll_seg7_dl_0701A3B8) -DISPLAY_LIST(lll_seg7_dl_0701A3E8) -DISPLAY_LIST(lll_seg7_dl_0701A418) -DISPLAY_LIST(lll_seg7_dl_0701A448) -DISPLAY_LIST(lll_seg7_dl_0701A478) -DISPLAY_LIST(lll_seg7_dl_0701A4A8) -DISPLAY_LIST(lll_seg7_dl_0701A4D8) -DISPLAY_LIST(lll_seg7_dl_0701A508) -DISPLAY_LIST(lll_seg7_dl_0701A538) -DISPLAY_LIST(lll_seg7_dl_0701A568) -DISPLAY_LIST(lll_seg7_dl_0701A598) -DISPLAY_LIST(lll_seg7_dl_0701A5C8) -DISPLAY_LIST(lll_seg7_dl_0701A5F8) -DISPLAY_LIST(lll_seg7_dl_0701A628) -DISPLAY_LIST(lll_seg7_dl_0701AD70) -DISPLAY_LIST(lll_seg7_dl_07018A30) -DISPLAY_LIST(lll_seg7_dl_07019A08) -DISPLAY_LIST(lll_seg7_dl_07019C08) -DISPLAY_LIST(lll_seg7_dl_0701A878) -DISPLAY_LIST(lll_seg7_dl_0701A010) -DISPLAY_LIST(lll_seg7_dl_0701A1F0) -DISPLAY_LIST(lll_seg7_dl_07025EC0) -DISPLAY_LIST(lll_seg7_dl_07018EF8) -DISPLAY_LIST(lll_seg7_dl_07018C90) -DISPLAY_LIST(dl_menu_mario_save_button_base) -DISPLAY_LIST(dl_menu_mario_new_button_base) -DISPLAY_LIST(dl_menu_save_button_back) -DISPLAY_LIST(dl_menu_save_button_fade_back) -DISPLAY_LIST(dl_menu_erase_button) -DISPLAY_LIST(dl_menu_copy_button) -DISPLAY_LIST(dl_menu_file_button) -DISPLAY_LIST(dl_menu_score_button) -DISPLAY_LIST(dl_menu_sound_button) -DISPLAY_LIST(dl_menu_generic_button) -DISPLAY_LIST(dl_menu_idle_hand) -DISPLAY_LIST(dl_menu_grabbing_hand) -DISPLAY_LIST(dl_menu_ia8_text_begin) -DISPLAY_LIST(dl_menu_ia8_text_end) -DISPLAY_LIST(dl_menu_rgba16_wood_course) -DISPLAY_LIST(pss_seg7_dl_0700A7C0) -DISPLAY_LIST(pss_seg7_dl_0700AFA8) -DISPLAY_LIST(pss_seg7_dl_0700B3F0) -DISPLAY_LIST(pss_seg7_dl_0700D338) -DISPLAY_LIST(pss_seg7_dl_0700DAD8) -DISPLAY_LIST(pss_seg7_dl_0700E2B0) -DISPLAY_LIST(pss_seg7_dl_0700E3E8) -DISPLAY_LIST(dl_cruiser_metal_holes) -DISPLAY_LIST(rr_seg7_dl_0700CA38) -DISPLAY_LIST(rr_seg7_dl_0700DBD8) -DISPLAY_LIST(rr_seg7_dl_0700DE88) -DISPLAY_LIST(rr_seg7_dl_0700E178) -DISPLAY_LIST(rr_seg7_dl_0700E830) -DISPLAY_LIST(rr_seg7_dl_07012758) -DISPLAY_LIST(rr_seg7_dl_07014508) -DISPLAY_LIST(rr_seg7_dl_07014F30) -DISPLAY_LIST(rr_seg7_dl_070156B8) -DISPLAY_LIST(rr_seg7_dl_07015C68) -DISPLAY_LIST(rr_seg7_dl_07017530) -DISPLAY_LIST(rr_seg7_dl_07002CC8) -DISPLAY_LIST(rr_seg7_dl_07018B58) -DISPLAY_LIST(rr_seg7_dl_070191A0) -DISPLAY_LIST(rr_seg7_dl_07002E80) -DISPLAY_LIST(rr_seg7_dl_07004A98) -DISPLAY_LIST(rr_seg7_dl_07005C80) -DISPLAY_LIST(rr_seg7_dl_07007E60) -DISPLAY_LIST(rr_seg7_dl_07008258) -DISPLAY_LIST(rr_seg7_dl_07008E20) -DISPLAY_LIST(rr_seg7_dl_0700BB48) -DISPLAY_LIST(rr_seg7_dl_0701A680) -DISPLAY_LIST(rr_seg7_dl_0701B848) -DISPLAY_LIST(rr_seg7_dl_0701B980) -DISPLAY_LIST(rr_seg7_dl_0701B220) -DISPLAY_LIST(dl_flying_carpet_begin) -DISPLAY_LIST(dl_flying_carpet_model_half) -DISPLAY_LIST(dl_flying_carpet_end) -DISPLAY_LIST(rr_seg7_dl_0701BD08) -DISPLAY_LIST(rr_seg7_dl_0701AB78) -DISPLAY_LIST(rr_seg7_dl_0701AFA0) -DISPLAY_LIST(rr_seg7_dl_0701A568) -DISPLAY_LIST(rr_seg7_dl_0701B4C0) -DISPLAY_LIST(rr_seg7_dl_0701ADF8) -DISPLAY_LIST(rr_seg7_dl_07019AE0) -DISPLAY_LIST(rr_seg7_dl_0701E670) -DISPLAY_LIST(rr_seg7_dl_07021100) -DISPLAY_LIST(rr_seg7_dl_07023B90) -DISPLAY_LIST(rr_seg7_dl_07026630) -DISPLAY_LIST(rr_seg7_dl_07028FA8) -DISPLAY_LIST(sa_seg7_dl_07002DE8) -DISPLAY_LIST(sa_seg7_dl_07002FD0) -DISPLAY_LIST(sl_seg7_dl_07005478) -DISPLAY_LIST(sl_seg7_dl_070056B0) -DISPLAY_LIST(sl_seg7_dl_070073D0) -DISPLAY_LIST(sl_seg7_dl_07007880) -DISPLAY_LIST(sl_seg7_dl_070088B0) -DISPLAY_LIST(sl_seg7_dl_07008D58) -DISPLAY_LIST(sl_seg7_dl_0700A5A0) -DISPLAY_LIST(sl_seg7_dl_0700BAE8) -DISPLAY_LIST(sl_seg7_dl_0700BCF8) -DISPLAY_LIST(sl_seg7_dl_0700C9E8) -DISPLAY_LIST(sl_seg7_dl_0700CB58) -DISPLAY_LIST(sl_seg7_dl_0700A780) -DISPLAY_LIST(sl_seg7_dl_0700A890) -DISPLAY_LIST(sl_seg7_dl_0700A980) -DISPLAY_LIST(ssl_dl_quicksand_begin) -DISPLAY_LIST(ssl_dl_quicksand_end) -DISPLAY_LIST(ssl_dl_pyramid_quicksand) -DISPLAY_LIST(ssl_dl_pyramid_corners_quicksand) -DISPLAY_LIST(ssl_dl_sides_quicksand) -DISPLAY_LIST(ssl_seg7_dl_07009F48) -DISPLAY_LIST(ssl_seg7_dl_0700BA78) -DISPLAY_LIST(ssl_seg7_dl_0700BC18) -DISPLAY_LIST(ssl_seg7_dl_0700BD00) -DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_floor_begin) -DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_floor_end) -DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_begin) -DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_end) -DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_front_end) -DISPLAY_LIST(ssl_dl_pyramid_sand_pathway_side_end) -DISPLAY_LIST(ssl_seg7_dl_0701EE80) -DISPLAY_LIST(ssl_seg7_dl_0701F920) -DISPLAY_LIST(ssl_seg7_dl_0701FCE0) -DISPLAY_LIST(ssl_dl_quicksand_pit_begin) -DISPLAY_LIST(ssl_dl_quicksand_pit_end) -DISPLAY_LIST(ssl_dl_pyramid_quicksand_pit_begin) -DISPLAY_LIST(ssl_dl_pyramid_quicksand_pit_end) -DISPLAY_LIST(ssl_dl_quicksand_pit) -DISPLAY_LIST(ssl_dl_pyramid_quicksand_pit_static) -DISPLAY_LIST(ssl_seg7_dl_07021A08) -DISPLAY_LIST(ssl_seg7_dl_07021DE8) -DISPLAY_LIST(ssl_seg7_dl_070220A8) -DISPLAY_LIST(ssl_seg7_dl_070221E8) -DISPLAY_LIST(ssl_seg7_dl_07022CF8) -DISPLAY_LIST(ssl_seg7_dl_070233A8) -DISPLAY_LIST(ssl_seg7_dl_070235C0) -DISPLAY_LIST(ssl_seg7_dl_0700BF18) -DISPLAY_LIST(ssl_seg7_dl_070228A8) -DISPLAY_LIST(ssl_seg7_dl_070229E8) -DISPLAY_LIST(ssl_seg7_dl_0700FCE0) -DISPLAY_LIST(thi_seg7_dl_07005260) -DISPLAY_LIST(thi_seg7_dl_07006968) -DISPLAY_LIST(thi_seg7_dl_07007008) -DISPLAY_LIST(thi_seg7_dl_070072E8) -DISPLAY_LIST(thi_seg7_dl_070073C0) -DISPLAY_LIST(thi_seg7_dl_07007648) -DISPLAY_LIST(thi_seg7_dl_07007930) -DISPLAY_LIST(thi_seg7_dl_07007538) -DISPLAY_LIST(thi_seg7_dl_07007C20) -DISPLAY_LIST(thi_seg7_dl_07009670) -DISPLAY_LIST(thi_seg7_dl_07009D50) -DISPLAY_LIST(thi_seg7_dl_07009F58) -DISPLAY_LIST(totwc_seg7_dl_07005D28) -DISPLAY_LIST(totwc_seg7_dl_07007048) -DISPLAY_LIST(totwc_seg7_dl_070078B8) -DISPLAY_LIST(totwc_seg7_dl_070079A8) -DISPLAY_LIST(ttc_dl_surface_treadmill_begin) -DISPLAY_LIST(ttc_dl_surface_treadmill_end) -DISPLAY_LIST(ttc_dl_surface_treadmill) -DISPLAY_LIST(ttc_seg7_dl_0700AD38) -DISPLAY_LIST(ttc_seg7_dl_0700B1D8) -DISPLAY_LIST(ttc_seg7_dl_0700E878) -DISPLAY_LIST(ttc_seg7_dl_07011B38) -DISPLAY_LIST(ttc_seg7_dl_070116A8) -DISPLAY_LIST(ttc_seg7_dl_07012278) -DISPLAY_LIST(ttc_seg7_dl_0700FBB8) -DISPLAY_LIST(ttc_seg7_dl_0700F760) -DISPLAY_LIST(ttc_seg7_dl_07011040) -DISPLAY_LIST(ttc_seg7_dl_07011360) -DISPLAY_LIST(ttc_seg7_dl_070102B8) -DISPLAY_LIST(ttc_seg7_dl_0700ECB8) -DISPLAY_LIST(ttc_seg7_dl_07010868) -DISPLAY_LIST(ttc_seg7_dl_0700EFE0) -DISPLAY_LIST(ttc_seg7_dl_07010D38) -DISPLAY_LIST(ttc_seg7_dl_07012148) -DISPLAY_LIST(ttc_seg7_dl_0700FFE8) -DISPLAY_LIST(ttc_seg7_dl_07012028) -DISPLAY_LIST(ttm_dl_waterfall) -DISPLAY_LIST(ttm_dl_bottom_waterfall) -DISPLAY_LIST(ttm_dl_puddle_waterfall) -DISPLAY_LIST(ttm_seg7_dl_07012388) -DISPLAY_LIST(ttm_seg7_dl_070123A0) -DISPLAY_LIST(ttm_seg7_dl_070123B8) -DISPLAY_LIST(ttm_seg7_dl_07012410) -DISPLAY_LIST(ttm_seg7_dl_0700A120) -DISPLAY_LIST(ttm_seg7_dl_0700CAE0) -DISPLAY_LIST(ttm_seg7_dl_0700CD10) -DISPLAY_LIST(ttm_seg7_dl_0700D1D8) -DISPLAY_LIST(ttm_seg7_dl_0700D688) -DISPLAY_LIST(ttm_seg7_dl_0700DF78) -DISPLAY_LIST(ttm_seg7_dl_0700E308) -DISPLAY_LIST(ttm_seg7_dl_0700EAC8) -DISPLAY_LIST(ttm_seg7_dl_0700EC58) -DISPLAY_LIST(ttm_seg7_dl_0700F270) -DISPLAY_LIST(ttm_seg7_dl_0700FA18) -DISPLAY_LIST(ttm_seg7_dl_07010978) -DISPLAY_LIST(ttm_seg7_dl_07010A68) -DISPLAY_LIST(ttm_seg7_dl_07011128) -DISPLAY_LIST(ttm_seg7_dl_0700A2E0) -DISPLAY_LIST(ttm_seg7_dl_07011608) -DISPLAY_LIST(ttm_seg7_dl_07011C78) -DISPLAY_LIST(ttm_seg7_dl_07011D78) -DISPLAY_LIST(ttm_seg7_dl_0700A8C0) -DISPLAY_LIST(ttm_seg7_dl_0700AB08) -DISPLAY_LIST(ttm_seg7_dl_0700AF90) -DISPLAY_LIST(ttm_seg7_dl_0700B0D0) -DISPLAY_LIST(ttm_seg7_dl_0700B530) -DISPLAY_LIST(ttm_seg7_dl_0700B670) -DISPLAY_LIST(ttm_seg7_dl_0700BAD0) -DISPLAY_LIST(ttm_seg7_dl_0700BC10) -DISPLAY_LIST(ttm_seg7_dl_0700BE20) -DISPLAY_LIST(ttm_seg7_dl_0700C070) -DISPLAY_LIST(ttm_seg7_dl_0700C408) -DISPLAY_LIST(ttm_seg7_dl_0701D798) -DISPLAY_LIST(ttm_seg7_dl_0701DBB8) -DISPLAY_LIST(ttm_seg7_dl_070249A0) -DISPLAY_LIST(ttm_seg7_dl_07024C78) -DISPLAY_LIST(ttm_seg7_dl_07025F48) -DISPLAY_LIST(ttm_seg7_dl_0702A1B8) -DISPLAY_LIST(ttm_seg7_dl_0702A8A0) -DISPLAY_LIST(ttm_seg7_dl_0702A9C0) -DISPLAY_LIST(ttm_seg7_dl_0702AC78) -DISPLAY_LIST(ttm_seg7_dl_07012270) -DISPLAY_LIST(ttm_seg7_dl_0702BB60) -DISPLAY_LIST(ttm_seg7_dl_07013430) -DISPLAY_LIST(ttm_seg7_dl_07013608) -DISPLAY_LIST(ttm_seg7_dl_0702AB90) -DISPLAY_LIST(ttm_seg7_dl_0702AAA8) -DISPLAY_LIST(vcutm_seg7_dl_07007E88) -DISPLAY_LIST(vcutm_seg7_dl_070080D0) -DISPLAY_LIST(vcutm_seg7_dl_07008E10) -DISPLAY_LIST(vcutm_seg7_dl_070093E8) -DISPLAY_LIST(vcutm_seg7_dl_070096E0) -DISPLAY_LIST(wdw_seg7_dl_07009AB0) -DISPLAY_LIST(wdw_seg7_dl_0700A138) -DISPLAY_LIST(wdw_seg7_dl_07012798) -DISPLAY_LIST(wdw_seg7_dl_07011E48) -DISPLAY_LIST(wdw_seg7_dl_07012258) -DISPLAY_LIST(wdw_seg7_dl_07012E88) -DISPLAY_LIST(wdw_seg7_dl_07012908) -DISPLAY_LIST(wdw_seg7_dl_07013B70) -DISPLAY_LIST(wdw_seg7_dl_07013490) -DISPLAY_LIST(wdw_seg7_dl_07013E40) -DISPLAY_LIST(wdw_seg7_dl_070140E0) -DISPLAY_LIST(wdw_seg7_dl_07012B90) -DISPLAY_LIST(wdw_seg7_dl_070131B8) -DISPLAY_LIST(wf_seg7_dl_070050C8) -DISPLAY_LIST(wf_seg7_dl_070087B0) -DISPLAY_LIST(wf_seg7_dl_07008FE8) -DISPLAY_LIST(wf_seg7_dl_07009278) -DISPLAY_LIST(wf_seg7_dl_07009780) -DISPLAY_LIST(wf_seg7_dl_07009890) -DISPLAY_LIST(wf_seg7_dl_07009DB0) -DISPLAY_LIST(wf_seg7_dl_0700A170) -DISPLAY_LIST(wf_seg7_dl_0700ABA0) -DISPLAY_LIST(wf_seg7_dl_0700AEC8) -DISPLAY_LIST(wf_seg7_dl_0700AFB8) -DISPLAY_LIST(wf_seg7_dl_0700BA28) -DISPLAY_LIST(wf_seg7_dl_0700BF50) -DISPLAY_LIST(wf_seg7_dl_0700D028) -DISPLAY_LIST(wf_seg7_dl_0700D300) -DISPLAY_LIST(wf_seg7_dl_070052B8) -DISPLAY_LIST(wf_seg7_dl_07005538) -DISPLAY_LIST(wf_seg7_dl_07005690) -DISPLAY_LIST(wf_seg7_dl_07005DD8) -DISPLAY_LIST(wf_seg7_dl_07005EE8) -DISPLAY_LIST(wf_seg7_dl_070064E8) -DISPLAY_LIST(wf_seg7_dl_070065F8) -DISPLAY_LIST(wf_seg7_dl_07006820) -DISPLAY_LIST(wf_seg7_dl_07007220) -DISPLAY_LIST(wf_seg7_dl_07007518) -DISPLAY_LIST(wf_seg7_dl_0700EDC0) -DISPLAY_LIST(wf_seg7_dl_0700F340) -DISPLAY_LIST(wf_seg7_dl_0700F1A8) -DISPLAY_LIST(wf_seg7_dl_0700F018) -DISPLAY_LIST(wf_seg7_dl_0700F610) -DISPLAY_LIST(wf_seg7_dl_0700F6C0) -DISPLAY_LIST(wf_seg7_dl_0700DE20) -DISPLAY_LIST(wf_seg7_dl_0700E760) -DISPLAY_LIST(wf_seg7_dl_0700E9B8) -DISPLAY_LIST(wf_seg7_dl_0700EB40) -DISPLAY_LIST(wf_seg7_dl_0700D708) -DISPLAY_LIST(wf_seg7_dl_0700D9F0) -DISPLAY_LIST(wf_seg7_dl_0700F7F8) -DISPLAY_LIST(wf_seg7_dl_0700E3D0) -DISPLAY_LIST(wf_seg7_dl_0700E0F0) -DISPLAY_LIST(wmotr_seg7_dl_0700C1F8) -DISPLAY_LIST(wmotr_seg7_dl_0700EFD8) -DISPLAY_LIST(wmotr_seg7_dl_07010608) -DISPLAY_LIST(dl_billboard_num3_0) -DISPLAY_LIST(dl_billboard_num3_1) -DISPLAY_LIST(dl_billboard_num3_2) -DISPLAY_LIST(dl_billboard_num3_3) -DISPLAY_LIST(dl_billboard_num3_4) -DISPLAY_LIST(dl_billboard_num3_5) -DISPLAY_LIST(dl_billboard_num3_6) -DISPLAY_LIST(dl_billboard_num3_7) -DISPLAY_LIST(dl_billboard_num3_8) -DISPLAY_LIST(dl_billboard_num3_9) -DISPLAY_LIST(dl_billboard_num3_0x) -DISPLAY_LIST(dl_billboard_num3_1x) -DISPLAY_LIST(dl_billboard_num3_2x) -DISPLAY_LIST(dl_billboard_num3_3x) -DISPLAY_LIST(dl_billboard_num3_4x) -DISPLAY_LIST(dl_billboard_num3_5x) -DISPLAY_LIST(dl_billboard_num3_6x) -DISPLAY_LIST(dl_billboard_num3_7x) -DISPLAY_LIST(dl_billboard_num3_8x) -DISPLAY_LIST(dl_billboard_num3_9x) -DISPLAY_LIST(dl_billboard_num3_x0) -DISPLAY_LIST(dl_billboard_num3_x1) -DISPLAY_LIST(dl_billboard_num3_x2) -DISPLAY_LIST(dl_billboard_num3_x3) -DISPLAY_LIST(dl_billboard_num3_x4) -DISPLAY_LIST(dl_billboard_num3_x5) -DISPLAY_LIST(dl_billboard_num3_x6) -DISPLAY_LIST(dl_billboard_num3_x7) -DISPLAY_LIST(dl_billboard_num3_x8) -DISPLAY_LIST(dl_billboard_num3_x9) -DISPLAY_LIST(dl_billboard_num3_0xx) -DISPLAY_LIST(dl_billboard_num3_1xx) -DISPLAY_LIST(dl_billboard_num3_2xx) -DISPLAY_LIST(dl_billboard_num3_3xx) -DISPLAY_LIST(dl_billboard_num3_4xx) -DISPLAY_LIST(dl_billboard_num3_5xx) -DISPLAY_LIST(dl_billboard_num3_6xx) -DISPLAY_LIST(dl_billboard_num3_7xx) -DISPLAY_LIST(dl_billboard_num3_8xx) -DISPLAY_LIST(dl_billboard_num3_9xx) -DISPLAY_LIST(dl_billboard_num3_x0x) -DISPLAY_LIST(dl_billboard_num3_x1x) -DISPLAY_LIST(dl_billboard_num3_x2x) -DISPLAY_LIST(dl_billboard_num3_x3x) -DISPLAY_LIST(dl_billboard_num3_x4x) -DISPLAY_LIST(dl_billboard_num3_x5x) -DISPLAY_LIST(dl_billboard_num3_x6x) -DISPLAY_LIST(dl_billboard_num3_x7x) -DISPLAY_LIST(dl_billboard_num3_x8x) -DISPLAY_LIST(dl_billboard_num3_x9x) -DISPLAY_LIST(dl_billboard_num3_xx0) -DISPLAY_LIST(dl_billboard_num3_xx1) -DISPLAY_LIST(dl_billboard_num3_xx2) -DISPLAY_LIST(dl_billboard_num3_xx3) -DISPLAY_LIST(dl_billboard_num3_xx4) -DISPLAY_LIST(dl_billboard_num3_xx5) -DISPLAY_LIST(dl_billboard_num3_xx6) -DISPLAY_LIST(dl_billboard_num3_xx7) -DISPLAY_LIST(dl_billboard_num3_xx8) -DISPLAY_LIST(dl_billboard_num3_xx9)