gemba 0.1.1 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (285) hide show
  1. checksums.yaml +4 -4
  2. data/THIRD_PARTY_NOTICES +37 -2
  3. data/assets/placeholder_boxart.png +0 -0
  4. data/bin/gemba +2 -2
  5. data/ext/gemba/extconf.rb +23 -1
  6. data/ext/gemba/gemba_ext.c +436 -2
  7. data/ext/gemba/gemba_ext.h +2 -0
  8. data/gemba.gemspec +5 -3
  9. data/lib/gemba/achievements/achievement.rb +23 -0
  10. data/lib/gemba/achievements/backend.rb +186 -0
  11. data/lib/gemba/achievements/cache.rb +70 -0
  12. data/lib/gemba/achievements/credentials_presenter.rb +142 -0
  13. data/lib/gemba/achievements/fake_backend.rb +205 -0
  14. data/lib/gemba/achievements/null_backend.rb +11 -0
  15. data/lib/gemba/achievements/offline_backend.rb +168 -0
  16. data/lib/gemba/achievements/retro_achievements/backend.rb +453 -0
  17. data/lib/gemba/achievements/retro_achievements/cli_sync_requester.rb +64 -0
  18. data/lib/gemba/achievements/retro_achievements/ping_worker.rb +27 -0
  19. data/lib/gemba/achievements.rb +19 -0
  20. data/lib/gemba/achievements_window.rb +556 -0
  21. data/lib/gemba/app_controller.rb +1015 -0
  22. data/lib/gemba/bios.rb +54 -0
  23. data/lib/gemba/boxart_fetcher/libretro_backend.rb +39 -0
  24. data/lib/gemba/boxart_fetcher/null_backend.rb +12 -0
  25. data/lib/gemba/boxart_fetcher.rb +79 -0
  26. data/lib/gemba/bus_emitter.rb +13 -0
  27. data/lib/gemba/child_window.rb +24 -1
  28. data/lib/gemba/cli/commands/config_cmd.rb +83 -0
  29. data/lib/gemba/cli/commands/decode.rb +154 -0
  30. data/lib/gemba/cli/commands/patch.rb +78 -0
  31. data/lib/gemba/cli/commands/play.rb +78 -0
  32. data/lib/gemba/cli/commands/record.rb +114 -0
  33. data/lib/gemba/cli/commands/replay.rb +161 -0
  34. data/lib/gemba/cli/commands/retro_achievements.rb +213 -0
  35. data/lib/gemba/cli/commands/version.rb +22 -0
  36. data/lib/gemba/cli.rb +52 -364
  37. data/lib/gemba/config.rb +134 -1
  38. data/lib/gemba/data/gb_games.json +1 -0
  39. data/lib/gemba/data/gb_md5.json +1 -0
  40. data/lib/gemba/data/gba_games.json +1 -0
  41. data/lib/gemba/data/gba_md5.json +1 -0
  42. data/lib/gemba/data/gbc_games.json +1 -0
  43. data/lib/gemba/data/gbc_md5.json +1 -0
  44. data/lib/gemba/emulator_frame.rb +1060 -0
  45. data/lib/gemba/event_bus.rb +48 -0
  46. data/lib/gemba/frame_stack.rb +60 -0
  47. data/lib/gemba/game_index.rb +84 -0
  48. data/lib/gemba/game_picker_frame.rb +268 -0
  49. data/lib/gemba/gamepad_map.rb +103 -0
  50. data/lib/gemba/headless.rb +6 -5
  51. data/lib/gemba/headless_player.rb +33 -3
  52. data/lib/gemba/help_window.rb +61 -0
  53. data/lib/gemba/hotkey_map.rb +3 -1
  54. data/lib/gemba/input_recorder.rb +107 -0
  55. data/lib/gemba/input_replayer.rb +119 -0
  56. data/lib/gemba/keyboard_map.rb +90 -0
  57. data/lib/gemba/locales/en.yml +97 -5
  58. data/lib/gemba/locales/ja.yml +97 -5
  59. data/lib/gemba/main_window.rb +56 -0
  60. data/lib/gemba/modal_stack.rb +81 -0
  61. data/lib/gemba/patcher_window.rb +223 -0
  62. data/lib/gemba/platform/gb.rb +21 -0
  63. data/lib/gemba/platform/gba.rb +21 -0
  64. data/lib/gemba/platform/gbc.rb +23 -0
  65. data/lib/gemba/platform.rb +20 -0
  66. data/lib/gemba/platform_open.rb +19 -0
  67. data/lib/gemba/recorder.rb +4 -3
  68. data/lib/gemba/replay_player.rb +691 -0
  69. data/lib/gemba/rom_info.rb +57 -0
  70. data/lib/gemba/rom_info_window.rb +16 -3
  71. data/lib/gemba/rom_library.rb +106 -0
  72. data/lib/gemba/rom_overrides.rb +47 -0
  73. data/lib/gemba/rom_patcher/bps.rb +161 -0
  74. data/lib/gemba/rom_patcher/ips.rb +101 -0
  75. data/lib/gemba/rom_patcher/ups.rb +118 -0
  76. data/lib/gemba/rom_patcher.rb +109 -0
  77. data/lib/gemba/{rom_loader.rb → rom_resolver.rb} +7 -6
  78. data/lib/gemba/runtime.rb +59 -26
  79. data/lib/gemba/save_state_manager.rb +4 -7
  80. data/lib/gemba/save_state_picker.rb +17 -4
  81. data/lib/gemba/session_logger.rb +64 -0
  82. data/lib/gemba/settings/audio_tab.rb +77 -0
  83. data/lib/gemba/settings/gamepad_tab.rb +351 -0
  84. data/lib/gemba/settings/hotkeys_tab.rb +259 -0
  85. data/lib/gemba/settings/paths.rb +11 -0
  86. data/lib/gemba/settings/recording_tab.rb +83 -0
  87. data/lib/gemba/settings/save_states_tab.rb +91 -0
  88. data/lib/gemba/settings/system_tab.rb +362 -0
  89. data/lib/gemba/settings/video_tab.rb +318 -0
  90. data/lib/gemba/settings_window.rb +162 -1036
  91. data/lib/gemba/version.rb +1 -1
  92. data/lib/gemba/virtual_keyboard.rb +19 -0
  93. data/lib/gemba.rb +2 -12
  94. data/test/achievements_window/test_bulk_sync.rb +218 -0
  95. data/test/achievements_window/test_bus_events.rb +125 -0
  96. data/test/achievements_window/test_close_confirmation.rb +201 -0
  97. data/test/achievements_window/test_initial_state.rb +164 -0
  98. data/test/achievements_window/test_sorting.rb +227 -0
  99. data/test/achievements_window/test_tree_rendering.rb +133 -0
  100. data/test/fixtures/fake_bios.bin +0 -0
  101. data/test/fixtures/pong.gba +0 -0
  102. data/test/fixtures/test.gb +0 -0
  103. data/test/fixtures/test.gbc +0 -0
  104. data/test/fixtures/test_quicksave.ss +0 -0
  105. data/test/screenshots/no_focus.png +0 -0
  106. data/test/shared/teek_test_worker.rb +17 -1
  107. data/test/shared/tk_test_helper.rb +91 -4
  108. data/test/support/achievements_window_helpers.rb +18 -0
  109. data/test/support/fake_core.rb +25 -0
  110. data/test/support/fake_ra_runtime.rb +74 -0
  111. data/test/support/fake_requester.rb +68 -0
  112. data/test/support/player_helpers.rb +20 -5
  113. data/test/test_achievement.rb +32 -0
  114. data/test/{test_player.rb → test_app_controller.rb} +353 -85
  115. data/test/test_bios.rb +123 -0
  116. data/test/test_boxart_fetcher.rb +150 -0
  117. data/test/test_cli.rb +17 -265
  118. data/test/test_cli_config.rb +64 -0
  119. data/test/test_cli_decode.rb +97 -0
  120. data/test/test_cli_patch.rb +58 -0
  121. data/test/test_cli_play.rb +213 -0
  122. data/test/test_cli_ra.rb +175 -0
  123. data/test/test_cli_record.rb +69 -0
  124. data/test/test_cli_replay.rb +72 -0
  125. data/test/test_cli_sync_requester.rb +152 -0
  126. data/test/test_cli_version.rb +27 -0
  127. data/test/test_config.rb +2 -3
  128. data/test/test_config_ra.rb +69 -0
  129. data/test/test_core.rb +62 -1
  130. data/test/test_credentials_presenter.rb +192 -0
  131. data/test/test_event_bus.rb +100 -0
  132. data/test/test_fake_backend_achievements.rb +130 -0
  133. data/test/test_fake_backend_auth.rb +68 -0
  134. data/test/test_game_index.rb +77 -0
  135. data/test/test_game_picker_frame.rb +310 -0
  136. data/test/test_gamepad_map.rb +1 -3
  137. data/test/test_headless_player.rb +17 -3
  138. data/test/test_help_window.rb +82 -0
  139. data/test/test_hotkey_map.rb +22 -1
  140. data/test/test_input_recorder.rb +179 -0
  141. data/test/test_input_replay_determinism.rb +113 -0
  142. data/test/test_input_replayer.rb +162 -0
  143. data/test/test_keyboard_map.rb +1 -3
  144. data/test/test_libretro_backend.rb +41 -0
  145. data/test/test_locale.rb +1 -1
  146. data/test/test_logging.rb +123 -0
  147. data/test/test_null_backend.rb +42 -0
  148. data/test/test_offline_backend.rb +116 -0
  149. data/test/test_overlay_renderer.rb +1 -1
  150. data/test/test_platform.rb +149 -0
  151. data/test/test_ra_backend.rb +313 -0
  152. data/test/test_ra_backend_unlock_gate.rb +56 -0
  153. data/test/test_recorder.rb +0 -3
  154. data/test/test_replay_player.rb +316 -0
  155. data/test/test_rom_info.rb +149 -0
  156. data/test/test_rom_overrides.rb +86 -0
  157. data/test/test_rom_patcher.rb +382 -0
  158. data/test/{test_rom_loader.rb → test_rom_resolver.rb} +25 -26
  159. data/test/test_save_state_manager.rb +2 -4
  160. data/test/test_settings_audio.rb +107 -0
  161. data/test/test_settings_hotkeys.rb +83 -66
  162. data/test/test_settings_recording.rb +49 -0
  163. data/test/test_settings_save_states.rb +97 -0
  164. data/test/test_settings_system.rb +133 -0
  165. data/test/test_settings_video.rb +450 -0
  166. data/test/test_settings_window.rb +76 -507
  167. data/test/test_tip_service.rb +6 -6
  168. data/test/test_toast_overlay.rb +1 -1
  169. data/test/test_virtual_events.rb +156 -0
  170. data/test/test_virtual_keyboard.rb +1 -1
  171. data/vendor/rcheevos/CHANGELOG.md +495 -0
  172. data/vendor/rcheevos/LICENSE +21 -0
  173. data/vendor/rcheevos/Package.swift +33 -0
  174. data/vendor/rcheevos/README.md +67 -0
  175. data/vendor/rcheevos/include/module.modulemap +70 -0
  176. data/vendor/rcheevos/include/rc_api_editor.h +296 -0
  177. data/vendor/rcheevos/include/rc_api_info.h +280 -0
  178. data/vendor/rcheevos/include/rc_api_request.h +77 -0
  179. data/vendor/rcheevos/include/rc_api_runtime.h +417 -0
  180. data/vendor/rcheevos/include/rc_api_user.h +262 -0
  181. data/vendor/rcheevos/include/rc_client.h +877 -0
  182. data/vendor/rcheevos/include/rc_client_raintegration.h +101 -0
  183. data/vendor/rcheevos/include/rc_consoles.h +138 -0
  184. data/vendor/rcheevos/include/rc_error.h +59 -0
  185. data/vendor/rcheevos/include/rc_export.h +100 -0
  186. data/vendor/rcheevos/include/rc_hash.h +200 -0
  187. data/vendor/rcheevos/include/rc_runtime.h +148 -0
  188. data/vendor/rcheevos/include/rc_runtime_types.h +452 -0
  189. data/vendor/rcheevos/include/rc_util.h +51 -0
  190. data/vendor/rcheevos/include/rcheevos.h +8 -0
  191. data/vendor/rcheevos/src/rapi/rc_api_common.c +1379 -0
  192. data/vendor/rcheevos/src/rapi/rc_api_common.h +88 -0
  193. data/vendor/rcheevos/src/rapi/rc_api_editor.c +625 -0
  194. data/vendor/rcheevos/src/rapi/rc_api_info.c +587 -0
  195. data/vendor/rcheevos/src/rapi/rc_api_runtime.c +901 -0
  196. data/vendor/rcheevos/src/rapi/rc_api_user.c +483 -0
  197. data/vendor/rcheevos/src/rc_client.c +6941 -0
  198. data/vendor/rcheevos/src/rc_client_external.c +281 -0
  199. data/vendor/rcheevos/src/rc_client_external.h +177 -0
  200. data/vendor/rcheevos/src/rc_client_external_versions.h +171 -0
  201. data/vendor/rcheevos/src/rc_client_internal.h +409 -0
  202. data/vendor/rcheevos/src/rc_client_raintegration.c +566 -0
  203. data/vendor/rcheevos/src/rc_client_raintegration_internal.h +61 -0
  204. data/vendor/rcheevos/src/rc_client_types.natvis +396 -0
  205. data/vendor/rcheevos/src/rc_compat.c +251 -0
  206. data/vendor/rcheevos/src/rc_compat.h +121 -0
  207. data/vendor/rcheevos/src/rc_libretro.c +915 -0
  208. data/vendor/rcheevos/src/rc_libretro.h +98 -0
  209. data/vendor/rcheevos/src/rc_util.c +199 -0
  210. data/vendor/rcheevos/src/rc_version.c +11 -0
  211. data/vendor/rcheevos/src/rc_version.h +32 -0
  212. data/vendor/rcheevos/src/rcheevos/alloc.c +312 -0
  213. data/vendor/rcheevos/src/rcheevos/condition.c +754 -0
  214. data/vendor/rcheevos/src/rcheevos/condset.c +777 -0
  215. data/vendor/rcheevos/src/rcheevos/consoleinfo.c +1215 -0
  216. data/vendor/rcheevos/src/rcheevos/format.c +330 -0
  217. data/vendor/rcheevos/src/rcheevos/lboard.c +287 -0
  218. data/vendor/rcheevos/src/rcheevos/memref.c +805 -0
  219. data/vendor/rcheevos/src/rcheevos/operand.c +607 -0
  220. data/vendor/rcheevos/src/rcheevos/rc_internal.h +390 -0
  221. data/vendor/rcheevos/src/rcheevos/rc_runtime_types.natvis +541 -0
  222. data/vendor/rcheevos/src/rcheevos/rc_validate.c +1406 -0
  223. data/vendor/rcheevos/src/rcheevos/rc_validate.h +18 -0
  224. data/vendor/rcheevos/src/rcheevos/richpresence.c +922 -0
  225. data/vendor/rcheevos/src/rcheevos/runtime.c +852 -0
  226. data/vendor/rcheevos/src/rcheevos/runtime_progress.c +1073 -0
  227. data/vendor/rcheevos/src/rcheevos/trigger.c +344 -0
  228. data/vendor/rcheevos/src/rcheevos/value.c +935 -0
  229. data/vendor/rcheevos/src/rhash/aes.c +480 -0
  230. data/vendor/rcheevos/src/rhash/aes.h +49 -0
  231. data/vendor/rcheevos/src/rhash/cdreader.c +838 -0
  232. data/vendor/rcheevos/src/rhash/hash.c +1402 -0
  233. data/vendor/rcheevos/src/rhash/hash_disc.c +1340 -0
  234. data/vendor/rcheevos/src/rhash/hash_encrypted.c +566 -0
  235. data/vendor/rcheevos/src/rhash/hash_rom.c +426 -0
  236. data/vendor/rcheevos/src/rhash/hash_zip.c +460 -0
  237. data/vendor/rcheevos/src/rhash/md5.c +382 -0
  238. data/vendor/rcheevos/src/rhash/md5.h +91 -0
  239. data/vendor/rcheevos/src/rhash/rc_hash_internal.h +116 -0
  240. data/vendor/rcheevos/test/libretro.h +205 -0
  241. data/vendor/rcheevos/test/rapi/test_rc_api_common.c +941 -0
  242. data/vendor/rcheevos/test/rapi/test_rc_api_editor.c +931 -0
  243. data/vendor/rcheevos/test/rapi/test_rc_api_info.c +545 -0
  244. data/vendor/rcheevos/test/rapi/test_rc_api_runtime.c +2213 -0
  245. data/vendor/rcheevos/test/rapi/test_rc_api_user.c +998 -0
  246. data/vendor/rcheevos/test/rcheevos/mock_memory.h +32 -0
  247. data/vendor/rcheevos/test/rcheevos/test_condition.c +570 -0
  248. data/vendor/rcheevos/test/rcheevos/test_condset.c +5170 -0
  249. data/vendor/rcheevos/test/rcheevos/test_consoleinfo.c +203 -0
  250. data/vendor/rcheevos/test/rcheevos/test_format.c +112 -0
  251. data/vendor/rcheevos/test/rcheevos/test_lboard.c +746 -0
  252. data/vendor/rcheevos/test/rcheevos/test_memref.c +520 -0
  253. data/vendor/rcheevos/test/rcheevos/test_operand.c +692 -0
  254. data/vendor/rcheevos/test/rcheevos/test_rc_validate.c +502 -0
  255. data/vendor/rcheevos/test/rcheevos/test_richpresence.c +1564 -0
  256. data/vendor/rcheevos/test/rcheevos/test_runtime.c +1667 -0
  257. data/vendor/rcheevos/test/rcheevos/test_runtime_progress.c +1821 -0
  258. data/vendor/rcheevos/test/rcheevos/test_timing.c +166 -0
  259. data/vendor/rcheevos/test/rcheevos/test_trigger.c +2521 -0
  260. data/vendor/rcheevos/test/rcheevos/test_value.c +870 -0
  261. data/vendor/rcheevos/test/rcheevos-test.sln +46 -0
  262. data/vendor/rcheevos/test/rcheevos-test.vcxproj +239 -0
  263. data/vendor/rcheevos/test/rcheevos-test.vcxproj.filters +335 -0
  264. data/vendor/rcheevos/test/rhash/data.c +657 -0
  265. data/vendor/rcheevos/test/rhash/data.h +32 -0
  266. data/vendor/rcheevos/test/rhash/mock_filereader.c +236 -0
  267. data/vendor/rcheevos/test/rhash/mock_filereader.h +31 -0
  268. data/vendor/rcheevos/test/rhash/test_cdreader.c +920 -0
  269. data/vendor/rcheevos/test/rhash/test_hash.c +310 -0
  270. data/vendor/rcheevos/test/rhash/test_hash_disc.c +1450 -0
  271. data/vendor/rcheevos/test/rhash/test_hash_rom.c +899 -0
  272. data/vendor/rcheevos/test/rhash/test_hash_zip.c +551 -0
  273. data/vendor/rcheevos/test/test.c +113 -0
  274. data/vendor/rcheevos/test/test_framework.h +205 -0
  275. data/vendor/rcheevos/test/test_rc_client.c +10509 -0
  276. data/vendor/rcheevos/test/test_rc_client_external.c +2197 -0
  277. data/vendor/rcheevos/test/test_rc_client_raintegration.c +441 -0
  278. data/vendor/rcheevos/test/test_rc_libretro.c +952 -0
  279. data/vendor/rcheevos/test/test_types.natvis +9 -0
  280. data/vendor/rcheevos/validator/validator.c +658 -0
  281. data/vendor/rcheevos/validator/validator.vcxproj +152 -0
  282. data/vendor/rcheevos/validator/validator.vcxproj.filters +82 -0
  283. metadata +274 -11
  284. data/lib/gemba/input_mappings.rb +0 -214
  285. data/lib/gemba/player.rb +0 -1525
@@ -0,0 +1 @@
1
+ {"CGB-AAXD":"Pokemon - Silberne Edition (Germany) (Beta) (SGB Enhanced) (GB Compatible)","CGB-ADVJ":"Granduel - Shinki Dungeon no Hihou (Japan)","CGB-AEBE":"Earthworm Jim - Menace 2 the Galaxy (USA, Europe) (GB Compatible)","CGB-AEDJ":"Dragon Quest I & II (Japan) (SGB Enhanced) (GB Compatible)","CGB-AF2J":"Konchuu Hakase 3 (Japan) (Beta)","CGB-AFRE":"Frogger (USA) (Rev 2) (GB Compatible)","CGB-AH9E":"Chase H.Q. - Secret Police (USA) (SGB Enhanced) (GB Compatible)","CGB-AHYE":"Super Mario Bros. Deluxe (USA, Europe) (Rev 1)","CGB-AIVE":"Space Invaders (USA, Europe) (GB Compatible)","CGB-AJUE":"Jeremy McGrath Supercross 2000 (USA, Europe)","CGB-AKVJ":"Pokemon Picross (Japan) (Proto) (SGB Enhanced) (GB Compatible)","CGB-AM7J":"Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (Rev 2) (GB Compatible)","CGB-APJJ":"Pocket Cooking (Japan) (Beta)","CGB-AQCE":"Ms. Pac-Man - Special Color Edition (USA) (SGB Enhanced) (GB Compatible)","CGB-ASXE":"San Francisco Rush 2049 (USA, Europe)","CGB-AT9E":"Tomb Raider (USA, Europe) (En,Fr,De,Es,It) (Beta)","CGB-AVMU":"Rugrats - Time Travelers (USA, Europe) (GB Compatible)","CGB-AW2J":"Wario Land 2 (Japan) (SGB Enhanced) (GB Compatible)","CGB-AW8A":"Wario Land 3 (World) (En,Ja)","CGB-AWXE":"Mario Golf (USA)","CGB-AYKJ":"Yu-Gi-Oh! Duel Monsters II - Dark Duel Stories (Japan) (SGB Enhanced) (GB Compatible)","CGB-AZLE":"Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (Beta) (SGB Enhanced) (GB Compatible)","CGB-AZLJ":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","CGB-AZLP":"Legend of Zelda, The - Link's Awakening DX (Europe) (Rev 2) (Beta) (SGB Enhanced) (GB Compatible)","CGB-AZTE":"All Star Tennis '99 (USA) (Proto) (GB Compatible)","CGB-B3AE":"Shantae (World) (GBA Enhanced) (Switch)","CGB-B7IJ":"Nakayoshi Pet Series 3 - Kawaii Koinu (Japan)","CGB-B7NJ":"Nakayoshi Pet Series 4 - Kawaii Koneko (Japan)","CGB-BB3J":"Bakuten Shoot Beyblade (Japan)","CGB-BBZS":"Dragon Ball Z - Guerreros de Leyenda (Spain)","CGB-BCUJ":"Hamster Paradise 4 (Japan)","CGB-BDDE":"Donkey Kong Country (USA, Europe) (En,Fr,De,Es,It)","CGB-BDUF":"Doug - La Grande Aventure (France)","CGB-BEDE":"Gold and Glory - The Road to El Dorado (USA)","CGB-BFUU":"Shrek - Fairy Tale Freakdown (USA, Europe) (En,Fr,De,Es,It)","CGB-BGCJ":"Get!! Loto Club (Japan) (Proto) (GB Compatible)","CGB-BGKJ":"Doraemon no Study Boy - Gakushuu Kanji Game (Japan)","CGB-BHMJ":"Hamster Paradise 2 (Japan)","CGB-BIGP":"Inspector Gadget - Operation Madkactus (Europe) (Fr) (Beta)","CGB-BJAE":"NBA Jam 2001 (USA, Europe) (Beta)","CGB-BK7J":"Hello Kitty no Happy House (Japan)","CGB-BKHJ":"Kisekae Series 3 - Kisekae Hamster (Japan)","CGB-BKIE":"Kelly Club (USA)","CGB-BMHP":"Zidane - Football Generation (Europe) (En,Fr,De,Es,It) (Beta)","CGB-BO7E":"007 - The World Is Not Enough (USA, Europe)","CGB-BP7J":"Pokemon Card GB 2 - GR Dan Sanjou! (Japan)","CGB-BPNE":"Pokemon Puzzle Challenge (USA, Australia)","CGB-BQQJ":"Doraemon no Study Boy - Kuku Game (Japan)","CGB-BRZP":"Freestyle Scooter (Europe)","CGB-BT5E":"Toy Story Racer (USA, Europe)","CGB-BTFE":"Tony Hawk's Pro Skater (USA, Europe)","CGB-BTMJ":"Metamode (Japan)","CGB-BTOE":"Towers II - Plight of the Stargazer (USA) (Proto 1)","CGB-BTQE":"Tom and Jerry in - Mouse Attacks! (USA) (Rev 1)","CGB-BTXJ":"Keitai Denjuu Telefang - Power Version (Japan) (GB Compatible)","CGB-BVPP":"3D Pocket Pool (Europe) (En,Fr,De,Es,It,Nl)","CGB-BXGE":"Xtreme Sports (World) (Switch)","CGB-BY3J":"Yu-Gi-Oh! Duel Monsters III - Tri Holy God Advant (Japan)","CGB-BY4J":"Yu-Gi-Oh! Duel Monsters 4 - Battle of Great Duelist - Yuugi Deck (Japan)","CGB-BY6J":"Yu-Gi-Oh! Duel Monsters 4 - Battle of Great Duelist - Jounouchi Deck (Japan)","CGB-BYTE":"Pokemon - Crystal Version (USA)","CGB-BZSP":"Zidane - Football Generation (Europe) (En,Fr,De,Es,It)","CGB-CGB-ENIN":"Nyghtmare - The Ninth King (World) (Free Version) (GB Compatible)","CGB-DMG-BTSJ":"Taisen Tsume Shougi (Japan) (NP) (GB Compatible)","CGB-DX":"Super JetPak DX (World) (GB Compatible)","CGB-KTNE":"Kirby - Tilt 'n' Tumble (USA)","CGB-VPSE":"Polaris SnoCross (USA) (Beta) (Rumble Version)"}
@@ -0,0 +1 @@
1
+ {"001fc1b6cfae773f2d24219409bdcb19":"23 in 1 (Taiwan)","002d0d5fd2f668798da1991b5fd5b4d8":"Earthworm Jim - Menace 2 the Galaxy (USA, Europe) (GB Compatible)","0044c80fb6c6c7c49466dafe6637d61a":"Zidane - Football Generation (Europe) (En,Fr,De,Es,It)","008ede5b89c08375fe58d6597a15a21a":"Hang Time Basketball (Europe)","008f5a6eb8cbbe7a76ea9403ad063d67":"RPG Tsukuru GB (Japan) (Rev 1) (Possible Proto) (NP)","00ca1749b004d4c38cdfc884bd547f72":"Barcode Taisen Bardigun (Japan) (SGB Enhanced) (GB Compatible)","00cdb5c6a13d6992737b03332567dca5":"Featherless Cake Delivery (World) (v1.0) (GB Compatible)","0107666c622e3bf3e225ecc6fe4fee42":"Kelly Club (USA)","010ae3b36a642d13ee85fcc5494a132b":"Retro Quiz Tower (World) (GB Compatible)","0121aa4c2909ff7dff2190b7889956fd":"Hello Kitty no Happy House (Japan)","0132a38451021c3c9e8f5532fc888343":"Donkey Kong 5 - The Journey of Over Time and Space (Taiwan) (En)","0143dbb62b1a88e7cce65f9779ce9d4b":"Jeremy McGrath Supercross 2000 (USA, Europe)","0146768d48b8317e0c8a2c7dd8d31860":"Sanrio Timenet - Kako Hen (Japan) (SGB Enhanced) (GB Compatible)","0155bb1d60a477eeeb148033210eecf3":"Freestyle Scooter (Europe)","01586c8122da5014abed765147e5a7bb":"Worms Armageddon (Europe) (Beta)","0162a11fac3e65f15b9dd47be81c62f7":"Grimace's Birthday (World) (v1.1)","017cde0db5d27525af84123f1ce81edf":"Metamode (Japan)","0185d5e6048a74e9b77a26e02cb56307":"Spy vs Spy (Europe) (En,Fr,De,Es,It,Nl,Sv) (Rev 1) (Proto)","01a67ed2dc935044ba69eda42bddebf3":"Toy Story Racer (USA, Europe)","01d41f5d875089155e4dc489ae12f095":"Rockman DX6 (Taiwan)","01e5a7a8a115c7e88b39de91b0ed9928":"Quartet (World) (GB Compatible)","01fb7107b8432d3eed3e131605d682a3":"Doug - La Grande Aventure (France)","023b5dbe9c3dcb3bc11ab388e8a40fe3":"Sesame Street - Elmo's 123s (Europe) (GB Compatible)","0256340ec50afb921f07763ea4628966":"Dragon Ball Z - Legendaere Superkaempfer (Germany) (Beta 2)","028c4262dbb49f4fc462a6eb3e514d72":"Shantae (USA)","02ace5228e56b419ee31b8202179e868":"Shantae (World) (Switch)","02f25d1192d129ee73104c5bfc127a94":"Carmageddon TDR 2000 (Europe) (En,Fr,De,Es,It) (Proto)","03286ff23be2127e0b5e111001a369c2":"GB-Wordyl (World) (Es) (GB Compatible)","033dade2cc761d6f360daeecff9d6f90":"Prince Naseem Boxing (Europe) (En,Fr,De)","0348787d4432c969b4af0129682468ba":"Shenghuo Jiangmo Lu Waizhuan - Guang Yu An De Lunhui (Taiwan)","036b4944895082f5895a475f4ced3bfb":"Yu-Gi-Oh! - Dark Duel Stories (Europe)","037034765c049438b82b30bc1a551165":"John Romero's Daikatana (Europe) (Fr,De,Es)","03a8bcab4b2975fa2d850d18c728ea9c":"Croc 2 (USA, Europe)","03da498c5503d8747dc1eccf1101fce3":"Pocket Soccer (Europe) (En,Fr,De,Es,It,Pt)","03e6a11b8040b4d56b3c1402c92bbf6d":"Othello Millennium (Japan) (GB Compatible)","04122c3d11609d98db1db1fd386da7c8":"Digital Monster 2001 (Taiwan) (En)","041b8a455b63beb718d70c8f89fac9d3":"Gold and Glory - The Road to El Dorado (Europe) (En,Fr,De,Es,It,Nl)","0452cb3853113dca202e5dca225b80ee":"Tower of Evil (World)","0454b25266d645990b63b5b406672dc2":"Tony Hawk's Pro Skater 2 (USA, Europe)","046af13647ed4777510aa86fcb753bf9":"Caterpillar Construction Zone (USA, Europe) (GB Compatible)","0476c7220327d99e3d039faaa4cdde8f":"Lemmings & Oh No! More Lemmings (USA)","049da443c6bd96a0365cbc68b7d0e2eb":"Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (GB Compatible)","04f7ea139fef2bc2e3f70b2c23933d2e":"Keitai Denjuu Telefang - Power Version (Japan) (GB Compatible)","05093e5f050b812939972afce4e2e3fb":"Paku Paku GB (World) (GB Compatible)","052cd45a69af16f025a545b29bc8f450":"Legend of the River King 2 (Europe) (SGB Enhanced) (GB Compatible)","053d55b23c41c5e0e3227239f4844fea":"Soul Getter - Houkago Bouken RPG (Japan) (GB Compatible)","0548e7732bf23a56f8a2e942dd0c14d2":"Fellowship of the Rings (China) (En)","054921b29a0a336eb1b28272c8125186":"Downer (World) (GB Compatible)","0552078f981c2ef3977f2dfeee19510a":"Croc (USA, Europe)","0591d5637b4c9f304340d941b2ae9e7a":"Fairy Kitty no Kaiun Jiten - Yousei no Kuni no Uranai Shugyou (Japan) (SGB Enhanced) (GB Compatible)","05a9c516d6e744135a6303aa5b4a8887":"Grand Theft Auto 2 (USA)","05aba5a3251588398c1ced7f87a61270":"Shuma Baolong 02 4 (Taiwan)","05e5ecc94ef05260ebba60576ca45ba0":"Dragon Ball Z Gedou 2005 (Taiwan)","0612746dccbd1d01c0e095767a9c5a89":"Harry Potter 2 - The Black Art Wrestle Edition (USA)","06157785417d6fe5c73388eb573981dc":"Hamtaro - Ham-Hams Unite! (Europe) (En,Fr,De,Es,It)","062bfa5e5b52b5a4ace5b59c364fe2ff":"Space-Net - Cosmo Blue (Japan)","06445da47ed612c8f7fc8911c673f7fe":"Jurassic Boy 2 (Taiwan) (En) (Rev 1) (Sachen)","064f9dc3a19e5b6e41f646943254674e":"J.League Excite Stage GB (Japan)","0650cbe5e04f8968d5c09740af7aa152":"M&M's Minis Madness (Germany)","06545852ed3f3cd018c95f6d3c5fbbee":"Biohazard Gaiden (Japan)","069b01643e876ec91a5555450068f4ac":"Rugrats - Time Travelers (USA, Europe) (GB Compatible)","06b0d6b88e54337f3f5c7bbea373f237":"Frogger 2 (USA)","071ad15a9890f73890c4e0dedd07793e":"Madden NFL 2000 (USA, Europe) (SGB Enhanced) (GB Compatible)","0762fc989c52652b2660f26be0830f20":"Hugo - Black Diamond Fever (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi)","077fb84e685b20d693a637593a77b8c8":"Octopus Stressus (World) (v1.1) (GB Compatible)","07876bd62abbe5fd8878a0363e23a42f":"Deja Vu I & II (Japan)","078c1192e19c1332171d088dcb891293":"Loppi Puzzle Magazine - Kangaeru Puzzle Dai-2-gou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP)","079f899abd4d5183d494629b7b98b0cb":"Suicide Run (World) (GB Compatible)","07b3756a52db31f1accc85f71d5f34c7":"Disco Elysium - Game Boy Edition (World) (No Music) (GB Compatible)","07c211479386825042efb4ad31bb525f":"Legend of Zelda, The - Link's Awakening DX (USA, Europe) (SGB Enhanced) (GB Compatible)","07d4df7a1c93f5bef617e5a90b9edee2":"Survival Kids (USA) (SGB Enhanced) (GB Compatible)","07de70bd0e839dd1d4be2670b2e1d33f":"GB Harobots (Japan)","0806cf988e52811c08af25adca520bb5":"Unearthed Zero (World) (2021 Jam Version) (GB Compatible)","080f8f6632c57101bf511360fc68eb15":"Shuma Baolong - Shuijing Ban II (Taiwan)","08130cb33fe270321d04d056b85d2037":"Sylvanian Melodies - Mori no Nakama to Odori Masho! (Japan) (SGB Enhanced) (GB Compatible)","08261d984f5e0d103191d7bbae8fba50":"Hamster Club (Japan) (GB Compatible)","08333f9e3d797fa8c9cee8a1526e8690":"WDL - World Destruction League - Thunder Tanks (USA) (Beta)","0834c2990995cbd2c76db538ff93c5ba":"Jurassic Boy 2 + Thunder Blast Man (Taiwan) (En) (1B-002, 1B-003, Sachen)","08405276b33bc1b679b05296a2f7c44d":"Tiny Grasshopper Goes Away (World) (En,Hu) (v1.4) (GB Compatible)","08680aedc945591f81461c1bf459124e":"Shanghai Pocket (Europe) (SGB Enhanced) (GB Compatible)","086dd0976154b38cf76c8f596ce00f0c":"Lunar Docking (World)","0877a4b1765287c5b50ea53a47a1d7ad":"Bugs Bunny in - Crazy Castle 4 (USA)","08855304ddb6b3ba9ac65401ef829746":"Pocket Smash Out (Europe)","08b3d438bb90b4f3bc16a93d30c1351c":"Emo Cheng DX (Taiwan)","08bca718c62e3c2870a2df107fc0a562":"Dragon Quest Monsters (Germany) (SGB Enhanced) (GB Compatible)","09232e1c83dde06aa5b67d14618f4e08":"Kawa no Nushi Tsuri 4 (Japan) (Rev 1) (Possible Proto) (Rumble Version) (SGB Enhanced, GB Compatible) (NP)","093e3b0eb0723fd652cfe08a0a61a1c4":"Digimon Pocket (Taiwan) (Zh)","09419d9aba3b31d36c09d08d2c1555f8":"Nations, The - Land of Legends (Europe) (En,De)","0979556c11f2ee65a8d9a03b4a1c04d7":"Elevator Action EX (Japan)","09a76ffd0b430767ffe97e1ebd3a55aa":"Haizhan Qibing (Taiwan)","09aac34623fe99c7068192c9e24858aa":"Shantae (World) (GBA Enhanced) (Switch)","09bc56a467f95a19a357174c5710db74":"Unearthed (World) (v1.3) (GB Compatible)","09c21d37f66cca587663a461c81606be":"F-1 World Grand Prix (Europe) (Beta)","09cefdbbb38503e91dd666aeca68871a":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (Beta) (SGB Enhanced)","09f75cc7dc00a7ae8ae4b586092fe045":"Gensou Maden Saiyuuki - Sabaku no Shijin (Japan)","09fbebc41df99d534290d3033b09814e":"V-Rally - Championship Edition (Japan)","0a1cf1904c87b60308c404d93bab2702":"Top Gear Rally 2 (Europe)","0a281a2c97b4fe140766fd06d1a2b79d":"Grimace's Birthday (World)","0a3da06446d9a2c7e1ea8149c9026434":"Pong - The Next Level (USA, Europe)","0a60eb6a91c63d2991822d4ecc330b77":"Ghost of the Arcade (World) (v1.3) (GB Compatible)","0a67db463824f26a29e6fa130cd62ccc":"Survival Kids 2 - Dasshutsu!! Futago-jima! (Japan) (Rev 1) (Possible Proto) (SGB Enhanced, GB Compatible) (NP)","0a74ef0fa7d01b8bc4e2042aa442be37":"Mingzhu Koudai Guaishou 2 (Taiwan)","0aa1877a6a6dd4c8230fabada9ea9249":"Pachipachi Pachisurou - New Pulsar Hen (Japan) (SGB Enhanced) (GB Compatible)","0af54be680b772a9ffc3afea54a1540c":"Laofuzi Chuanqi (Taiwan)","0b23d35e7bf1f136df8a7c8f24103dfc":"All-Star Baseball 2000 (USA, Europe)","0b2ab6c8ee77d7dc6856ebffcfeb9c43":"Armorines - Project S.W.A.R.M. (USA, Europe) (En,De)","0b943efdf2ca967827a4c7bf951f6448":"Dracula - Crazy Vampire (USA)","0bb519a09c675a797f422305115b49cc":"What's Updog (World) (GB Compatible)","0bca44a4fd79e417b14043985ed35223":"Koudai Guaishou - Dongzuo Pian (Taiwan) (En)","0bfac235a5bd9cd57d7b3e7e83993458":"M&M's Minis Madness (Europe)","0c0cd721044c7c91d32ed704564e6fe4":"Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (Beta) (SGB Enhanced) (GB Compatible)","0c1c350ce431ace4328c0e935fa2f41b":"Snow White and the Seven Dwarfs (USA)","0c20aaf67ec47d173d7442370cc24237":"Love is Dead (World) (Proto) (GB Compatible)","0c648f3fa64646119cc811916f7e89cf":"Stars of Zureon (World) (Proto 2) (GB Compatible)","0c661268d0b50d287658ed4d3693185b":"2002 Digimon Adventure 6 (Taiwan) (En)","0c6a0f2add131ca4afd24763fe3c3a04":"Dragon Dance (USA) (SGB Enhanced) (GB Compatible)","0c80cbbae8650152fba0278350bd0bd4":"European Super League (Europe) (En,Fr,De,Es,It)","0ccc5cd15a646417efb5fa9ea920fce3":"Harley-Davidson Motor Cycles - Race Across America (USA)","0cd10acb3c569faecd01b9ced51021b2":"Maus, Die - Verrueckte Olympiade (Germany)","0d235e7826dbe74294a02ba07af1d6b1":"Infall (World)","0d3ff80b66de9c5d6ba7178c1175f3eb":"Grimace's Birthday (World) (v1.2)","0d4f6b00b4a1b047ef13a91537f7314a":"Barbie - Ocean Discovery (United Kingdom) (GB Compatible)","0d7bca4e08d522493491484896f7f3cc":"Towers - Lord Baniff's Deceit (USA, Europe)","0d8cd9b749af9f5e8463cf3f48b36090":"Hype - The Time Quest (Brazil) (En)","0d9dbb213db66cc0121a7f916181f612":"Madden NFL 2001 (USA)","0db5276e6a52112bcb71dd20f4f39782":"Konchuu Hakase 2 (Japan) (SGB Enhanced) (GB Compatible)","0dbdfc5a0537761525295054816b8e49":"Zork + Harris (World) (v0.0.1.0) (Proto)","0ddb1e2111a510557484f942ac78b915":"102 Dalmatiens a la Rescousse, Les (France)","0dea429ba947a0264b481eafc180d3d2":"Shuma Baolong Zhuanji 10 in 1 (Taiwan)","0df21ba45a2c6edfab393ef5f22c95fe":"Flooder (World)","0e11915bab69cc3b5aaa3473784f03ee":"VIP (Europe) (En,Fr,De,Es,It)","0e13c1506562050ab39bc7d0fcd41ecf":"LEGO Racers (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da)","0e31b2dcde31c590a0835b22f653fd2d":"Scrabble (Europe)","0e63965664df3bf3217254a22422cc86":"Densha de Go! (Japan)","0e68060f26f64257bcae0b1e820e5e4e":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (Beta) (SGB Enhanced) (GB Compatible)","0e96876b9e69f491b4e9c2e17c56b64f":"Water Grandprix (World)","0eb0f4252ff90cb26eda0be680c998bc":"Ronaldo V-Football (Europe) (En,Fr,De,Es,It,Nl,Pt) (GB Compatible)","0ed5b9ffe7ad90d819cac810d05b669c":"Alice in Wonderland (USA, Australia)","0ed716a57524307533df8568aeae8f7f":"Agency (World)","0ee28078d6270df663647e8a3e3feaf6":"Pocket GT (Japan)","0f3161b9427b5540ff20f0d793a5d047":"Gift (Europe) (Rev 1) (Proto)","0fc64c4aee8aa7a11ed80c4e93f63f47":"Shelly Club (Europe) (En,Fr,De,Es,It)","0fe226f5b7a3da7d3f16b0ba42030b52":"Tank Attack (World)","0ff2e1d40bb0405e6a2506f75c90ea83":"Shin Megami Tensei Devil Children - Kuro no Sho (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","0ff9df46aca45161d1dfa7eee8509c1f":"Harvest Moon 3 GBC (USA)","1020159b01e4ca5bdc8f24d936b50c93":"Spiky Harold (World)","102a290e0711214484555de2176e565c":"Street Hero (Taiwan) (En) (1B-004, EB-004, Sachen)","1043fd167d0ed9c4094e3c9d8e757f1e":"Legend of Zelda, The - Link's Awakening DX (France) (SGB Enhanced) (GB Compatible)","10d0c091687c830645aad567d152b1d6":"Wacky Painter (World)","10e6dcd0a350076e28b9c598c278b6a2":"Pop'n Music GB (Japan)","10f2d0b87916ac5730065cfb52f3ffce":"PaZeek (USA) (Proto)","10f986c4dfa323b42125ccbb8ec9c8ba":"Nyghtmare - The Ninth King (World) (Rev 1) (Free Version)","1134862e84110443190df460351d4575":"Pokemon Card GB 2 - GR Dan Sanjou! (Japan)","11454ce5a4ad703c29b3a8bdc8b5c3ab":"Mission - Impossible (USA) (En,Fr,Es)","1163e25d9985d8e5c3544449150f4f46":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (GB Compatible) (Alt)","117a9babae15960dc4de04ac44066ed2":"Scooby-Doo! - Classic Creep Capers (USA, Europe)","11893f422bcfe26e22889a0fcdf61547":"Medarot 5 - Susutake Mura no Tenkousei - Kuwagata (Japan)","11d3ca80ad24431babbec7a675d83bed":"Deer Hunter (USA)","1215ac977a4cea023bd98cbb7bd36591":"Mr. Angry (World)","121cec82c0c9e7c476060ad2521739d4":"Harvest Moon 2 GBC (Germany) (SGB Enhanced) (GB Compatible)","128dc75244ecc2f74d1e50551d888127":"FIFA 2000 (USA, Europe) (SGB Enhanced) (GB Compatible)","12d8b6827053a17b8301efeb1586c83f":"Jimmy White's Cueball (USA) (Proto)","12da69d04e8121535565f725adcb6848":"Digimon Amethyst (USA)","12e82cb028ed40cdc0c80b2d2e3cf0cb":"Animorphs (USA)","12f80e19c03b5530545929d50fca8d8f":"Qilongzhu Z3 (Taiwan)","12fe2ee088f622e090cb9c528fe0ec49":"Shuma Baolong 02 5 (Taiwan)","132ab194cd0332a61f3db66084f6dc4e":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (Beta) (SGB Enhanced) (Alt)","137590affd2da2f275b87b412d6f0c7d":"Cave Fighter (World)","1383da42b08bf94b6fad381cada66fad":"Rugrats Movie, The (USA) (SGB Enhanced) (GB Compatible)","138add8906346eaf244e8e7ed79ec42a":"LNF Stars 2001 (France)","138ee068183a17684ca3aacfc1e3e38e":"Honkaku Shougi - Shougi Ou (Japan) (SGB Enhanced) (GB Compatible)","139334587db40e73f0cadcb06ca0ce61":"Goraku Ou Tango! (Japan) (GB Compatible)","13a64aee80ad9a5b65eb5774e6aeabed":"Deisanebe (World) (GB Compatible)","13b960d82856078a62f012fa3183697e":"Zone Control (World)","1405c2c436255d0d5c901bf6d64f68a1":"Yars' Revenge (USA, Europe) (GB Compatible)","14158554a3d0743a668cd56070bc1ef9":"Berks (World)","14198133e23ad092960197223f199b43":"Shuma Baolong 3 (China)","144ab8295663f4dc4bcd810c5cdafe60":"NASCAR Racers (USA)","144f958f655909c047331473275fd525":"Robo Knight (World)","144fc4636fcefbd56d906505f5308da1":"Spirou - The Robot Invasion (Europe) (En,Fr,De,Es,It,Nl,Da)","1453eaee1c4c0197b2feed653e5ff342":"Casper (USA) (Rev 1) (Proto)","145a22d327cc23d0c7f85c62fc46de77":"Jissen ni Yakudatsu Tsumego (Japan) (Possible Proto)","146bc8912c207c200535b84c5acfb06a":"Babe and Friends (Europe) (En,Fr,De,Es,It) (GB Compatible)","1473fa5d4a50760dbdb45cc1232c8b4b":"Tarzan (Japan)","1487948f044a16e9ac9d8aa740f87827":"Purple Turtles (World)","14889eccdacd80ce70fc88a74a216fa6":"Heroes of Might and Magic (USA) (En,Fr,De) (Rev 1) (Proto)","149073afd1cf8ae83783143a166592f7":"Godzilla - The Series (Europe) (En,Fr,De) (GB Compatible)","14bb0a822dfea564358a99378186141f":"Sewing Machine Operation Software (Europe) (En,Fr,De,It) (GB Compatible)","14bfce85af0ae19affbdcef23a9d6baf":"NBA Jam 2001 (USA, Europe)","158691457cb7365cafbd0b7bb230fadf":"Shin Megami Tensei Devil Children - Kuro no Sho (Japan) (SGB Enhanced) (GB Compatible)","158d9834bdb7be79dbfcafcdc3d347aa":"Lord of the Rings, The - The Fellowship of the Ring (Taiwan) (En)","15b3cbe9a6ffd5b7c5047764798ea911":"Reservoir Rat (Europe) (En,Fr,De,Es,It) (GB Compatible)","15bedc4919965732cbfb301f11e5b36a":"Doraemon no Quiz Boy 2 (Japan)","15f4df0efe9f42cbaaac09c866cbfd21":"Hello Kitty to Dear Daniel no Dream Adventure (Japan)","161d839487a5b618c50eeb95b839ac8c":"Postman Pat's Trail Game (World)","1624f857098ca278b15629914f48352b":"Magi Nation (USA)","1625b54bab62ff4d7f6878e76c5d09c7":"Capybara Quest (World) (v1.2) (GB Compatible)","1633bec4cabec857c0ec67c99d2f982b":"Pokemon Card GB (Japan) (SGB Enhanced) (GB Compatible)","16345f768a34b18b8c072c71bc32e2fa":"Pocket no Naka no Oukoku (Japan) (Proto)","163859b2468b5ad697236ffb5a6765be":"Denki Blocks! (USA) (En,Es) (Proto)","1639e77b02227d996f17ff5bec16c1b8":"Honkaku Yonin Uchi Mahjong - Mahjong Ou (Japan) (SGB Enhanced) (GB Compatible)","163f99c456c8fd8936e91586356af1c4":"From Below Pocket (World)","164c4fcfe733d89fff3ddc42b017c5ca":"Looney Tunes Collector - Alert! (USA) (En,Fr,Es)","165550e557314f88decd95a7409a24ce":"Le Mans 24 Hours (Europe) (En,Fr,De,Es,It)","167e663a1ce00e6a510dd8257fa36a48":"Hyper Olympic - Winter 2000 (Japan)","168ae412b379786f7df07bd8231baf44":"Mortal Kombat 4 (USA, Europe) (SGB Enhanced) (GB Compatible)","16bb3fb83e8cbbf2c4c510b9f50cf4ee":"Wario Land 3 (World) (En,Ja)","17138240c26791c06d557094d0a4d1f5":"Pro Mahjong Tsuwamono GB (Japan) (SGB Enhanced) (GB Compatible)","171ccc606b9753de51e50c93f7c3a986":"Tir Na Nog (World)","17233eaf718e241f290d6590ef1b42a9":"Lil' Monster (USA) (SGB Enhanced) (GB Compatible)","173a37c4d4aae04766aa0abbf385233d":"Jungle Book, The - Mowgli's Wild Adventure (Europe) (En,Fr,De,Es,It)","1757723cf346be2cea58d0fc4ed4cfa9":"Bomberman Max - Red Challenger (USA)","1767860f9fc19eb7da610616c1a35b89":"Guruguru Garakutas (Japan) (SGB Enhanced) (GB Compatible)","178ea5a9eba6e7f35e894bad1ec34f77":"Return of the Ninja (USA)","17b6ec4af44d74be1a29b2ff2c0516dc":"Mojie Zhanshi Chuanshuo (Taiwan)","17dae7ec46263600c54687d78b582e5e":"Galaga - Destination Earth (USA)","17efe835f748353dfeb4b76737b1aaeb":"Inscryption (World) (v0.5)","184f5d0fbb190ae2d7242e0a7ec4a407":"Maya the Bee & Her Friends (Europe) (En,Fr,De) (GB Compatible)","18584e6b6f2e8a2cedf9ead60f51ad27":"Xin Guangming Yu Hei'an 2 - Zhushen de Yichan (Taiwan)","187e24e1a76eede2853755760dee5108":"GB-Memory Multi Menu (Japan) (SGB Enhanced, GB Compatible) (NP)","18b2c4989209373c0cba9bc58075b2fd":"Ganbare Goemon - Tengutou no Gyakushuu (Japan) (GB Compatible)","18c5ddde4bcffd1ddcba490eb529f0d7":"Hugo - The Evil Mirror (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi)","18d309e72aba521f792249f8ca0df5da":"F1 Championship Season 2000 (Brazil) (En,Fr,De,Es,It)","18e83737127010b90aa8ea4d3982b461":"Prince of Persia (Japan) (En,Ja) (Proto) (GB Compatible)","18eca52a51880410614cfc4ad65ee34c":"Hamster Paradise 3 (Japan)","1913a2173775a0c799683c74a80cdebb":"Where's My Cake (World) (GB Compatible)","192aec8dca7656463be56991f497cff3":"Dracula - Crazy Vampire (Europe) (En,Fr,De,Es,It)","193f103b57f5861b55524644badb4ecd":"Dukes of Hazzard, The - Racing for Home (USA)","195b6daf6b2a3e28ab7a61170a7d7833":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (Beta) (SGB Enhanced)","19601e4fc1f7084076128dca0182f5a7":"San Francisco Rush 2049 (USA, Europe)","196ce465a2e60ebfa68f377577e6b4aa":"Disco Elysium - Game Boy Edition (World) (Music) (GB Compatible)","197ab41791e0e0112ade85ed9fdbdef3":"Postie (World) (GB Compatible)","19b1085c7c17a8123a7ec59f4033e92c":"Yu-Gi-Oh! Duel Monsters 4 - Battle of Great Duelist - Kaiba Deck (Japan)","19b640026da40602272559d1ed35bbba":"Bob the Builder - Fix it Fun! (Europe) (En,Fr,De,Es,Nl)","19cd9d45c6bb221613101b22c72593b2":"Batman of the Future - Return of the Joker (Europe) (En,Fr,De)","19de85b3b8aabc3cbde67e20c7ae2925":"Princess Poffin and the Spider Invasion! (World) (GB Compatible)","19dfb14a0d31742f02bfa101d5054169":"Gekisou Dangun Racer - Onsoku Buster Dangun Dan (Japan)","19e0d71a2a6090e0f59607ca4da9b156":"Doug's Big Game (USA)","19fb34b63e864a72e26073f8e7e7ed01":"Mr. Driller (Japan) (NP)","1a0aac7a746e247879d6b970bf9a9f32":"Kikansha Thomas - Sodor-tou no Nakama-tachi (Japan)","1a787c328c66eea5a2b920b7c205b231":"Laura (Europe) (En,Fr,De,Es,It,Nl,Sv,Da)","1a9cb5a60485e19b809c2f476eff190b":"Octopus Stressus (World) (GB Compatible)","1abb25d01dbeb20f104e44364f56fe03":"Pocket Monsters Gin (Japan) (SGB Enhanced) (GB Compatible)","1af296894ba86bfe2f51e2ff7cac9fc7":"Yu-Gi-Oh! - Dark Duel Stories (Europe) (Beta)","1b2190911db606dce58d694e8b591e69":"Austin Powers - Welcome to My Underground Lair! (USA)","1b3092e1bbc29223eaaa4ea09066bdbd":"Runelords (USA) (Proto)","1b543c5d0263730a3b862a02bb46f9a1":"NBA Jam 99 (USA, Europe) (GB Compatible)","1b5e155ac68d2c7b89e49c5e1024b45c":"Trouballs (USA)","1b761f9ef23eb90d34085dd5eca02386":"Flashin' (World) (v3.0) (GB Compatible)","1b8671a31a0c30a62eef62ddb4bf915f":"Snail DX, The (World) (GB Compatible)","1b9515262a8a57ef1366bed635c604e4":"Gorf the Ghost Saves Halloween (World) (GB Compatible)","1ba7a470a32664d5f68f4310680d8426":"Tweenies - Doodles' Bones (Europe) (En,De,Es,It)","1bf7c941e9d9fb2d34b51e142f3db5e4":"Gifty (Germany) (En) (Rev 1) (Proto)","1c146ce4743c94923843f6aa07a15a47":"Turok 2 - Seeds of Evil (USA, Europe) (En,Fr,De,Es) (Beta) (GB Compatible)","1c1f455209d6400eb3c7c091f6608723":"Hamster Paradise 4 (Japan)","1c2cb80c83747edf5988b1b0c782ecf0":"Snail DX, The (World) (v1.2) (GB Compatible)","1c3d719f529c1bf57b5b798fc1f3bfe5":"Qix Adventure (Japan)","1c7355ed58daf1ebcceea71ba5cbb694":"Game Boy Gallery 3 (Japan) (SGB Enhanced) (GB Compatible)","1c9f1847ae4832bdd53f39968750d505":"Harvest Moon GB (Germany) (SGB Enhanced) (GB Compatible)","1ca6579359f21d8e27b446f865bf6b83":"Dragon Warrior Monsters (USA, Europe) (SGB Enhanced) (GB Compatible)","1ccfd8413570d63a3ed3fa9910a394b4":"Fushigi no Dungeon - Fuurai no Shiren GB 2 - Sabaku no Majou (Japan) (BFWJ)","1cdc49e8f8340c2ce27fd3f5cdd3d618":"Austin Powers - Oh, Behave! (Europe) (En,Fr,De,Es,It)","1cfa8223f124f56cca9c8bc2c661a21d":"Bundesliga Stars 2001 (Germany)","1d0044523075ab0308c598286f804402":"Nicktoons Racing (USA)","1d09181e1608bb4cbb77c127d27feb19":"GB-Wordyl (World) (En) (GB Compatible)","1d0dc8faa066d6f4948ce6ffdee22f41":"Dragon Ball Z - Legendary Super Warriors (Europe) (Beta) (All Unlocked)","1d0ea47375fca723c0f86a5178e545f3":"LEGO Island 2 - The Brickster's Revenge (USA) (En,Fr,Es)","1d2166a2a98aee87882cc8d670f23a23":"AMF Bowling (USA) (Proto)","1d3031ff4a17adc04f05672a37fc0030":"Magical Drop (Europe) (En,Fr,De) (Beta)","1d31fa1e431ec840e5f769fdd019405f":"Looney Tunes - Twouble! (USA) (En,Fr,Es) (GB Compatible)","1d535aac30b714e3ad5eccf17025ece2":"Doki x Doki Sasete!! (Japan)","1d719dffbdeff72d4b8f8744ddcbf9d5":"Little Mermaid II, The - Pinball Frenzy (Japan) (Proto)","1da7187971155f0aed9ffea798f6e2a6":"Flipper & Lopaka (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da)","1dddf21bcc96c84a9294bdb411a49728":"Doraemon - Aruke Aruke Labyrinth (Japan) (GB Compatible)","1de0f866b907c8daff2999790ead45a8":"Spider-Man 3 - Movie Version (USA)","1de3aa6275844a8957c88d75dcc5ad09":"Watashi no Restaurant (Japan) (Beta 1)","1e062837d15d5e4e43bb2253207115ae":"Dave Mirra Freestyle BMX (USA, Europe)","1e29b4f3a9899a88fdcaefa73fcb565e":"GB-Wordyl (World) (Es-XL) (GB Compatible)","1e67314232e073b75f092f058078074d":"Hyper Olympic Series - Track & Field GB (Japan) (SGB Enhanced) (GB Compatible)","1e842a5c2f90bf6e476b08da5333963d":"Keibajou e Ikou! Wide (Japan) (GB Compatible)","1e90fa6dab5d51a09f0f6134c96efa08":"Super Doll Licca-chan - Kisekae Daisakusen (Japan)","1ebdce25ed0e2607059d7d09530d4a7e":"Real Pro Yakyuu! - Central League Hen (Japan) (SGB Enhanced) (GB Compatible)","1ee701313c509947d7e9ce0e54a85cb3":"Dragon Quest Monsters - Terry no Wonderland (Japan) (Rev 1) (Possible Proto) (SGB Enhanced) (GB Compatible) (Alt)","1f0e9da07447de982bc0fbc0eb3a5d24":"Doraemon Memories - Nobita no Omoide Daibouken (Japan) (GB Compatible)","1f1fb3cf8783f880bc796d667be60231":"007 - The World Is Not Enough (USA, Europe)","1f3c312776b7010204ca1cf723f084ba":"Capybara Quest (World) (v1.1) (GB Compatible)","1f64989765f605d05cbd013e7ffcc352":"Mega Man Xtreme 2 (USA, Europe)","1f669fbc8f7dd8fee1afee6052a807d4":"Data-Navi Pro Yakyuu 2 (Japan)","1faa6e2a7ec92b95ce32fa2682038b9b":"Asterix - Sur la Trace D'Idefix (Europe) (En,Fr,De,Es,It,Nl)","1fc58f4e3a2437f4c20c9812162797d8":"Missile Command (USA) (Rumble Version)","1fd75c2b798c04acd4b99ad2f1006280":"Super Mario Bros. Deluxe (USA, Europe) (Rev 1)","1fe2a6ec9deeb9b4db56f003fa3c4edb":"Yuenan Zhanyi 3 (Taiwan)","1ff9b71a347a7deed87bcedeb7c5ea70":"Lufia - The Legend Returns (Europe) (En,De)","20052c527795a4f332be14aff49d4d4b":"Smurfs Nightmare, The (USA)","20102abb2a331ff4cc101d3513c891cd":"Kinniku Banzuke GB 2 - Mezase! Muscle Champion (Japan) (SGB Enhanced) (GB Compatible)","2011b57a6d279eed5c9412ef309fb6e2":"Luke Yingxiong Chuan 3 (Taiwan)","2022ae2cb1bbd83edefa3a5bdf2a2b72":"NFL Blitz (USA, Europe) (GB Compatible)","20291bd45093d28b32358527eb9611c5":"Pachinko CR Mouretsu Genshijin T (Japan) (GB Compatible)","207fe7e94f56f9ee85f12bbba56774d2":"Snoopy Tennis (Europe) (En,Fr,De,Es,It,Nl) (Beta)","2082a3c919f07c076aa7de6363544536":"Cyborg Kuro-chan - Devil Fukkatsu (Japan)","20a1cba7bc19e9dd5165324de608478d":"Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (Beta) (SGB Enhanced) (GB Compatible)","20b1ed1ae966b173c3a0f7f7f267e408":"Tokimeki Memorial Pocket - Sport Hen - Koutei no Photograph (Japan) (SGB Enhanced) (GB Compatible)","20bcf9a299d0f8de3c36f01c16813162":"Card Sharks (USA) (Proto)","211031be4f99f69bfd8dfacc2b148d7c":"Shinseiki Evangelion - Mahjong Hokan Keikaku (Japan)","215988e7a70cfbd0f45fe5c247ee0c55":"Bob the Builder - Fix it Fun! (USA)","216cb5875de8fc71d04f7378592bf782":"Kaseki Sousei Reborn II - Monster Digger (Japan) (SGB Enhanced) (GB Compatible)","219538abd16cecadee98ab57c7069376":"Ready 2 Rumble Boxing (Europe)","219b2cc64e5a052003015d4bd4c622cd":"Pokemon Trading Card Game (USA, Australia) (SGB Enhanced) (GB Compatible)","21ae960e6c5a42b498b00fa6f635b1e1":"Fort Boyard (Europe) (En,Fr,De,Es,It,Nl,Pt)","21bbb6dceb4a367431779873f6162ced":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (1998-07-05T180056) (GB Compatible)","21c2dd91ae2d46c006c00caca96d2b6b":"Bad Badtz-Maru Robo Battle (Japan)","21d38c37d8e01a27f8635bb9f5f315cd":"Woody Woodpecker Racing (USA)","21d99fb62922e3538c0b11749a7db8e4":"Barbie - Chasse au Tresor Sous-Marine (France) (GB Compatible)","2206b879b38982ed995cdcbc927b7ba2":"Magi-Nation - Keeper's Quest (USA) (Proto)","221a0e464f5f0c3d38494939b1765a24":"720 Degrees (USA, Europe) (GB Compatible)","221d3b96df7d86291b553a7cb4702dec":"Mickey's Racing Adventure (USA, Europe) (En,Fr,De,Es,It)","222aa591b387a4b897b61961ebeb9fdb":"Estpolis Denki - Yomigaeru Densetsu (Japan)","227444a8cc81dc579ba4fb76c9cb8b46":"Dogz (Europe)","2295f4ef94f9b9a21dfc04259ab6d7bf":"Warp Coin Catastrophe, The (World) (v1.1) (GB Compatible)","22afe691095c65f34aeaba3c283b2a9c":"Donkey Kong GB - Dinky Kong & Dixie Kong (Japan)","22d11b8d9670fb9b4ca84368f0f50cee":"Animal Breeder 4 (Japan)","22e12363382896071703644153c720ca":"Android Nim (World)","2348ea9e0c1041610115443165cf8f4f":"TOCA Touring Car Championship (USA, Europe)","23627de756d221f4093812a5e5f42623":"3D Quasars (World)","237662ab7a441de5042f347342c6080b":"Bibi Blocksberg - Im Bann der Hexenkugel (Germany)","2376c643827d665e9883ffd1b5ac5b37":"Battle Fishers (Japan)","2382edc04a323a227ea793e33c749c79":"Original Moorhuhn Jagd, Die (Germany)","2384dde5403894419de9c14648491da8":"Super Bunny Mission (World) (GB Compatible)","23eaa037089df79a1f54aa0604e34146":"Xin Shiqi Shidai (Taiwan)","2400e6b73383221778c0d83eb0a1ebd4":"Trick Boarder (Europe)","2425abdecfa70713b2671299d6a45751":"Razmoket, Les - Voyage dans le Temps (France)","243b2b6151d41d8e111e98ac49ba9ab4":"Sutte Hakkun GB (Japan) (Proto) (SGB Enhanced) (GB Compatible)","244d1a147f0922f2842206a496163a8f":"Don't Forget About Me (World) (v1.2) (GB Compatible)","24590d82da1c0d40b5d4f8e03e4cca94":"Nakayoshi Pet Series 4 - Kawaii Koneko (Japan)","245c759effda3cf83e2caf274c93c8aa":"Bokujou Monogatari 2 GB (Japan) (GB Compatible)","246526c5a9dd42e6bf8d35708ca24ee9":"Little Nicky (USA)","24676139e29d846bfa48df4885382b79":"Adventures in Carnal Hell, The (World) (Ja) (v1.01) (GB Compatible)","248d3000422e0de6c76b46a6314a762a":"Space War (World) (Proto) (GB Compatible)","24cf64cd73a98125fe476b8488054361":"Raku x Raku - Mishin (Japan) (GB Compatible)","2547fcbdd97aa7acc4ad9eff8aa028f0":"Tezhong Budui 2 - Jidi (Taiwan)","2565fdadfb12b92b60b535cec6492041":"NHL 2000 (USA, Europe) (SGB Enhanced) (GB Compatible)","256a0d39a400543b667991e45327d0dd":"Lee Carvallo's Putting Challenge II (World) (v1.0) (GB Compatible)","2582e7e452e897c0017db4f520afc89f":"Mega Memory Card (USA) (GB Compatible)","258b7b8e4692d4204df470487ef2fc3d":"Powerpuff Girls, The - Bad Mojo Jojo (USA)","25ad12b8d2436d520057f12253f2d37d":"Tokimeki Memorial Pocket - Culture Hen - Komorebi no Melody (Japan) (SGB Enhanced) (GB Compatible)","25b8e4d2aa1e09bbd5e68adcad582b84":"GB-Wordyl (World) (It) (GB Compatible)","25bd0ec7f8959a9a29c4af3c7d6fddde":"Kawaii Pet Shop Monogatari 2 (Japan) (GB Compatible)","25f20cdc0f6f70d0bc5430a9b0d48742":"Beatmania GB 2 - Gotcha Mix (Japan) (SGB Enhanced) (GB Compatible)","264d3c43bf615252c32370b5b0613c78":"Grimace's Birthday (World) (v1.7)","26508069768cb23f6fc03a33f8d4cf43":"Uchuujin Tanaka Tarou de - RPG Tsukuru GB 2 (Japan)","2650d134dd6de865c8c8dbf5a5a385a4":"F.A. Premier League Stars 2001, The (Europe)","265de745b9b6c8e84e02acbf80d0428e":"Alice in Wonderland (Europe) (En,Fr,De,Es)","26694d3e30613facaaede614ab278224":"Shuihu Zhuan - Jingdian Ban (Taiwan)","2692494cef091b908b02c9046bdd876c":"Catwoman (USA)","26b03c986238c85bda3ed8954115aa39":"Monster AG, Die (Germany)","26c14f848115af6246b8f514fbeb6dab":"Animastar GB (Japan)","2759a17974aa716d3db2cc015cda3ab4":"Looney Tunes Collector - Martian Alert! (Europe) (En,Fr,De,Es,It,Nl) (Beta 2)","275f5e929448bb3ad89bf8981cc64620":"San Guo Wushang 5 (Taiwan)","27791ff8bb7993ebba8c8f2cf353a6b3":"Dragon Tales - Dragon Adventures (USA)","27881df91cfc52d1671e469f46475d8c":"Puzzle Bobble 4 (Japan) (GB Compatible)","27a104cc72d91dfcf0adfdfb172e6c21":"Koudai Guaishou - Feicui Ban (Taiwan)","27a66754bf8efafdfe3a79cad234ff17":"FGB (USA) (Proto)","27aaeb747ed1e125582729ba82fe8c28":"Pro Pool (USA) (En,Fr,De) (Beta)","27ce588e0569efa0eb0b8e80049e7edb":"Worms Armageddon (World) (Limited Run Games)","282b0d8ada4a2e44846adc732876f7d3":"Astral Possession (World) (GB Compatible)","283f309103b578c04b1fd5fdb903eb50":"King of Fighters R2 (Taiwan)","2864c52d74320121bc8603e61f7dce64":"Jet de Go! - Let's Go by Airliner (Japan)","286b53aa6f97e97a8d2c26801c8b2e91":"Gem Gem Monster (Japan) (SGB Enhanced) (GB Compatible)","28b5114313b8abc43a31ea40aa91cf52":"Soreike! Anpanman - Fushigi na Nikoniko Album (Japan) (SGB Enhanced) (GB Compatible)","28b7a4941e28a3cbf7d4d72c907727a8":"2003 Gu Huo Lang II (Taiwan)","28d6c613fdf608fe241fb3ce183aaae5":"Turok 2 - Seeds of Evil (USA, Europe) (En,Fr,De,Es) (GB Compatible)","28dd8318bd521b42243af4546062ecab":"Barbie - Aventura Submarina (Spain) (GB Compatible)","28ee7dec336a5742a99fd4d7dda0d001":"Chromanoids (World) (v1.0)","2907913cff34c68b9078e12e7d4fcf78":"Cave Hunter (World) (GB Compatible)","296a232c36d6457301fd8ab9d9e35290":"Golf Ou - The King of Golf (Japan) (SGB Enhanced) (GB Compatible)","29888963f3a224d0da5f65d4f32d1bcf":"Digimon 2 (Taiwan) (En)","29c545699436ab55ef3f801d9c4498b0":"Boku no Camp-jou (Japan)","29deff80e9e8d734f77d8590ac5cdce9":"Adventures of the Smurfs, The (Europe) (En,Fr,De,Es,It,Nl)","29f236dd1a64c15a7c1f66110579ccc3":"Hello Kitty's Cube Frenzy (USA) (GB Compatible)","29f2b4c6d1f163f728e79f9c7400e016":"Jay und die Spielzeugdiebe (Germany)","2a147b2d7731ac26a999390c3f5ff2ac":"Dexter's Laboratory - Robot Rampage (USA, Europe)","2a1efef6d25431529b0d2f5063f63a17":"LEGO Island 2 - The Brickster's Revenge (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da)","2a26b9d248bf62788e23aa897e8e355c":"Woody Woodpecker (USA)","2a2c1bd906639a49750541fe06489b9e":"Xin Fengkuang A Gei Pao Pao Tang (Taiwan)","2a3a4d83902ee2af1890433c50d2809c":"Carl Lewis Athletics 2000 (Europe) (En,Fr,De,Es,It,Nl) (Beta)","2a447279016f60776b5c0f515b5b97f5":"Force 21 (USA) (En,Fr,De)","2a4f3309fe05b47a98d8c5b4c81b91e5":"Simpsons, The - Night of the Living Treehouse of Horror (USA, Europe)","2a63a02445ba22960be3e23fb36607d4":"Wayfarer Boo - Pushing Through (World) (v1.0)","2a65d5c037463fe93127d45d4145a0a6":"102 Dalmatas - Cachorros Al Rescate (Spain)","2aba33e89caca45c9091b25a276dd4c6":"Austin Powers - Oh, Behave! (USA)","2ac166169354e84d0e2d7cf4cb40b312":"Pokemon - Silver Version (USA, Europe) (SGB Enhanced) (GB Compatible)","2acefe79c9813460f0cc80c45d73d0ff":"Rampart (USA)","2acf3b5fb6a9cf4c8194bbadce34aee7":"X-Men - Wolverine's Rage (Europe)","2ad76236e7ea4f655d7d36f3c504ec5e":"Super Nenas, Las - El Malvado Mojo Jojo (Spain)","2adf26f87be3d5e56261d173e74ec4f5":"Tonka Construction Site (USA) (Beta)","2ae0c6e8f9831d6e8f1abac86b01e7d6":"Heroes of Might and Magic (Europe) (En,Fr,De)","2ae37c8a0c3383d43ccbff9831bef5e3":"Meiji Jingu (World)","2b0ad9175fa23c2e278e2174d08df821":"Towers II - Plight of the Stargazer (USA) (Proto 1)","2b55508c1568411d22520fbed55d85f3":"Ruby & Rusty Save the Crows (World) (Beta 1) (GB Compatible)","2b77458ef761618d869eb1713d567aa4":"Tokoro-san no Setagaya C.C. (Japan) (GB Compatible)","2b7e2442d503ce368fc93a9ebf0f70ef":"102 Dalmatians - Puppies to the Rescue (USA, Europe)","2b8b271eae1f3b2e5b3053b22273fa44":"Grimace's Birthday (World) (v1.3)","2b9550a221d829a96e1688fc177cc5c2":"Mingzhu Koudai Guaishou 3 (Taiwan) (En,Es,Zh)","2bb74ace01cabe5d71dfcc329179b4ae":"Little Magic (Japan)","2bbdceb8fa952ff7f5e716532f0c32af":"Tiledentity (World) (v1.1) (GB Compatible)","2bcdaddb7d3b88d6101a652bf86f8071":"Digimon Adventure 2001 (USA)","2bef878c35f3553772634f1b1f212005":"Pokemon Sapphire (Taiwan) (En)","2c03cc138be009ed83f036f919ff8f0a":"Power Pro Kun Pocket 2 (Japan) (SGB Enhanced) (GB Compatible)","2c1ae21f8e8e3d3e4b83bba084719c59":"Bounced! (Europe) (Proto)","2c56bdce336b543de4653a493b870481":"Extreme Ghostbusters (Europe) (En,Fr,De,Es,It,Pt)","2c74082758017e30990e30b145c2f841":"X-Men - Mutant Wars (USA, Europe)","2c7601475b1a252f461811072f70ba8f":"GB-Wordyl (World) (Fr) (GB Compatible)","2c8f92ea472fb0dba87b45e9e580a84a":"Jagainu-kun (Japan) (GB Compatible)","2ca1d1dd8b0dccfb129d31987ed81e5f":"Nintama Rantarou - Ninjutsu Gakuen ni Nyuugaku Shiyou no Dan (Japan)","2cb6bc70fb6a25e988ba4ebba7f769d8":"Karamuchou wa Oosawagi! - Polinkies to Okashina Nakama-tachi (Japan) (SGB Enhanced) (GB Compatible)","2cbb69bd1cda0e7cc186f94b5e161bfd":"Fishing for Asteroids (World) (v1.1) (GB Compatible)","2ccd7a904115b2a96c8b398a142854e2":"Dragon Dance (USA) (Beta 1) (SGB Enhanced) (GB Compatible)","2cd0ad9218bec430085d48e1d4530bba":"Tales of Monsterland (World) (v2.83) (GB Compatible)","2cdd3d78009afdad0a49ded398ff17c9":"Zen-Nihon Shounen Soccer Taikai - Mezase Nihon Ichi! (Japan)","2d0f5d19ea73ccb9cfec6398eb2f70b8":"Tom and Jerry in - Mouse Attacks! (USA) (Rev 1)","2d2a8314f789d490bf83ed3c44538fe3":"New Addams Family Series, The (Europe) (En,Fr,De,Es,It,Pt)","2d52664ee85f0192738fff0b53d4fe20":"Golf King (Europe) (En,Fr,De) (Proto) (SGB Enhanced) (GB Compatible)","2d78683c17765bd98e1c9ccce14b7bba":"EuroSport Pro Champ Fishing (Europe) (Proto) (GB Compatible)","2d7d0adcec6f72ca0755862c5fddf353":"Turok - Rage Wars (USA, Europe) (En,Fr,De,Es)","2d83fb454dd5687a802425c501854dc2":"Pokemon - Edicion Plata (Spain) (SGB Enhanced) (GB Compatible)","2de587b4e14baec8df62ea4c4f43cc46":"Croc (USA, Europe) (Beta 1)","2dfcacff86b06540d528447c21531b46":"Luke Yingxiong Z (Taiwan)","2e02bfbf1aa3f26024480ab8e33ee052":"Pomape Castle (World) (GB Compatible)","2e20e9cbff75913f4e123242a404a2a9":"Halloween Racer (Europe) (En,Fr,De,Es,It,Pt)","2e2596c008d47df901394d28f5bd66ec":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (SGB Enhanced) (GB Compatible)","2e3288d0d0b41d6fcc6bec6676a78a3e":"Ferret Monogatari (Japan)","2e6c427203c660a60849efecc1eaca8c":"Stratacombo (World) (v1.0) (Proto) (GB Compatible)","2ea86780d4b6b9220db59df7c6afff4c":"Star Hunt (World) (GB Compatible)","2ebf6f830013d8702eebf93955db52d5":"Bugs Bunny - Crazy Castle 3 (USA, Europe) (GB Compatible)","2ec55d4bf6e38680facbe3efdc974498":"Digimon Saphire (USA)","2f4f1776863912bfc63ea49a19e4231b":"Grand Theft Auto (Europe) (En,Fr,De,Es,It) (GB Compatible)","2f6556846cc09e6165ff05df60bb072b":"Year After, The (World) (Pt) (Beta) (GB Compatible)","2f6b6379f8c7ce5d66a198162f345eaa":"Pocket Bomberman (USA, Europe) (SGB Enhanced) (GB Compatible)","2f7bb3bebbf2deb2b8f3ed62d041fa57":"Jungle Book, The - Mowgli's Wild Adventure (USA) (En,Fr,De,Es,It)","2f93e10fd3392d96fffcd10abe7d9696":"J.League Excite Stage Tactics (Japan)","2f9c669ace651b1eea896045bf8ea672":"Pokemon Jade (Taiwan) (Zh)","2fbdfac0006c9ee889098098cd940f66":"Walaki (World) (Hu)","2fdba20dd19facd380180babc007c56e":"Zhen Sanguo Wushuang 2 - Shin Sangokumusou (Taiwan)","2fe07f1adac3654ccd544b176f31d5cc":"Love Hina Pocket (Japan) (Rev 1)","2ffa53b90351c9a3390ca1f848435239":"Street Fighter Alpha - Warriors' Dreams (Europe)","301899b8087289a6436b0a241fbbb474":"Pokemon - Crystal Version (USA, Europe) (Rev 1)","304c2fe8ef1d9ae537004e3465814b4a":"Tweety's High-Flying Adventure (Europe) (En,Fr,De)","30567b9d1cf0881fee0e15cdfdc250da":"Bugs Bunny - Crazy Castle 4 (Japan)","3073432455a395835de6147399b36cfc":"Sabrina - The Animated Series - Spooked! (USA, Europe)","3097afa0be963c4318cde06184dccf1a":"Let's Bee Friends (World) (GB Compatible)","30a34dd920fa9f3c62b47ec5384052f0":"Razmoket, Les - 100% Angelica (France)","30d8d1eb56fb9e5f34ec0275a0e29362":"Cult of Blood, The (World) (Demo 1) (GB Compatible)","30ec849758f703d7071e2ac28e048101":"Alone in the Dark - The New Nightmare (Europe) (En,Fr,De,Es,It,Nl)","30f38b2be2450f14838a98c5711e303b":"Tottoko Hamutarou - Tomodachi Daisakusen Dechu (Japan)","30f78cb1af3772826ab1d0f6d989bb52":"Shougi 3 (Japan) (GB Compatible)","3143162338a87a52b49d8791909c2b3d":"From TV Animation One Piece - Maboroshi no Grand Line Boukenki! (Japan) (Beta 2) (SGB Enhanced) (GB Compatible)","314cf4f2802b6972aa37c7964f5f0159":"New Adventures of Mary-Kate & Ashley, The (USA, Europe) (GB Compatible)","314fddcec1489efe4a4f959d353ee4db":"Dejiko no Mahjong Party (Japan)","315dcdf71e7af8287ff71c9a79aa8280":"Pocket Color Trump (Japan) (GB Compatible)","31770f7197ea4a7ff99cad7cef5c58b8":"Lucky Luke - Desperado Train (Europe) (En,Fr,De,Es,It,Nl)","317f997c10602f100fa1231f72194505":"Firemen (World)","31a7ba6b72087ca433b43c5ea14ec12e":"Black Tape (World) (GB Compatible)","31ddde6b4c72261181e428ac99103304":"Rayman 2 Forever (Europe) (En,Fr,De,Es,It)","31e1af241f91ca3b9c165431258a4312":"Walt Disney World Quest - Magical Racing Tour (USA, Europe)","31f7a606b52e8d10fc010b4efe9fb514":"Microsoft Pinball Arcade (USA)","31fc2f3df8aa15f627574029c3cf03da":"Monster Rancher Battle Card GB (USA) (SGB Enhanced) (GB Compatible)","325ae325a17554abdb9015fc6f9c8c36":"Ghost of the Arcade (World) (GB Compo 2023) (GB Compatible)","326f861a8fb3e21f1e9379e62cfb6bea":"Stranded Kids (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible)","3286d6b332edfb46d8504bceba7e55d7":"Power Quest (Europe) (En-US,En-GB,Fr,De,Es,It) (SGB Enhanced) (GB Compatible)","32b2cb72de47a85e07a22d6173459b07":"Tom and Jerry - Mousehunt (Europe) (En,Fr,De,Es,It) (Rev 1)","32c7a63d1fa9c006bba020368cead82a":"Koudai Guaishou - Da Jihe (Taiwan) (Ja) (Pirate)","32cad8c9ca5698e80f7d7801e661cc99":"Fury (World)","32e1169337de052ddfb443d71794f1d7":"Midterm Moments (World) (GB Compatible)","32eb7d18f43e723095e31f1a248b1931":"Chongwu Xiao Jingling - Jiejin Ta Zhi Wang (Taiwan)","32f31220dd01f329be0279e6f5cd6bff":"Tottoko Hamutarou 2 - Hamu-chan Zu Daishuugou Dechu (Japan)","33010ffe2104c0cd6e3b50d624bc29f3":"San Francisco Rush - Extreme Racing (USA) (Proto)","3309fe5963175fa0ae6cc6abe34dbc53":"Gyouten Ningen Batseelor - Doctor Guy no Yabou (Japan)","331cd9f6afa7eab03157a35897af846e":"NFL Blitz (USA, Europe) (Rev 1) (GB Compatible)","3322493d6b7a70bfdea6f6231ceb1ce0":"Grand Theft Auto (USA) (GB Compatible)","3331eb2f36baced132100ff07a1502b1":"Xintiao Huiyi (Taiwan)","3355dc278915f314e263ba0a8e91c8f7":"Cool Hand (Europe) (En,Fr,De) (GB Compatible)","3383c2754015c4da7b5295a28ac09739":"Super Breakout! (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible)","339d4c36fba10397018040e0a4cd1f94":"Brave Saga - Shinshou Astaria (Japan)","33a1389fb8bdc2c4caa3859213140c79":"Pop'n Pop (Japan)","33b0a13dcf79b78b31845b2f0b3e6e71":"Pokemon Pearl (Taiwan) (En)","33b0d63afa3e5ca664a884a8a63d842d":"Pian Wai Zhang - Huangjin Taiyang - Fengyin de Yuangu Lianjin Shu (Taiwan)","33b1f84e036eb954652cbb024aefe538":"Pokemon Ruby (Taiwan)","33e76b95e573464253422d27bf69623f":"Bygone Choices (World) (GB Compatible)","33f621c96e1150266b2519f5901097d8":"Hamtaro - Ham-Hams Unite! (Europe) (En,Fr,De,Es,It) (Beta)","3401da92a9c114cf2a35b677225ba354":"Super Color 26-in-1 (Taiwan)","340d4314e654e05fa9a4705181799096":"Office Combat (World) (GB Compatible)","341249f65f19579b9d335c807982b6fa":"Midway Presents Arcade Hits - Joust & Defender (USA, Europe) (GB Compatible)","341597629f04d5ea6716a7ca9eb24dc1":"Watashi no Kitchen (Japan)","3426bfe0c82da4c6705f996891579a24":"ATV Racing (Europe)","3435ea990961400835b057465ce1ca66":"Pocket Pro Yakyuu (Japan)","344b42a5bf2f591c0ec86cae24238d6d":"International Superstar Soccer 2000 (USA)","344d93f7d968ab5b931806a91f3108a4":"Koudai Guaishou - Sheng Bianshi (China)","34793ee5979947efe26929935803e708":"Silent Hill 2 - 20th Anniversary Demake (World) (Proto) (GB Compatible)","349aebf94c9ae3e1dce9d2a01894bae8":"Catz (Europe)","34d61c282c372f97b55f8dae1ef94fb7":"Harry Potter to Kenja no Ishi (Japan)","34fda0252963cc5a24c7382aa12b72c6":"Super Black Bass - Real Fight (Japan) (Rumble Version)","3508f174b154f500f30af1f06d7012b9":"Chao Jinhua - Shuma Baolong - Zuanshi Ban (Taiwan)","35119708963ee94ae7b634d364c07d50":"Looney Tunes Racing (USA) (En,Fr,De,Es,It,Nl)","3513f4dbf6d283121c6a070f3b92f9df":"GB Karan Koron Gakuen - Hanafuda Mahjong (Japan)","35168b96a50352217130116bd67cdcc1":"Dragon Dance (USA) (Beta 2) (SGB Enhanced) (GB Compatible)","3519c45ce55aad2f0565513723c90672":"Legend of the River King 2 (USA) (SGB Enhanced) (GB Compatible)","35250ce2644d7e8df79bb07c044e40ff":"Tomte Trouble (World)","354bbc5f53babeba8207cba0e764dde6":"Billiard Club (Japan) (Proto)","35773ac09080e95e9dec4b4b2777480f":"Atop the Witch's Tower (World) (v1.1) (GB Compatible)","358b42454a4acb2755834052fe85fc27":"Rocman X Gold + 4 in 1 (Taiwan) (1B-002, 4B-003, Sachen)","35d2e7924408a3460e5c1a770acf3a8a":"Pokemon Picross (Japan) (Proto) (SGB Enhanced) (GB Compatible)","3606f20c43c009075af22991766b2cc7":"Space Invasion (Europe)","3611927be3c7835c594120c4bfdd8d31":"Choro Q - Hyper Customable GB (Japan) (SGB Enhanced) (GB Compatible)","361cb47dbb4af50b2d6d3de9c7d74a58":"Action Replay Xtreme - Special Edition for Pokemon Crystal (Europe)","36306d0677ad4af06062e824c3881111":"Foal's Creek (World) (v1.05) (GB Compatible)","3634a0799df59541607d3240c4a3295b":"No Fear - Downhill Mountain Biking (Europe)","365f913d6f2b0f44d87b7a347daea528":"Tony Hawk's Pro Skater 3 (USA, Europe)","368622c53125b3f86941f7667ec11c8c":"Gedou Zhizun 2003 (Taiwan)","36a056d74781b5963802fb17e0b05222":"Expiration Date (World) (GB Compatible)","36a65f62c7f02c6014d19e5ff5798b69":"Feed The Monster (World) (GB Compatible) (Pirate)","36bf3165da71dc296db9fa1aa9e1d15a":"Basketbrawl - Deluxe Edition (World)","36d3c5208860aae4ac9377fac6c94537":"Flooder (World) (Anniversary Edition)","36d8ffb16dbceede9d62b4bf0a88fd3b":"Clockmaker's Tale, A (World) (GB Compatible)","36df5ebe75980ac4409dead125247bce":"International Superstar Soccer 99 (USA) (SGB Enhanced) (GB Compatible)","3757c89c36bec5e2093741a3e51d22df":"Pokemon Pinball (Europe) (En,Fr,De,Es,It) (Rumble Version) (SGB Enhanced) (GB Compatible)","377447c3f3199d7d58788b1192fd9fb1":"Nakayoshi Cooking Series 2 - Oishii Panya-san (Japan)","37817f1d239b5c8b8c2dac4d49262d7d":"Green Beret (Unknown) (Proto 2)","37824faeedc1d562cae1ceee675c6ac8":"Laura (Europe) (En,Fr,De,Es,It,Nl,Sv,Da) (Beta)","37938c96f34c9be568095f868ff71d1c":"Survival Kids - Kotou no Boukensha (Japan) (SGB Enhanced) (GB Compatible)","37b3cf7650235536e14ec856b497fe61":"Lemmings (Europe) (Proto)","37f4ad4a7baed1ed6eb62787734c00ae":"4 in 1 + 8 in 1 (World) (4B-002, 4B-004, 8B-002, Sachen)","380b1ef48f653e92e35cb81fdeec9419":"Suicide Run (World)","381fd4c2f69053535bc44d1d1882b94e":"Smickeonn - The Game Deluxe (World) (GB Compatible)","3857f9105094b5423f3d230e630df8de":"Rokumon Tengai Mon-Colle-Knight GB (Japan)","3865301a25bb849eb1f216454e014996":"Nyghtmare - The Ninth King (World) (v0.1.0) (Beta) (GB Compatible)","388a603e8b6d0fcf7c553fb00a7c5171":"Sanrio Timenet - Mirai Hen (Japan) (SGB Enhanced) (GB Compatible)","38d51be26c98e1a89cace0d4f0684f72":"Power Pro Kun Pocket (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","39099c9c22658b15703aeaea20e8ec04":"Melanie and the Magic Forest (World) (GB Compatible)","391e8281aab8aa7c0aab6f11f28fb591":"Jet Set Willy II - The Final Frontier (World)","391f056795b0ba564204b9b99abea0dd":"Shuma Baobei - Huojian Bingtuan (Taiwan)","392e73a2acd4310487e3bfabdd70293d":"Fairy Kitty no Kaiun Jiten - Yousei no Kuni no Uranai Shugyou (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","396ce73f896f44ebd43f3cd315bb935f":"Qi Tian Dasheng - Sun Wukong (Taiwan)","398f7b60ea114b90b24503178f47e8d8":"Robopon - Sun Version (USA) (SGB Enhanced) (GB Compatible)","39c380ce4edf34382550fdaf4fc24fa1":"Outta Time (World)","39e9649316e36bad957e98a2170df6d0":"Benjamin Bluemchen - Ein verrueckter Tag im Zoo (Germany)","39f214540d2042865211e07c0536cc14":"NHL Blades of Steel (USA)","3a00468ea1520a57f23f88d43cf8c067":"SWiV (Europe) (En,Fr,De,Es,It)","3a3e92c106a8674642e0ee3c0c793a9f":"Meitantei Conan - Karakuri Jiin Satsujin Jiken (Japan) (SGB Enhanced) (GB Compatible)","3a70f79e33ed4ea546d0ba41a7f2ef25":"Jim Henson's Muppets (USA)","3a998a2ec99c89696c9b23bbbd87f116":"Cardcaptor Sakura - Tomoeda Shougakkou Daiundoukai (Japan)","3a9e8eafabf705600d6c6c6eb832a56d":"Games Frenzy (Europe) (En,Fr,De)","3aaaee3ddf6492c2741f63aa98a44874":"Koudai Guaishou - Dongzuo Pian (Taiwan) (En) (Alt)","3abb1ceb5e276926147b127002aa5b92":"Pocket Hanafuda (Japan)","3abeffb860d9e7bea74ce18d0e67029d":"Karate Joe (Europe)","3ad65b50c81a79f826eedc19edcf48f4":"Kindaichi Shounen no Jikenbo - 10 Nenme no Shoutaijou (Japan) (SGB Enhanced) (GB Compatible)","3af0cf37eadd6e98fdc43d4b3967c966":"Cruis'n Exotica (USA)","3b1ddf5b4ccf2be81c5d1454f4a183d0":"Days Without (World) (Multiple Endings)","3b24fbc8e72140fab38a9874b587c479":"Dejiko no Mahjong Party (Japan) (Rev 1) (Proto)","3b26dfc4e7c55cf86f4a4f3c18344ac7":"Quest for Camelot (USA, Australia) (En,Fr,Es) (SGB Enhanced) (GB Compatible)","3b2f918967698c3eef1f04ef7cd5601a":"Titus the Fox (Europe) (GB Compatible)","3b3d047d3264e1af33cb5b8cabfc8840":"Bandits at Zero (World)","3b7597f78e33a3f95055ce559bb0e0c5":"Chuanshuo (Taiwan)","3b783f3fded9c61f2f9bb1d956bfd6cd":"Ballistic (USA) (GB Compatible)","3b789f606b4b249f1557f55cf102d45e":"Medarot 3 - Parts Collection - Z kara no Chousenjou (Japan)","3b9116dcb4a3b4cc943f75b8b7e88212":"Gambler Densetsu Tetsuya - Shinjuku Tenun Hen (Japan)","3bc2db27baff012307501c31d49922ac":"Geheimnis der Happy Hippo-Insel, Das (Germany)","3bcb284142a35a8d86550c2f34549dcc":"Shaun Palmer's Pro Snowboarder (USA, Australia)","3bd0dad0c695a534b9e89264e09e2b11":"Klax (USA, Europe)","3bfa6eca3e26c8b4ee8e31ac7064085a":"Bass Masters Classic (USA, Europe) (GB Compatible)","3c0c5fceebff4d9730875a9362d26aa1":"Resident Evil Gaiden (USA)","3c2a7051b554cf70183cfa5d99ad021f":"Jinsei Game - Tomodachi Takusan Tsukurou yo! (Japan) (SGB Enhanced) (GB Compatible)","3c3f9f06b791df796b55ac94f2188ff2":"Rainbow Islands (Europe) (En,Fr,De,Es,It)","3c6b37b6162d599e3554689500b23af1":"Network Boukenki Bugsite - Beta Version (Japan)","3c6c0bf27c82eea13dfc9697e0cacf57":"Cyborg Kuro-chan 2 - White Woods no Gyakushuu (Japan)","3ccf696ddc0e2ed66c26c2ff2cb9e12a":"Walt Disney World Quest - Magical Racing Tour (Europe) (Fr,De,Es)","3ced79ad60ab5195058d5d658550f04f":"Dance Dance Revolution GB 3 (Japan)","3d04e5c70919118ef6e7cb69dae14b10":"Shin Megami Tensei Devil Children - Aka no Sho (Japan) (SGB Enhanced) (GB Compatible)","3d24f9e876df8c50573c00119d395b73":"Jim Henson's Muppets (Europe) (En,Fr,De,Es,It,Nl,Sv)","3d44046744627646c09c7ccdae604a34":"Daisu-ki - Jam Edition (World) (GB Compatible)","3d630cb2ff52e7fedfca6c938b82fa24":"Arthur's Absolutely Fun Day! (USA)","3d75b453859c2c6f1c84b68ca987adda":"LEGO Stunt Rally (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da)","3d818762aa83330ce4426f8005cc374b":"Batman - Chaos in Gotham (USA)","3dbefe8c7ca45427696016902c2ee452":"Data-Navi Pro Yakyuu (Japan)","3dc508d4da71f2e89ca63b42899741a4":"Army Men - Sarge's Heroes 2 (USA, Europe) (En,Fr,De)","3dd14683b58a36f62ff288c7e0ea918d":"Radikal Bikers (Europe) (En,Fr,De,Es) (Proto)","3dd6b4dd7da7f2b412f92c2509b9f1df":"Cannon Fodder (Europe) (En,Fr,De,Es,It)","3df56a809c6c2d7f5de745657f04fd4a":"Chester's Big Ol' Day (World) (Proto) (GB Compatible)","3dfc97eb20570f845bb07db304687666":"Super Mario Bros. Deluxe (Japan) (Rev 1) (NP)","3e3c0ff63a8f5de3c13a60b82cea89d9":"Toy Story Racer (Europe) (En,Fr,De)","3e617f42020b999e008e12e6371b96d2":"Friendly Fire (World) (GB Showdown) (GB Compatible)","3e62f2ac50ccf89d43a111ab0afe93b6":"Qix Adventure (USA) (Proto)","3e7736b358b7750bb451d505816d8b11":"Formula One 2000 (USA)","3ebd3d5cd2a0bbcb0ffa84cfcfb84b4a":"Superman - Battle for Metropolis (Europe) (Proto) (GB Compatible)","3ed4d88927e2ea0d4f75826f1b60d4a1":"Diva Starz (Europe)","3ee67bd4471e60f4fec6b0799219a2f5":"E.T. - The Extra-Terrestrial - Escape from Planet Earth (USA)","3f0f1cc327ff1be267b226b85b7a11c6":"Animal Breeder 3 (Japan) (SGB Enhanced) (GB Compatible)","3f26686accd8714584b966d277973873":"Kidou Senkan Nadesico - Ruri Ruri Mahjong (Japan)","3f45aaeb406c50d03fc6984908fcbfa5":"Titus the Fox (USA) (GB Compatible)","3f4e912a87ffb1e6c53c798fdd51099c":"Bug Byte (World) (Proto) (GB Compatible)","3f56e5776ff9a2b08a0c22f5eacf6017":"Dungeon Savior (Japan) (SGB Enhanced) (GB Compatible)","3f724784e8359413d25c9ee29162ca2d":"Gopher (World)","3fdf7a4784f7cc93f850df9fc1dcc1af":"Boxed In (World) (GB Compatible)","400d3090f58e68e3fc7d186c370c74be":"Taxi 2 (France)","402df05fc7cee731e564b48366bc779d":"Spider-Man (France)","4034ac7df292643c15c10fa2406ad8c2":"Harry Potter (Taiwan)","4040e7a81ee393909429f0bfcbeb1e47":"Dogz (USA)","4042d8319068186a02b3de972f6f4ed0":"3D Pool Allstars (USA) (En,Fr,Es) (Proto)","404e59cb2021179bb4c6ade209a52366":"Booga-Boo (World)","407e0edf45b42f88f96774c9f549cf18":"Mummy, The (USA)","410652f95c575ffde3312e24c754dd2a":"Tarzan (France)","410677787033aa6a5e36fa57eb9a1262":"Hexcite (Europe) (En,Fr,De) (Proto) (SGB Enhanced) (GB Compatible)","413e1acd7847d628364163eb2c97cecd":"Driver - You Are the Wheelman (USA) (En,Fr,De,Es,It)","417ae48b7e288b62fe2540541244fc31":"Loppi Puzzle Magazine - Hirameku Puzzle Dai-3-gou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP)","417b0d90e313a7e2ff10b73925158f46":"Pokemon Diamond (Taiwan) (En)","417c09180a10c47dc212b44a60f06b4c":"Rockman 3 (Taiwan)","419dfcafd48edd0c13624037e2bc81e9":"Bingyuan Lixian Ji II (Taiwan) (Alt)","41b5e9d960ceafc89e8bd740c2c74dc5":"Konchuu Hakase 3 (Japan)","41c1911a80b9138f89868540723c2cdd":"Super Dassalo Land (World) (v1.1)","41c2515a1dda83aadfd0a134bc62656b":"Loppi Puzzle Magazine - Kangaeru Puzzle Soukangou (Japan) (SGB Enhanced, GB Compatible) (NP)","41f99360142c5cc1c115724702ed6648":"Junior Maths 2 (World)","4219f9cd26b14aa29711cd5deebfc994":"Mage and the Grimoire of Beast (World) (Ja) (v1.01) (GB Compatible)","4272d192cf2b14db93f1e2d1bc07aa74":"SpongeBob SquarePants - Legend of the Lost Spatula (USA, Europe)","429e6da4b32d8caa22e78d92c0febd12":"3D Pocket Pool (Europe) (En,Fr,De,Es,It,Nl)","42ad3639f6abf013d5dacd4358abf6ca":"Grinch, The (USA)","42d27df48114658836c5a234f1d7ef81":"Nyghtmare - The Ninth King (World) (v0.2.3) (Beta)","42e66dd2c0470d98487ef364e7daf710":"NASCAR 2000 (USA, Europe)","42ff80b90350d30aafe41ea2c71a79bf":"Men in Black - The Series (USA, Europe) (SGB Enhanced) (GB Compatible)","43202194489c664523243ae75ee041af":"Shutokou Racing, The (Japan) (SGB Enhanced) (GB Compatible)","43351cd46357bd1615a713490401fda8":"Koto Battle - Tengai no Moribito (Japan)","433d5df048561d0a276a56b210e25d9b":"Kaept'n Blaubaer - Die verrueckte Schatzsuche (Germany)","434dcfae5fdcf6f8f8ed466cdc88cc2f":"Tazz (World)","43527e9aff69649306c749da2d3c72c0":"Armada - FX Racers (USA)","435d9fa03b3f891648f9c56d39299807":"VIP (USA) (En,Fr,Es)","436e02804051d43b9b622bb48f7c67bf":"Suzuki Alstare Extreme Racing (USA) (Proto)","437ffe18425cdfa304da7f84cf257fc8":"Bomb Runner 1-2 (World)","439acae020bd073ecf7f41a881ccabda":"2003 Harry Potter 3 (Taiwan)","43ed3a5d16a9bb15e746346ebab6c5a6":"Bubblegum Attack (World) (GB Compatible)","43f61059772e7cef92e32f05dd89205b":"Shaman King Card Game - Chou Senjiryakketsu - Funbari Hen (Japan)","44090e5f80e30abddf264b170c236a9e":"Medarot 2 - Kuwagata Version (Japan) (SGB Enhanced) (GB Compatible)","44173cb9938f95619dc9db70797d5f72":"Larion's Tinker Toys (World) (Proto 2)","4448c35bebf32629e23f64c61cc50565":"F1 Championship Season 2000 (Europe) (En,Fr,De,Es,It)","44837786e1a5eb6ae5b70a14127a869f":"Silent Hill 2 - 20th Anniversary Demake (World) (Proto) (GB Compatible)","448af6d54ce1886456c98209f53abdc7":"Dr. Rin ni Kiitemite! - Koi no Rin Fuusui (Japan)","44bd656c1315621238cc57767e2e0e35":"Finders Keepers (World)","44cc400d990e2284ae843545fe99402e":"Sea-Doo HydroCross (USA) (Proto)","44edc2796dbeeed54658638bf2b7d78c":"Hat Boy (World) (GB Compatible)","4505499c8a53c23195b2d47b9366fba7":"Fillo - Crystal Version (World)","4505fd4df8eb721cf2f5b5be93682874":"Sanrio Timenet - Kako Hen (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","455df3202a18dfd4e7e93a7881c10901":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (1998-07-14T181500) (GB Compatible)","4563d42db3b0c9f2e14c1cad7725bb34":"Dino Breeder 4 (Japan) (SGB Enhanced) (GB Compatible)","4572f09b61a36e94762ff60cbe182834":"Pokemon Trading Card Game (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible)","45a4cefca0b17ca193869bf6d6134d7c":"Microsoft - The 6 in 1 Puzzle Collection Entertainment Pack (USA)","45a7802b724dc5431847f60f3e78a302":"Rescue Heroes - Fire Frenzy (USA)","45afa73780709db49ce92eea952b0baf":"ECW Hardcore Revolution (USA, Europe)","45c4b87d2e3fe86fccc6941ffd724098":"Baby Felix - Halloween (Europe) (En,Fr,De,Es,It,Nl)","45d988bdb6cfcc334134dd212cefb7b8":"Pokemon - Version Cristal (France)","45db77fb2f2923c33ff9d521d5eaecce":"Maya the Bee - Garden Adventures (Europe) (En,Fr,De,Es)","45e090a174fd41f2e78759477d5b3ea1":"Shark Attack (World)","45eeade46bd85f80af13af9dce572b9c":"Barbie - Fashion Pack Games (USA, Europe) (GB Compatible)","4633a7b4485391e2fce4674caf00bb85":"Dragon Ball Z - Legendaere Superkaempfer (Germany) (Beta 3)","4639d79e2e02a687a44d19d9c9c3c28a":"Tootuff (Europe) (En,Fr,De,Es,It,Nl)","464acbe3c82887db897c39cdba877237":"Azure Dreams (USA) (SGB Enhanced) (GB Compatible)","4681f5b931a2e60ca163facd1adf56ed":"Mega Man Xtreme (USA, Europe) (GB Compatible)","468a4386f2e26f2f20e262f34a232ddd":"Wolf Pack (World)","469ee8270b66dad56379b29d160ee48c":"Kirikou (Europe) (En,Fr,De,Es,It,Pt)","46b9a55a3049a1113bc5430edaaf9401":"E.T. - The Extra-Terrestrial and the Cosmic Garden (Europe) (En,Fr,De,Es,It,Nl)","46c4958373216fbcf69a0c94946575f8":"Yakouchuu GB (Japan)","46e0e199f58aebbb75b4ed16da5aae60":"Space Invaders (USA, Europe) (GB Compatible)","46ed332d95c5da9a2007945fed9f8118":"Tintin - Le Temple Du Soleil (Europe) (En,Fr,De)","4713c80f75168f12d7582e63abb6edef":"Ottifanten - Kommando Stoertebeker (Germany)","472a51e912d0df0e786989cb6f190b87":"Mommy (World) (GB Compatible)","472b425740f0603fa3b566e028e871bd":"Honkaku Taisen Shougi Ayumu (Japan) (GB Compatible)","473e78b1d576a052492e1b4b80f4d3b3":"Elie no Atelier GB (Japan) (SGB Enhanced) (GB Compatible)","475550607b59e83c5465411015b66f41":"Chopper War (World)","475c56c522cc154c1526ab0900d77123":"Wing Warriors (World) (En,Fr,Es) (Beta 2) (GB Compatible)","476902451bd5da0f854a5c1681495b94":"Tonka Raceway (USA)","47714d6ae7b080a183804144d0672a62":"Emo Cheng 2 - Fengyun Pian (Taiwan)","47c3d8f5246f07f8885e44a9d2008f83":"Gunther the Monster and His Friends (World)","47e8dcb47a5e87f74441bb735f255aba":"Soukoban Densetsu - Hikari to Yami no Kuni (Japan) (SGB Enhanced) (GB Compatible)","482a7fe10c3e3d10127bbb08447a15cb":"Catwoman (Europe)","484020d0bf01d29f2a74322e0d4acc3a":"Zelda no Densetsu - Fushigi no Kinomi - Jikuu no Shou (Japan)","484eeb83ad00353272767485eca59ea5":"Star Wars Episode I - Obi-Wan's Adventures (USA)","488611af773cec5b7ecc5bd3efb754bb":"Spacestation Silicon Valley (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible)","488c90eea5b5e2e8e217be6b7c9a1318":"NBA Jam 2001 (USA, Europe) (Beta)","48b5fea61742d75e98782803d14871f3":"DT - Lords of Genomes (Japan) (SGB Enhanced) (GB Compatible)","48b6a0ef5009a57d3976013bf42aa81d":"Yingxiong Tianxia (Taiwan) (Zh)","48ce279084e1fc7a9136cc211f4fad5d":"Hamtaro - Ham-Hams Unite! (USA)","4907bfe608ede74e08f4b43c51dc0194":"Auto Zone (World)","490bddbb5b173fad0ee682154bb1fbd9":"5 Minutes until Goodbye (World) (GB Compatible)","490cf7b762f7b735f249c3a3107c3e55":"Beatmania GB - Gotcha Mix 2 (Japan)","491d97b847cadc6c854172008a09fc83":"Legend of Zelda, The - Link's Awakening DX (Europe) (Rev 2) (Beta) (SGB Enhanced) (GB Compatible)","4948bfdacce45f5c1d0facab23f3ba54":"Blinky's Revenge (World)","494fbe8f0770a06be11a4026829e2396":"Shaolin Shisan Gun - Ying Xiong Jiu Zhu (Taiwan) (Zh)","49561c4082206a7e5d5ca2032be81eed":"Buffy the Vampire Slayer (USA, Europe)","495c72cdac3cd684b5d56581ccc183e1":"MTV Sports - T.J. Lavin's Ultimate BMX (USA, Europe)","496820c003cbca91df5dcc266053e3c2":"Shanghai Pocket (USA) (Rev 1) (Proto) (SGB Enhanced) (GB Compatible)","496afc38447d1ddec45583f3df074b35":"Senkai Ibunroku Juntei Taisen - TV Animation Senkaiden Houshin Engi Yori (Japan) (SGB Enhanced) (GB Compatible)","497e32beeface0c5dac4bfe84a5964b6":"Deja Vu I & II - The Casebooks of Ace Harding (Europe) (Fr,De)","4983746a421eff341f842649fcd8be89":"Star Heritage (Europe) (Proto) (Password Version)","498a332679b9ce4392af8d9b0567bf24":"Mail Junkies World Port (United Kingdom) (v1.01)","498c0a50a5e5cde16127617a97ad6162":"Harvest Moon GBC (USA) (SGB Enhanced) (GB Compatible)","49a772d7e66928ecf1ed672c679d99aa":"Digimon Crystal II (USA)","49b4214dceb5404acd5b83fc3d1a36bf":"Lee Carvallo's Putting Challenge II (World) (v1.2) (GB Compatible)","49b48529d5291796a96659468c41cc54":"Logical (Europe)","49b834ac7cd50da9b424e17c112c577a":"Speedy Gonzales - Aztec Adventure (USA, Europe) (GB Compatible)","49bc624c902fcb2e4892e5c823c987d0":"Microsoft Pinball Arcade (Europe)","49c62d2d16ace6a2c46d2cc817a49abf":"Arena 3000 (World)","49dd3c08833fab2509cdd1c724183460":"Lunatic Tower (World)","49e8a2684fd79b892eb4244224019f59":"Capybara Village (World) (v1.0) (Proto) (Cozy Spring Jam)","4a07f33107d47d904f80c53d0e857605":"Test Drive 6 (USA) (GB Compatible)","4a1eefb91466fd1a2368617d4e697c30":"Test Drive 2001 (USA)","4a58b26ef9624192afe5542f790cdb01":"Carmageddon - Carpocalypse Now (Germany)","4a58e3e59100c1791acd3c82f5ebd656":"Shenghuo Jiangmo Lu Waizhuan (Taiwan)","4a6aec32a62b0ecca3e2328fabbeb811":"Leaper (World)","4a8e3506f98e01fcb0da5073b83e4e35":"Q-bert (USA)","4adc91b001cf02dc42d2c0339535b8f9":"Indiana Jones and the Infernal Machine (USA, Europe) (En,Fr,De)","4b068708fb29fdabbee834114fe4a09d":"Hexcite - The Shapes of Victory (USA, Europe) (SGB Enhanced) (GB Compatible)","4b146ce804a9b9c90467742508a67b5f":"BattleTanx (Europe) (En,Fr,De)","4b3484d4a629121131885737ba86ca14":"Zippy The Pinecone (World) (GB Compatible)","4b355f96ea75826ad0e48055482badea":"Tyrannosaurus Tex (USA) (Proto)","4b497dfa757c4c54c67089507a71a715":"David O'Leary's Total Soccer 2000 (Europe) (En,Fr,De,Es,It,Nl)","4b5da8d4b73304b6694651f3fd8c8216":"Pocket Music (USA) (En,Es) (Proto)","4b62032c9cfecf52156ad0a2598444bd":"Robopon - Sun Version (USA) (Beta) (SGB Enhanced) (GB Compatible)","4b64f2a44700d5bf9dc0a25a64a9ebb0":"Batman - Chaos in Gotham (Europe) (En,Fr,De,Es,It,Nl)","4b684b00ecc0cf15536dc5ab58bdd470":"Monsters, Inc. (Europe) (Rev 1)","4b6b4476a9a2f205975db431dfec4533":"All Star Tennis '99 (USA) (Proto) (GB Compatible)","4b9d82d91a575cf96657383a26505eff":"Powerpuff Girls, The - Bad Mojo Jojo (USA) (Rev 1)","4bc8467ed91a94ba23648706b551cef5":"Classic Bubble Bobble (USA) (SGB Enhanced) (GB Compatible)","4c04b4fba57829c2eee5f4f37801c648":"Sabrina - The Animated Series - Zapped! (World) (ModRetro Chromatic)","4c18b5d470b105344ec55d195a05d2de":"Shadowgate Return (Japan) (GB Compatible)","4c634b29b3f20529cc4e0808199fa73e":"Konchuu Hakase 2 (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","4c9ea697778efdc5cefd32ce63e58598":"Memory Mania Challenge (World) (v1.3) (GB Compatible)","4ca44cbdd4e05c9b3c22da96d3de6338":"Legend of Zelda, The - Oracle of Seasons (Europe) (En,Fr,De,Es,It)","4ca71b12d89a5bcfcc52095081ae9f51":"BattleTanx (USA)","4cde8dac14b8ace83f8a4716ccb2dbf0":"Dragon Ball Z - I Leggendari Super Guerrieri (Italy)","4cec140483baf799e883e717b8ce81a5":"DX Monopoly GB (Japan) (SGB Enhanced) (GB Compatible)","4cf10b2c7ae81e62e82da32de3a9d48e":"Jaguar Mishin Sashi Senyou Soft - Mario Family (Japan)","4cf4a9af727673fa31cfe9d991428b6a":"Loppi Puzzle Magazine - Kangaeru Puzzle Dai-3-gou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP)","4cf9559ece4f20e20f0a0df646f4b68b":"Bikkuriman 2000 - Charging Card GB (Japan) (SGB Enhanced) (GB Compatible)","4d08e5553356aecd728b5ef7d78ee261":"Motocross Maniacs 2 (USA)","4d090ceaa53d571db00d7160ca4be69d":"Ms. Pac-Man - Special Color Edition (USA) (SGB Enhanced) (GB Compatible)","4d3e8bf64b69eb56c5f1786cef422c59":"Command Master (Japan)","4d401d54a616be45156e253213a6f04f":"Sludge & Sorcery (World) (GB Compatible)","4d48457f7138c58be1589a4ddce1f02d":"World Soccer GB 2000 (Japan)","4d6ce58ac78078d47a807cb326c3919a":"Bakusou Dekotora Densetsu GB Special - Otoko Dokyou no Tenka Touitsu (Japan)","4d8cac8dd06fb8da1debf7e84a1c2166":"Pokemon - Sapphire Version (USA)","4df8d03bb1853f949cf4a99dffd21362":"Test Drive Cycles (USA)","4e1a5f02cce49842d4717a8b0ce501f5":"Wendy - Every Witch Way (USA, Europe)","4e362c69c3d8f1e170f8e2a25d929435":"Robopon - Star Version (USA) (Proto) (SGB Enhanced) (GB Compatible)","4e5d7a1b65b52af7ca88e0b7b2016197":"Loppi Puzzle Magazine - Kangaeru Puzzle Soukangou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP)","4e60a2f1edbef45f0794a95dc0607234":"Year After, The (World) (En) (Beta) (GB Compatible)","4e745e7febe4214c484d9c1e0a62ae57":"Jeff Gordon XS Racing (USA) (GB Compatible)","4ea42da8598a4bbf223af121ddfab335":"Shuma Baobei - Hai Zhi Shen (Taiwan) (Zh)","4ef95a30c72008dee31ab836742c9acf":"Shin Megami Tensei Trading Card - Card Summoner (Japan)","4f05f82ad7c0f5aaba6d61438d5d8238":"Cool Bricks (Europe) (Beta)","4f2adc9041f74b1504cec9fa34abe0dc":"Hidden Gems (World) (GB Compo 2023) (GB Compatible)","4f4ad5f3389da1fc85af38cf770d4556":"NFL Blitz 2001 (USA)","4f62184649801733697e35c878092ba4":"Wangzu Tiantang (Taiwan)","4f682b03d485a50cc4a0307e9c949196":"Tootuff (Europe) (En,Fr,De,Es,It,Nl) (Beta)","4fa0f6e7388f072c8bb76761f8068868":"Macross 7 - Ginga no Heart o Furuwasero!! (Japan)","4fcf445c25b4cf798ef15afcd044dcf4":"Quan Ba Tianxia (Taiwan)","4fd68c1cf8b57e90a5b11b054fc68b46":"Donald Duck - Goin' Quackers (USA) (En,Fr,De,Es,It)","4ff574fadd50a18d7e93fe0d7dc4c8d1":"Magical Tetris Challenge (Europe) (En,Fr,De,Es,It,Nl,Sv) (Rev 1)","500c3ad63568b78fe3df71782bdf8592":"Hanasaka Tenshi Tenten-kun no Beat Breaker (Japan) (SGB Enhanced) (GB Compatible)","5045139eb57b9d6cdfa1366f473a1e4c":"Dragon Quest I & II (Japan) (SGB Enhanced) (GB Compatible)","509ca3dc125131b1a4b1667ccc64fd27":"Doraemon no Quiz Boy (Japan)","50aecb6a5ea96b4727e8e475e451b2d4":"Apollo Mission (World)","50af67f7321d84bd052f0e793ee0613c":"Mario Tennis (USA)","50e6d9d88450932743161b7512838ccc":"Flintstones, The - Burgertime in Bedrock (USA)","50f6fe2488600b1b80b8dea0aeeac2e1":"Bakuten Shoot Beyblade (Japan)","51091a6d773823b8731240676d9d25cf":"E.T. - The Extra-Terrestrial - Digital Companion (USA)","510eb8c9df5d3f71e01f5a7898a0a1f1":"Pokemon de Panepon (Japan)","5130d3ec4a93acb84e3f2c3590a0e5a6":"Tech Deck Skateboarding (USA, Europe)","51356c19a22fcb871cbdd721e42fe201":"Wacky Races (Europe) (En,Fr,De,Es,It,Nl)","51518f30eb5e6190671017fc9807016d":"NHL Blades of Steel 2000 (USA)","5164521245f41b0f3a51cffe0704d21d":"Thunderbirds (Europe)","5165faa424c006a72ccacdd62bf61726":"Hiryuu no Ken - Retsuden GB (Japan)","517ef53718009b20d7bf7771aef191dd":"Moomin's Tale (Europe) (En,Fr,De)","51825ecaa3162a1c871fe67e4a83f0b9":"Pia Carrot e Youkoso!! 2.2 (Japan)","51c8578d742ae2306b863776738f6772":"Kanji Boy 3 (Japan)","51f21f61592f05e712b36a0bf10a34a6":"Golden Goal (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible)","521f0e017a4266355f3f4dc015f1dd46":"Ohasuta Dance Dance Revolution GB (Japan)","522910c5daf605b45745fa97cda41f84":"Barca Total 2000 (Europe) (En,Fr,De,Es,It,Nl,Ca)","523fac00115280ede5ac1647552b2024":"SnowCross (Europe) (En,Fr,De,Es,It,Pt)","5246b47da10ed6e48cbf58b5ee81e5c1":"Grimace's Birthday (World) (v1.6)","5254ea1935c43057358d2efba26c60c8":"Dragon Quest Monsters - Terry no Wonderland (Japan) (SGB Enhanced) (GB Compatible)","528ff2f54eb0b318e8e91a282fd62f2d":"Nakayoshi Cooking Series 5 - Cake o Tsukurou (Japan) (Beta 1)","52a9d2992a270ee3184553caf4fdba2b":"Gakkyuu Ou Yamazaki (Japan) (Rev 1) (GB Compatible)","52c823c2c7fddcfd77768daf42082980":"Robot Poncots - Comic Bom Bom Special Version (Japan) (SGB Enhanced) (GB Compatible)","52e260e54d59fd16cd5cc588123d3e48":"Gonta no Okiraku Daibouken (Japan)","52f46e74689516225055b8576079ee24":"Sewing Machine Operation Software (USA) (En,Fr,Es) (GB Compatible)","5315c21eaffde4a641a02d89f18e2a95":"Donald Duck - Quack Attack (Europe) (En,Fr,De,Es,It)","5323967b4e46c4a76ea3576675be42ac":"Minnie & Friends - Yume no Kuni o Sagashite (Japan)","5328277fe9c9c4b1671c5f40424c34f1":"Yin Ban Zhongwen RPG Zhanlve + Dongzuo + Yizhi 12 in 1 (Taiwan)","535ac79c69b22ed21cc9af0d4c10bea8":"Doug's Big Game (Germany)","535dbd4550114faa20678be0fbf973a9":"Digimon Pocket (Taiwan) (En)","536f2da6f96f278bd59b92bf37b61964":"Cuthbert Enters the Tombs of Doom (World)","538f4d9036a7841cb157b9023346c540":"Konami Winter Games (Europe)","53a98fbfddc370edd2de8eb0af5aa7ac":"Kanji Boy (Japan) (SGB Enhanced) (GB Compatible)","53cfcb50a8273c3fdbbbee9a20777361":"Get!! Loto Club (Japan) (Proto) (GB Compatible)","53fc292b30e0a4c59045e5f6a7587a01":"Pokemon Jade (Taiwan) (En) (Pirate)","54051bc19ce1c0301710d7845717dbad":"Suzuki Alstare Extreme Racing (Europe) (En,Fr,De,Es,It,Nl)","54165d2bf7a040aa31d6d0956408d10d":"MTV Sports - Skateboarding Featuring Andy MacDonald (USA, Europe)","5416dfae15db78cbbb6525051451c284":"Pocket Color Mahjong (Japan) (GB Compatible)","5423b2d603c9d4381594aa3d68441a69":"Babe and Friends (USA) (GB Compatible)","542543461273c69e6966d2599f382eca":"Captain Buzz Lightyear - Star Command (Germany)","5428271d0c9c5eb3dbf28078fafe2031":"F1 World Grand Prix II for Game Boy Color (Europe) (En,Fr,De,Es)","543fe119633338174899829b6d4c571f":"Thunderbirds (Europe) (En,Fr,De,Es,It)","544eb3962ef54f89718c8dfa668ec4be":"Star Wars - Yoda Stories (USA, Europe) (GB Compatible)","545b4875c01233edbdc6c2cd001aec25":"Tomb Raider (USA, Europe) (En,Fr,De,Es,It) (Beta)","547c0d3fdb1c6ef7abc7dff06c457a35":"Frogger (USA) (Rev 1) (GB Compatible)","549b54077fd122943e076f4c2350be05":"Bug's Life, A (Europe) (SGB Enhanced) (GB Compatible)","54c8522c1d924a05bb05ac6673f023e6":"Bomberman Max - Ain Version (Japan)","54dd12ef93fad931df26cdf67ad4677a":"Rugrats en Paris - La pelicula (Spain) (En,Es)","54df933576a8b8ca991b3ac9b6a1ad61":"F1 Racing Championship (USA) (En,Fr,De,Es,It) (Proto)","54f81e8d2232af2503e0e03eeeeb39ce":"Centipede (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible)","55031fadeb053136a4df5cf848a97680":"Tetris Adventure - Susume Mickey to Nakama-tachi (Japan) (Rev 1)","5507d692286e2c57e29c62e78be4c7b5":"Digimon 02 5 (USA)","5563e6e09898599a781750d9ce9f0259":"Tottoko Hamutarou - Tomodachi Daisakusen Dechu (Japan) (Rev 1)","55bd8b9da0d4bf94a93e56d91c8219dc":"Trip World DX (World) (Limited Run Games)","55e3907e1d4c98bb4a3f9ab9005b1727":"Pokemon Vision Jade (Taiwan) (De)","55fea8e7be17975374ab24518bd83171":"Tarzan (USA, Europe)","560256bd5d95f16dead694d680e1c2e8":"Yu-Gi-Oh! Duel Monsters III - Tri Holy God Advant (Japan)","560e27a4d80b88280d8ad7358467c301":"Buzz Lightyear of Star Command (USA, Europe)","565b748f3ee16464bebde853770d39d2":"Powerpuff Girls, The - Battle Him (USA)","5679de3c41c63c6b9dc9432c7ed1105a":"Grandia - Parallel Trippers (Japan)","56aeb68f722483cff5179db47cf5222a":"Expiration Date (World) (v1.5) (GB Compatible)","56b935754216ef447a905c2e516a130c":"Bingyuan Lixian Ji (Taiwan)","56cbf668af5095a073e205a07987c82a":"Snoopy Tennis (USA) (En,Fr,Es)","56d9d8b1da2a329456a101031850e32b":"Kakutou Ryouri Densetsu Bistro Recipe - Kettou Bistgarm Hen (Japan) (SGB Enhanced) (GB Compatible)","57611d2939ee579349f2221c78339bb1":"Swordbird Song - The Iron Owl Tower (World) (v3.1) (GB Compatible)","576187b3bd246be19b9ae997188b7b0d":"Smickeonn - The Game 2 - Virtual Boy Edition (World)","576e3a9d7da60439c8fb28c81b56fe5a":"Beach'n Ball (Europe) (En,Fr,De,Es,It)","5776965258ee78832e7eabc0db66ff4b":"Monsters, Inc. (USA, Europe)","5779b8a387c10d39faf8fd55632375c7":"NASCAR Challenge (USA) (Rumble Version)","578a0860ed55c3e497af423c739f7d84":"Wendy - Der Traum von Arizona (Germany) (Beta)","579291571dac53916fd552ccea5b0bb9":"Front Row (Japan)","57a7d3d3e7d67ec7d72de5701d9227d8":"Daikaijuu Monogatari - Poyon no Dungeon Room (Japan) (SGB Enhanced) (GB Compatible)","57b59bc623b05385ab27a0d7e18295a1":"Tom and Jerry - Mousehunt (Europe) (En,Fr,De,Es,It)","57bcde64a3005d4aad8df640f2b5f07c":"Powerpuff Girls, The - Battle Him (USA) (Rev 1)","57db65568f3c4a523960cd5b35096481":"Tweety's High-Flying Adventure (USA)","58670204ec7b8791576e3c88ba7c1ddf":"F-18 Thunder Strike (USA, Europe)","5878a145e365fa1841b22e837c3226ff":"4x4 World Trophy (Europe) (En,Fr,De,Es,It) (GB Compatible)","5896aa268a344d2b65a70c983ad78c3f":"Star Trek (Europe) (Proto)","58a311a266816b46c8d6775e73a70b69":"Super 21 in 1 - New GB Rumble (Taiwan)","58df996c5721b105989e7052e214a3c4":"Laser Squad Alter (World)","58ff2f0f26205c5bd8c9aecb9973cb6a":"Jack no Daibouken - Daimaou no Gyakushuu (Japan) (SGB Enhanced) (GB Compatible)","59558bce6ef7774132a6109d1d0a0636":"Year After, The (World) (En,Fr,Pt) (GB Compatible)","5962e70172bbe5a77ae507a409d12aa9":"Visiteurs, Les (France) (GB Compatible)","597bd5a8aa26af757cba57aff575eaa3":"Godzilla - The Series - Monster Wars (USA) (En,Fr,De)","59b05dfc07cb8de90de975ea64af29bd":"Kanzume Monsters Parfait (Japan) (SGB Enhanced) (GB Compatible)","59dbf67358b671e2c8dcd9f89ebaf378":"Columns GB - Tezuka Osamu Characters (Japan) (SGB Enhanced) (GB Compatible)","59e3ae1c56f9f22a7da70168757f640a":"Ultimate Surfing (USA)","59e6b58b2f788c5e72bfa93e3052869d":"Woody Woodpecker no Go! Go! Racing (Japan)","59f3f8585cfc12876db9a27018d41f78":"Papyrus (Europe) (En,Fr,De,Es,It,Nl)","59fed43cd1489169d3c51b87988e7abe":"Kaitei Densetsu!! Treasure World (Japan) (GB Compatible)","5a021b40ccc17a66465dab276bf06cbe":"Alone in the Dark - The New Nightmare (USA) (Beta)","5a192fff3db17b8fb1ed19867d4be13a":"NFL Blitz 2000 (USA)","5a736039aab0973d8a014fdacbbeacbb":"Mob Creche Parallel Game (World) (En,Ja)","5a7673f1e61cd707bdc880ff76396a3d":"Cool Bricks (Europe) (En,Fr,De,Es,It)","5a8eb78c3eee9b199483b903344509e8":"Lunar Docking (World)","5a93ecb5781a3338c99e35bd06cc6127":"Tiny Toon Adventures - Buster Saves the Day (USA)","5aa10d5b6e7427a763b7c74b8d804821":"Swordbird Song - The Iron Owl Tower (World) (v3.0) (GB Compatible)","5aab47cf957c82c969bbc0a93232f883":"Atlantis - The Lost Empire (USA, Europe)","5ab6b2a6f4c48aa8a1e77e31370cdcb3":"Power Pro Kun Pocket (Japan) (SGB Enhanced) (GB Compatible)","5adbcf7b767292f53912761b66133455":"GB-Wordyl (World) (Nl) (GB Compatible)","5b250ab006a50301f29e74551531bd7f":"Sylvanian Families - Otogi no Kuni no Pendant (Japan) (SGB Enhanced) (GB Compatible)","5b29ec02452df1c3ce70d6aa82d59409":"Gravitorque (World) (GB Compatible)","5b36285c8491be0e1cb0c2c741d2b793":"Sakura Taisen GB 2 - Thunderbolt Sakusen (Japan)","5b36c3da8bcfee8a5f14a6db12f533a3":"Super Nenas, Las - Panico en Townsville (Spain)","5b40590960c204efd6303b2e89a0cc10":"Nushi Tsuri Adventure - Kite no Bouken (Japan) (Rumble Version)","5b5f4bbec087abc00ce1f834a86bdae3":"Pocket Billiards - Funk the 9 Ball (Japan)","5bad510836505a54f873191391bf7392":"River Styx Round-Up (World) (GB Compatible)","5bcd7a470494ad1c3b58936088532ca6":"Chrome and Blood (World) (v1.02) (Proto) (GB Compatible)","5bcdc0754bce49836a5f4c8614782a6f":"Hejin Zhuangbei II (Taiwan)","5bd9f0923dc29bd9e566933c3c3e7902":"Juukou Senki Bullet Battlers (Japan) (SGB Enhanced) (GB Compatible)","5be268f2761c76de1a0f86efc0f6bd50":"Fighter on the Path of Glory (World) (En,Ja) (v1.00) (GB Compatible)","5bea1b33eb5635e147069215c92b3d41":"Bokujou Monogatari 3 GB - Boy Meets Girl (Japan) (Rev 1)","5c010c6c3243380db1c64e9c01d1b982":"Musical Notes (World)","5c07e6aff1e2cdac8ec09554981ab0c9":"Koushien Pocket (Japan) (SGB Enhanced) (GB Compatible)","5c0ed7c257219b6fab67c5f9d9ab25f8":"Opossum Country (World) (GB Compatible)","5c3a09f365cfa467a11f14075b0d5517":"Ojarumaru - Tsukiyo ga Ike no Takaramono (Japan) (GB Compatible)","5c5917d5396f44aa95341e7d9ee5d79f":"Sir Knight (World)","5c7ecb62a755ce577e7d8a943838d45f":"Nisemon Puzzle da Mon! - Feromon Kyuushutsu Daisakusen! (Japan)","5c8af4e0a5c140ed96af55bc85828abc":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (1998-07-14T022124) (GB Compatible)","5cc6ad2a2406c6c860f36107f6eb414e":"Looney Tunes Collector - Martian Alert! (Europe) (Fr) (Beta 1)","5cfeb93b86fbfe59d7c59e904de3bb88":"Rip-Tide Racer (Europe) (En,Fr,De,Es,It) (GB Compatible)","5d20a03ac7dae3572d4826ae884085d7":"Stellar Wars (World)","5d4cdbf3b54b6857c29cb24ebfaf2470":"Super Me-Mail GB - Me-Mail Bear no Happy Mail Town (Japan)","5d4e5be715d0a30bf1f94bb116a34b84":"Xploder GB (Europe) (v1.2.3E) (GB Compatible)","5da357ef79acb5ab8852d145888dd5cb":"Sesame Street - Elmo's ABCs (Europe) (GB Compatible)","5da63fe252b4cb3e17dd4986fb276690":"Smurfs Nightmare, The (Europe) (En,Fr,De,Es)","5da744788c35f96f9fa249aba68cf095":"2001 Fatal Fury (Taiwan) (En)","5daf6da4a471c6b9517413ef25e498a5":"Puzzle de Shoubuyo! - Wootama-chan (Japan) (GB Compatible)","5dda88b002742dc16fd232ad569dc4c8":"Formula One 2000 (Europe) (En,Fr,De,Es,It) (Proto)","5de22f218b0f679cbfe6fdd880c2f529":"Pinecone Pizza Party (World) (Prototype) (GB Compatible)","5df6d1ec0e9241e1ed8a8ee7ff318631":"Santa Claus Junior (Europe)","5dfe3d8c181023b30cfc942a9aa40a69":"F-1 World Grand Prix (Japan) (En) (Beta 2)","5e0691f5e41302c7477aff9cc252a7d9":"Ninja JaJaMaru - The Great World Adventure DX (USA, Europe) (Ninja JaJaMaru Retro Collection) (Switch)","5e1b4969a76e069acf2622f7bb05d8d3":"Evel Knievel (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible)","5e374708237a17f322a077daba43ac76":"Hello Kitty's Cube Frenzy (Europe) (Proto) (GB Compatible)","5e9ac200f771f793f4ff65506fb63763":"2003 Koudai Guaishou - Lanbaoshi (Taiwan)","5edc7fd33f6872f6243d746ffb992f11":"Alley Cat (World)","5ee49eaf9a2c19623478215788c0bfdc":"Space Marauder (USA)","5f1481260760c69843a61e9060ad7154":"Monopoly (USA) (GB Compatible)","5f1dc921df67de60d3f6ef1a44870142":"Planet of the Apes (Europe) (En,Fr,De,Es,It,Nl)","5f43dc79250321f235a1ddc422a2d58d":"From TV Animation One Piece - Yume no Luffy Kaizokudan Tanjou! (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","5f5535bf79444ec15502db9c81e58ced":"Daikatana GB (Japan) (NP)","5f797c8c175237b9ef0d9a6888a4a239":"Medarot 2 - Parts Collection (Japan) (SGB Enhanced) (GB Compatible)","5f821976274f5e6147f2354a6d01f098":"Montezuma's Return! (USA) (En,Es) (GB Compatible)","5f872189d58f841b5672d4cb11ec3bbb":"Pooh and Tigger's Hunny Safari (USA)","5f87a30263bfffd7003b2dda6443e216":"Pact, The (World) (GB Showdown)","5f9bbf43df1837fe1c1d960286513fcb":"Hello Kitty no Sweet Adventure - Daniel-kun ni Aitai (Japan) (SGB Enhanced) (GB Compatible)","5ffa26d048b191bfd6af46be13552aa5":"Chase the Chuck Wagon (World)","600c8c4d9fcc759dae5055297b0ebb5f":"Mizuki Shigeru no Shin Youkaiden (Japan)","600e9e24ebbe4f2b8a09d429b4aee54c":"Jeremy McGrath Supercross 2000 (Japan) (En) (Possible Proto) (NP)","60189a9f7aeda63e0745b347008280f0":"Xingqiu Dazhan II - Kelong Ren Zhanyi (Taiwan)","6027ab122cd183e40184db9297c0b38e":"Yurivania II - Josette's Quest (World) (v1.2)","60abfc4f6f633a708c23d91d0cc2f5bd":"Tamarindo's Freaking Dinner DX (World)","60b253394d8d817afcb80b8c69be907d":"Mythri (USA) (Proto 1)","60df8a170849c5f5a6f94b1531a29a34":"Bakukyuu Renpatsu!! Super B-Daman - Gekitan! Rising Valkyrie!! (Japan) (SGB Enhanced) (GB Compatible)","60f6fbdd07d01ad1835269fdeaebb83d":"Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (Rev 2) (GB Compatible)","6122caeec0daab1bfa89c2af317dcbd6":"All-Star Baseball 2001 (USA)","6145649e6fa0e5c741fd4916f740e755":"My Friendly Little Island (World)","6156e8789ce8126c299892f34d2c9805":"Snow White and the Seven Dwarfs (Europe) (En,Fr,De,Es,It,Nl,Sv,No,Da)","617dcfac99f28045b8f4c46b9d75b58e":"Rampage 2 - Universal Tour (USA, Europe)","6181d450198ae4ec17f2aa86bbe2a1d1":"Pogo Pete (World)","618946a1d8d7154c200fe278ef030140":"Magical Drop (Europe) (En,Fr,De)","618be0636a482b1c5e5898e7cb5f1bb3":"Road Champs - BXS Stunt Biking (USA, Europe)","618e8914445053d1bd0901ad5297f927":"Tonka Raceway (Europe)","61d38e254879b2b99490573499a801b1":"Legend of Zelda, The - Link's Awakening DX (Germany) (Rev 1) (Beta) (SGB Enhanced) (GB Compatible)","61e893ad650d4f7003cd76ff55d244b4":"NBA in the Zone (USA) (Possible Proto) (SGB Enhanced) (GB Compatible)","620421795af2cb74429b9f2e30d9a38d":"Carrera (Europe) (En,Fr,De) (Proto)","62443f663965ba2f3a4181cd694d88a3":"Raku x Raku - Cut Shuu (Japan)","627c3542307661990802806ebd0acd90":"Oddworld Adventures 2 (USA) (En,Fr,De,Es,It) (GB Compatible)","628804db7252b7bb5a51f6aaea4b7077":"Checkmate (Japan) (En,Ja) (GB Compatible)","62922e55a0a4a4e9e90248ceb13b3c56":"Hunter x Hunter - Hunter no Keifu (Japan)","63073bf7cd416f5facbfe9e9d7d7e6c9":"Fireman Fred (World)","632793107d6a279a2f38236955353906":"Bomberman Quest (Japan) (SGB Enhanced) (GB Compatible)","634c5b73113b589530bc70cfb5ce3598":"Land Before Time, The (Europe) (En,Fr,De,Es,It)","636b1ae4118a8ae1a544b99fcd8d8cb1":"Ack Ack Attack (World)","637b90b33aeb3688187c6ac73db3488e":"Laura (USA)","637ece04f6c5f0c9f4871e5ed5255b0a":"Wink & the Broken Robot (World) (Beta 6) (GB Compatible)","63942b9b7ff673988fdbfbe8e1fdfc78":"Championship Motocross 2001 featuring Ricky Carmichael (USA, Europe)","639ae0f129bb98e17cc1b39e962cc43a":"Phantom Fright (World) (GB Compatible)","63b491b90be8a8ef9301c8b6557fa495":"Dusky Dungeon (World) (v0.1.0) (Proto) (GB Compatible)","63c3dd1377e60b2278ba4bf4c9b04f58":"Ice Age II (Taiwan) (En)","63f1430338d4f8053a34587429fb6b96":"Zoboomafoo - Playtime in Zobooland (USA)","641c8b63e7d9e31154b1f517e74b745c":"Gedou Jian Shen KF (Taiwan) (En)","64237b274859b5424353ca4bb3d6abda":"Tynesoft Commodore 16 Classics (World)","64396458bb3a82f26f522e85291b5fc5":"Caesars Palace II (USA, Europe)","644c2c3cf2dc2e3fce741844e497a18f":"Aladdin (USA)","64616a385482aeb9688a61fd7608b068":"Shuma Baolong 2 (China)","64a1264572a811e5e20831eff18f8ca3":"Shuma Baolong - Shuijing Ban (Taiwan) (Li Cheng)","64a63155c1500b50d6445558bd715787":"Super Fighters 99 (Taiwan) (SGB Enhanced)","64b533c76d258e5ee067a00dcebe700c":"Pokemon - La Version Esmeralda - Special Pikachu Edition (Spain) (Pirate)","64d2d5df9d0e5035ef549a189fbdb475":"Bug's Life, A (USA) (SGB Enhanced) (GB Compatible)","64e6738e474b22efd3132e786c18271f":"Dungeon Savior (Japan) (Rev 1) (Proto) (SGB Enhanced) (GB Compatible)","64f353e4310f83a5fbf2e211a63ec27e":"Pokemon Sapphire (Taiwan) (Zh)","64fa89b64514a71651c1b8dc629ba8f3":"Knockout Kings (USA, Europe)","651c7adc1d8cbcf2de53583f9d75195b":"Darklite (World) (Proto) (GB Compatible)","6556192c6fdfde1e7f7a538bb75ad6d9":"Taikong Zhanshi X - Fantasy War (Taiwan)","65973d7a1446346294f8ca9d2d1b7e66":"Tetris DX (World) (SGB Enhanced) (GB Compatible)","659b233dc37821379ec77f2e066a7619":"David Beckham Soccer (USA) (En,Es) (Proto)","65bd155f47eade36f7bd446cf58b9bdb":"Ultimate Fighting Championship (Europe)","65da43aef4c10cfd8feee70e842a46ae":"Monkey Puncher (Europe) (SGB Enhanced) (GB Compatible)","65ddb5e5db1b3f932d44a28c802e63cc":"Bob the Builder - Fix it Fun! (Europe) (En,Sv,No,Da,Fi)","65e85e5ad524ed60a9b0a8122a55d7af":"Sewing Machine Operation Software (Europe) (En,De,It,Nl) (Proto) (GB Compatible)","660fd044f1e744b8a208fc91481c030d":"Ou Dorobou Jing - Angel Version (Japan) (SGB Enhanced) (GB Compatible)","663eed7079113b1d1e1d7d40e9871cc3":"Powerpuff Girls, The - L'Affreux Mojo Jojo (France)","6655dde446c2f043ab9eafb0e2215086":"Tomb Raider 2 (Taiwan)","6660f1b04169b74397029f3ae3dab5e3":"Remen Gaoxiao - Shuma Guaishou III (Taiwan)","66a744231189d65db54aa4d670975c5a":"Army Men 2 (USA, Europe) (En,Fr,De)","66d0bd1c6da3c84e4d15b59a8a9db476":"Micro Machines 2 - Turbo Tournament (Europe) (Proto)","67117cc76e2b270e65c2778c734f905f":"Lion King, The - Simba's Mighty Adventure (USA, Europe)","671e9ad83a9f01cf7e04bb97bf757553":"Mojie Chuanshuo (Taiwan)","6736e0dc64fa3584ed48b1a9d845abcb":"Kisekae Series 3 - Kisekae Hamster (Japan)","6774580db542b838eff5a155128b7413":"X-Men - Mutant Academy (USA, Europe) (Rev 1)","67a4f5b76b83d37c888cb4de3293ca6d":"Crazy Climber (USA) (Proto 2)","67a76a42def402617d23961b3827d156":"G-Man (World)","67dd4724f032088506dc868078eb4e7e":"Puchi Carat (USA) (Proto 1) (SGB Enhanced) (GB Compatible)","67f1a15025b979833f4c5aa0ef561954":"Carl Lewis Athletics 2000 (Europe) (En,Fr,De,Es,It,Nl)","6800c72c57c0b85973262e45ddd48a6b":"Chaoji Jiqiren Dazhan X - Super Robot War X (Taiwan) (Alt)","6814576ee449d4119027dc4a85b92555":"Sesame Street Sports (USA)","6815ec13f522fd65637be46220371704":"Centipede (USA) (GB Compatible)","68242187b65166b5f8225b20e2021659":"Legend of Zelda, The - Link's Awakening DX (France) (Rev 1) (SGB Enhanced) (GB Compatible)","68271240c1b372f49b01adf583c91f83":"Mummy, The (Europe) (En,Fr,De)","68715e0a2805e3fc019fec35a9cff0d4":"Oddworld Adventures 2 (Europe) (En,Fr,De,Es,It) (GB Compatible)","688228b6718f9220f6e11db58a29220b":"E.T. - The Extra-Terrestrial - Digital Companion (Europe) (Proto)","68bffbbabc15da177c071eea0e055713":"Bakusou Senki Metal Walker GB - Koutetsu no Yuujou (Japan) (Rev 1) (Proto) (GB Compatible)","68c2e5e0b2f2f5d78c50515a1c6a47f2":"Days Without (World)","68cf797f26fdb624fd6a2e543a2f1c43":"Space Fleet (World) (Proto) (GB Compatible)","68e0db3785bc843790d6de9c3877003f":"Loppi Puzzle Magazine - Hirameku Puzzle Soukangou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP)","68e3ccbb7b37d60bc8c9d84a3c0a3b2b":"Shin Megami Tensei Devil Children - Aka no Sho (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","6902207e70e62fb38a07f49fcee77929":"Tasmanian Devil - Munching Madness (Europe) (En,Fr,De,Es,It) (GB Compatible)","691d6d252e22cbc7f039d0975582ca8f":"Land Before Time, The (USA)","693e77e4cd9c3845693f695a87f4444a":"Loppi Puzzle Magazine - Hirameku Puzzle Dai-2-gou (Japan) (Rev 1) (SGB Enhanced, GB Compatible) (NP)","695e4a82d1a97859365e3b5d5ba28e8c":"Catz (USA)","698c939536f83b474ce90351bae6a47e":"Rockman DX8 (China) (En)","699e1a69e9579545958f60106bb23a19":"DynaMike (Europe) (Proto)","69a6ebc942c7d0ecef2e514989debde6":"F1 World Grand Prix II for Game Boy Color (USA) (En,Fr,De,Es)","69b87b5555a44bcaba30b3f4a53275d8":"Black Onyx, The (Japan)","69c43b8daef3007b252824c22b3bf2ae":"Pandora's Blocks (World) (v1.8) (GB Compatible)","69c68b13bb0da057acbafe24e389e855":"Shrek - Fairy Tale Freakdown (USA, Europe) (En,Fr,De,Es,It)","69ebfa592721cd1d9c835d1b810b7266":"Powerpuff Girls, The - Panique a Townsville (France)","6a2a5ab0dc979f162cbfa4389d1cd71f":"Heroes of Might and Magic (USA) (En,Fr,De)","6a38f9f550a6858f7ced15ba03d2a8cd":"Super Nenas, Las - Lucha Con Ese (Spain)","6a5061a092cfd2c78b7fe65fdea15397":"Hamtaro - Ham-Hams Unite! (USA) (Beta)","6a6f5ec37846f1ee93caa37977e2a15e":"Shi Mian Maifu - Yingxiong Pian (China)","6acd649d8ab0ec4f26b8ca3930434264":"Street Fighter Alpha - Warriors' Dreams (Japan)","6ad6c159e20dfd12efbb3cf93a552909":"Smickeonn - The Game Boy Adventure (World)","6ae02bf9fc6765129b06734ac13e4da4":"Korokoro Kirby (Japan)","6af9bb4957485a0f5cebc9b44e805392":"Blue's Clues - Blue's Alphabet Book (USA)","6b02671ee66e3a9846db327f2b12e390":"Mirror Between Us, The (World) (GB Compatible)","6b055c6d12e477fbfd7bed1b495d56f7":"10-Pin Bowling (USA) (Rumble Version)","6b2118817985dbb1bb36a804a8240641":"Stuart Little - The Journey Home (Europe) (Fr,De)","6b3c4b0263becc3527f4a41e67588ef0":"Yinghan Zidian (Taiwan)","6b3ceb7bb280c0c0cb7543fe33925cb7":"Blade (USA, Europe)","6b63533c97a27dedc48aae58d4e47c1f":"Kisekae Series 2 - Oshare Nikki (Japan) (Rev 1)","6b648d40cb705fc139d045b124dfcf5e":"Foal's Creek (World) (v1.06) (GB Compatible)","6b7d527d4b2062ac2be2cab73aeebfe5":"TNN Outdoors Fishing Champ (USA) (SGB Enhanced) (GB Compatible)","6b94c050291c68d6fb13c642c46873ab":"Wizardry I - Proving Grounds of the Mad Overlord (Japan) (En,Ja)","6b953a346e1fe063d66d8a23f3bfa27d":"Polaris SnoCross (USA) (Beta) (Rumble Version)","6bb272f9361d57d9796cf2bb3615bf1a":"Gaiamaster Duel - Card Attackers (Japan)","6bbdbc468d32a31d21727ec0136ee419":"All Star Tennis 2000 (Europe) (AZTX) (Proto) (GB Compatible)","6bd1dea9af1ed4356c23043cb8af91ae":"Diva Starz (France)","6c024d8dcce9c86bab9dc16596794276":"Roi Lion, Le - La Formidable Aventure de Simba (France) (Rev 1)","6c0599a365bb7dffd2c9c67fa546c8b0":"Choro-Q (World)","6c34052ae5e516f8737982cb93a0845c":"Tweenies - Doodles' Bones (Europe) (En,Nl,Sv,No,Da)","6c7dc7ce74088a9e42a6fb8d98a67714":"Super Robot Pinball (Japan)","6ca4b011f72523dbd40d9ea470d2b4ea":"Pocket Music (USA) (En,Es) (Proto)","6cb5baab4f5d315b9e72a29f5ff8f89c":"Chaoren Tegong Dui (Taiwan)","6cc1cfbd1fc01b948e03f507c530260d":"Medarot 5 - Susutake Mura no Tenkousei - Kabuto (Japan)","6cd3ff8ceafd660a42d540eff59d4161":"Hunt the Gwumbus (World) (v2.1)","6cf89f96af36735e4f26247f93767afe":"Cross Hunter - X Hunter Version (Japan)","6d0d0d7de2730b9f9fdeeb4e202d5115":"Dinosaur (Europe) (En,Fr,De,Es,It)","6d1682824a006ddbde77527a2e62622a":"Puchi Carat (USA) (Proto 2) (SGB Enhanced) (GB Compatible)","6d320548645094a55aa2e6044aecd54f":"Pilgrim's Peril (World) (Demo 1) (GB Compatible)","6d450e010e7d293c743d6f62466b6004":"One Day (World) (GB Compatible)","6d51dcd9012c1140f73d7fd753698abf":"Beauty and the Beast - A Board Game Adventure (Europe) (En,Fr,De,Es,It) (SGB Enhanced) (GB Compatible)","6d6127ca9672dfb7435d6b4e9464725c":"Dragon Ball Z 3 - 2002 Fighting (Taiwan) (En)","6d6507bd38c76a9baa90b8e305ebea13":"Infinity (USA) (Proto)","6d66fe14e66911e36c483ecfccc01615":"Feed IT Souls (World) (v1.4)","6d7ec146b7c1a4a3bc1e948cd82abede":"High Noon (World)","6d8f9cd72201caabdfd0455a819af9ce":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","6d92fc307b0285b61a5b3ab0af991519":"Pokemon Jade Version - Special Pikachu Edition (USA) (Pirate)","6d9ab3b90805908d732c275157e29c79":"Animorphs (Europe) (En,Fr,De,Es,It)","6db4b6a1cceebc9ab2629c83a5c838ae":"Frogger 2 (USA) (Rev 1)","6dbc891774265f4bc8ccba65f9383aec":"Super Bombliss DX (Japan) (En) (SGB Enhanced) (GB Compatible)","6dbe685543a02c8a52ff08ef94d784b0":"Monty on the Run (World)","6def7d77e305997838c4b64b5163e3c2":"Snoopy Tennis (Japan)","6e0e4a0131c8bc9904955d97c02933d3":"2123 (World)","6e1b62771a0325ed755adf99a7b501ba":"Jaguar Mishin Sashi Senyou Soft - Kirby Family (Japan) (Proto)","6e2c510ef5562393cda32a807af4069a":"Another Adventure (World) (En,Es) (GB Compatible)","6e6eca68f57407cfb0040c57218064e3":"Chao Jinhua - Shuma Baobei D-3 (Taiwan)","6e863b582bddb6126bb63633f41befd8":"Tom Clancy's Rainbow Six (USA, Europe) (En,Fr,De)","6eab24805e2dea9c991d679fd00a5d87":"Medarot Cardrobottle - Kuwagata Version (Japan) (SGB Enhanced) (GB Compatible)","6eabc4876218996b5d9386fdad23cfc3":"Chaoji Jiqiren Dazhan X - Super Robot War X (Taiwan)","6ebb0ba4beacc1c846295996d92eda8c":"Zhihuan Wang 2 (China) (Zh)","6ebca05013af9c103aea798e0eb924c6":"Saru Puncher (Japan) (SGB Enhanced) (GB Compatible)","6efc4c27d06564f9000667c029ad02a3":"Asterix & Obelix (Europe) (En,Fr,De,Es)","6f0a4d09a4a40ca93a528f2409bb872c":"ATV Racing & Karate Joe (Europe) (Alt)","6f10189fd4a50c6a762eb7e77c52ef39":"Capybara Village (World) (v1.1) (Proto)","6f39124a6dfc3aaa28813286054a5fcb":"Pocket Color Billiards (Japan)","6f40be54d3680d87d36df07815e4c0c8":"Nyghtmare - The Ninth King (World) (v0.2.1) (Beta)","6f4b114b010c05ed286e4470d165abe2":"Kawaii Pet Shop Monogatari 2 (Japan) (Rev 1) (GB Compatible)","6f5aca1f721a92eb956286809f2af28d":"Loppi Puzzle Magazine - Kangaeru Puzzle Dai-2-gou (Japan) (SGB Enhanced, GB Compatible) (NP)","6f67b154450bd3d88924c179f8165721":"Godzilla - The Series - Monster Wars (Europe) (En,Fr,De)","6f77900a7f85480bd41c57d1c8ba1ce8":"Zook Z (USA)","6f94a1bf91839706d2ef586acc9a82c8":"Waternet (World) (Batteryless Save Flash Cartridge Version) (GB Compatible)","6fe80cdfcd6661467a6c1e6d607093de":"Fengkuang Dafuweng (Taiwan)","6fea46cebece96e6dbfb9d9d06ae4a59":"Digimon 02 4 (Taiwan) (En)","7039b471857d20f77a5ba7f48065ed53":"Hype - The Time Quest (Europe) (En,Fr,De,Es,It,Nl,Sv,Da)","7048098ff990c3f26a0f8937dc42e825":"Hopp It (World)","706062c2ab563e87ecd55b41ac4ca013":"Bingyuan Lixian Ji II (Taiwan)","70739bd1b6eb0ecb06fe5954f94d74fc":"Billy Bob's Huntin' 'n' Fishin' (USA, Europe)","70883b45a97984cb033c2b95028bef65":"Sakura Taisen GB - Geki Hanagumi Nyuutai! (Japan)","708f4c9e41d17b8f4fb11cc227fe9989":"Missile Command (Europe)","70a1de16d9a6b88f5ad6883eb658f285":"Pocket GT (USA) (Proto)","70a6a59623177ab1234f160d1ec7bb3f":"Pocket Monsters - Crystal Version (Taiwan)","70aa706f2831fe9736bf0ab76d925497":"Olympic Skier (World)","70ccaf1c458dc09b7c703191ef9b8541":"Konami GB Collection Vol.1 (Europe) (GB Compatible)","70e3ab7ef2061e7075d81aede74ea95c":"Roland Garros French Open (Europe) (En,Fr,De,Es,It,Nl)","7106845f7e0dca5abf221bd5765b587e":"Swing (Europe) (En,Fr,De,Es,It) (Proto)","71156f1794556acd255ae256d8195e32":"Mario Golf (Europe)","7146368b60c8291544ea5314747aed3b":"Test Drive 6 (USA) (Rev 1) (Proto)","71608f971986dd740c8e94f61f9cd020":"Pro Foot (France) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible)","716de1a7f4178fd941edf22d1a907624":"Wacky Races (USA) (En,Fr,Es)","71844ae14b67fbe97b0ab5655e5a87b0":"What Friends Are For (World) (v2.0) (GB Compatible)","7187fe377729db40928fb6c6ee5a0809":"Koguru Guruguru - Guruguru to Nakayoshi (Japan) (SGB Enhanced, GB Compatible) (NP)","71a4659ae44b6594e75f98e013ce6853":"Love Hina Pocket (Japan)","71b5b10dd41f6c8449cb9ca52dd6e590":"Borbo's Quest (World) (GB Compatible)","71b646ac71dbae8984995ef51324f5f5":"M&M's Minis Madness (USA) (Sample)","72448fe75f534f70cd90469da95ef76f":"Pokemon - Version Argent (France) (SGB Enhanced) (GB Compatible)","728feea5c73b9bccd9dbbdde5fa88552":"Yu-Gi-Oh! - Duel des Tenebres (France) (Beta)","729934ddb7aa39779a456523a81b4a45":"Dragon Quest III - Soshite Densetsu e... (Japan)","72b6216fe3094d7798a359b9a4cdf7ed":"Taxi 3 (France)","72d6dc97291e659d0c36e977147c2fd2":"Karamuchou wa Oosawagi! - Okawari! (Japan) (SGB Enhanced, GB Compatible) (NP)","72e653c065ff90b33f77cffa78ebb11d":"True Color 25 in 1 (Taiwan)","7311f937a542baadf113e9115158cde3":"Mortal Kombat 4 (Germany) (En) (SGB Enhanced) (GB Compatible)","734f49ccbe8c131bf38e584a00ce7391":"Xtreme Sports (World) (Switch)","7351daa3c0a91d8f6fe2fbcca6182478":"Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (SGB Enhanced) (GB Compatible)","73a78663a6388bf4d1c56e05bbf790d4":"Aliens - Thanatos Encounter (USA, Europe)","73bc46b4eb6e6924dc1b830e884a05f9":"Sangokushi - Game Boy Ban 2 (Japan) (SGB Enhanced) (GB Compatible)","73fca5b16e5d4d746ecabb8a9489cf48":"Tutti Frutti (World)","7455ea4fb9bc8ac752b4e43fd6864b7f":"Daiku no Gen-san - Kachikachi no Tonkachi ga Kachi (Japan) (SGB Enhanced) (GB Compatible)","745821122e423c09308ab2a97d645e20":"David Beckham Soccer (Europe) (En,Fr,De,Es,It)","748fa9419b35c0e8e43509457aaa1efa":"Game Boy Wars 3 (Japan)","74a6b62520a30ff28d5a7d19a7108c27":"Luca no Puzzle de Daibouken! (Japan) (SGB Enhanced) (GB Compatible)","74a74cfede8c9024c918e9038b5da47c":"Judy's Adventure (World) (v11.3) (GB Compatible)","74b9b221c2b32147422144b327bd5f30":"Tomb Raider (USA, Europe) (En,Fr,De,Es,It)","74c9fe928dd97ae193e9f937ce340dcc":"Harvest Moon 2 GBC (Europe) (SGB Enhanced) (GB Compatible)","74f0ca3425914df4af3210541ff619c8":"Looney Tunes Collector - Martian Quest! (Japan)","74f1d01cd75c5aaad93289e417a10c08":"Neclaus' Quest (World) (GB Compatible)","750640c9102e5e8b09af80601012fb05":"Adventures in Carnal Hell, The (World) (En) (v1.02) (GB Compatible)","7510fe2592accfa6ccd4745612e64f88":"Saban's Power Rangers - Time Force (USA, Europe)","7542ec9b695d4fe38adfdaaa57364d83":"Pokemon - Goldene Edition (Germany) (SGB Enhanced) (GB Compatible)","7545b127e8998e1e299289d79673ef63":"Ruby & Rusty Save the Crows (World) (Beta 3) (GB Compatible)","75519c8b57cea3ac91133b3dec7658de":"Pocket Monsters Gin (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","756664aa0c9418b200946aa4e1dddf53":"Blaster Master - Enemy Below (USA, Europe) (SGB Enhanced) (GB Compatible)","75b4f10c02a6797ab77a3a9a8f6ee237":"Pocket Puyo Puyo-n (Japan) (Rev 2)","75b4faffd8e9c0277b911d1d0e6ece6a":"Gift (Europe)","75be6e3561908e705d9e790b34eddb4d":"Tony Hawk's Pro Skater (USA, Europe)","75d839dd6c9231fb0c3104ba0060756f":"Diver 94 (World) (GB Compatible)","75e614f3741f6c5ca34efc52a2b35ed5":"Super Donkey Kong 5 (Taiwan) (En) (Rumble Version)","75e8c977bea49b53a3f3219e4cc23daa":"Gekido (Europe) (Proto)","75ea1034b4b26358e74874ad5f33dce4":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (Beta) (SGB Enhanced)","762954c946381fcc210bb19962fbfa1f":"Street Fighter Alpha - Warriors' Dreams (Europe) (Rev 1) (Proto)","762d6c94874d8ac894ad100c0a4b50ab":"Cannon Fodder (USA) (En,Fr,De,Es,It)","769f747801caa7ad653b74d3b62b43db":"Cavelon (World)","76a95fee3d90722fd935c7658512f5cc":"Game Conveni 21 (Japan) (GB Compatible)","76c04694db94b72afa78dd6612dfe4a9":"Bomberman Max - Yami no Senshi (Japan)","76e2195c8f2f35c5b88d73830bcb0a4c":"2003 Hali Xiaozi IV (Taiwan)","76fa4014bfbb0ee2b63267af7ac373f2":"Mr. Driller (USA)","77487f5bee8d40db42e7cd8800047919":"Spy vs Spy (USA) (En,Fr,De,Es,It,Nl,Sv) (Rev 1) (Proto)","7752b2476871760a8c00b06df93a89b7":"Guruguru Town Hanamaru-kun (Japan)","77724acf2c481f29e2edb1f538a47892":"Top Gear Pocket 2 (Japan) (Rev 1) (Proto) (Rumble Version)","77836df2b2ce5284e4dda233e118b914":"Zoids - Shirogane no Juukishin Liger Zero (Japan)","7784ff1a16b15e8e55a6b43159cc1774":"O'Leary Manager 2000 (Europe) (En,Fr,De,Es,It,Nl,Ca)","77893d4574b1013a0699c4199c271b8a":"Net de Get - Minigame @ 100 (Japan)","7792a07be51395a9f48043075c29c8d5":"Sanguozhi - Aoshi Tianxia (Taiwan) (Alt)","77c35992b64ab7f2642873a5f266ab79":"Muteki Ou Tri-Zenon (Japan)","781afd1e98b3743c835fcc16df624895":"Golden Goal (Germany) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible)","782b88b1bf9768a2b1b139177a0c1c33":"Yu-Gi-Oh! Duel Monsters II - Dark Duel Stories (Japan) (SGB Enhanced) (GB Compatible)","7830328f323bd77d52a6985b1b10031f":"Metal Gear - Ghost Babel (Japan)","7877eb7a35465b50da15da1e4488663c":"Pokemon Gold (Taiwan) (En)","788cb84e59b3fbf571002cdf2220d845":"Super Fighters S (Taiwan) (GB Compatible)","789142292ee4dd3e2d55c444e04f58b4":"Cool Bricks (Europe) (Beta)","78959c37152e546c5c7c271ae418a453":"Daikaijuu Monogatari - Poyon no Dungeon Room 2 (Japan)","78b152baf4c60314eb96d4d433a3d8f3":"Back to Nature (World)","78f920f4e9174cd3382294129d30f373":"Snobow Champion (Japan)","7902c1e217d8a99d1f9d5b31fd1aa7e2":"Super Jacked Up Tomato Face Johnson (World) (v2.2)","79057202277940eb8a37257ebcb513c3":"POWA! (World) (Ja) (GB Compatible)","793c57f58d4e9c92088c333b129d1c7e":"Dear Daniel no Sweet Adventure - Kitty-chan o Sagashite (Japan) (SGB Enhanced) (GB Compatible)","7971c95ad9745fe20df52e03cd52f636":"Metal Gear Solid (Europe) (En,Fr,De,Es,It)","7984a4468bc3822caa6773075429ca74":"Lightseeker (World) (GB Compatible)","79aece8a042e4fa57aba9455c4d21a97":"Pocket Monsters Kin (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","79b84a54581ca90b245619522c09e523":"Roadsters (USA) (En,Fr,De,Es,It,Nl) (GB Compatible)","79b855a4daf613f1906f7bf423565c5e":"Minna no Shougi - Shokyuu Hen (Japan) (Rev 1) (GB Compatible)","79d382d378d49695e9867ede063eff17":"Roswell Conspiracies - Aliens, Myths & Legends (Europe) (En,Fr,De)","79e619a79be12b6ac59ae6d4602ffa5e":"Ronaldo V-Soccer (USA) (En,Fr,Es,Pt) (GB Compatible)","79f6386969a59d4974aece5dc7ed1f3f":"Razor Freestyle Scooter (USA)","7a0eadc011668df92933dec1e5b316b0":"Grimace's Birthday (World) (v1.4)","7a36423ec39604d7043336af71145010":"CyberTiger (USA, Europe)","7a58b84e406bd4df6b3c3b8807493aa8":"Pooh and Tigger's Hunny Safari (Europe) (En,Fr,De,Es,It,Nl)","7a826122ccc3818dce9a8e8db6d77edb":"Tom and Jerry in - Mouse Attacks! (USA)","7aa123c53442881d101036559e704dca":"Green Beret (Unknown) (Proto 1)","7acb577a59abc74234754569d49d854a":"Monkey Magic (World)","7b29bf304be1f747c83cf516239b9c61":"Pocket Bowling (Japan) (En) (GB Compatible)","7b312af167e073c60061d843198e724c":"GPC Rally (World) (v1.1)","7b4345daf8ebda416a84c5932bf817ec":"Godzilla - The Series (USA) (En,Fr,De) (GB Compatible)","7b5b0ba31464c55c6d6584e9288d6978":"Powerpuff Girls, The - Bad Mojo Jojo (Europe) (BJJX) (Proto)","7b671745f13bcc3abaa2d9351fc22f8f":"Tasmanian Devil - Munching Madness (USA) (En,Fr,De,Es,It) (GB Compatible)","7b82761db0d43066610abc5429e0d598":"Sanguozhi - Aoshi Tianxia (Taiwan)","7bbd65416ced257da963faa58536cf84":"Burai Senshi Color (Japan)","7bcf428844d32b279b7c25fb98f98a73":"Lode Runner - Domudomu Dan no Yabou (Japan) (GB Compatible)","7bf3b13931f2a50ebe071a18ea14f28b":"Gold and Glory - The Road to El Dorado (USA)","7c27756ee209e70e5d5c5b3e3cba01d1":"Taikong Zhanshi DX3 - Zuizhong Huanxiang (Taiwan)","7c513823f65b92a75e29067745839cc8":"Pokemon - Versione Cristallo (Italy)","7c700360a46f54796802ca7c7bf499c5":"Ganbare Goemon - Mononoke Douchuu Tobidase Nabebugyou! (Japan) (SGB Enhanced) (GB Compatible)","7c80aaf5cf8c1dfaea7a88b39b12c295":"Starseed (World) (GB Compatible)","7c8391e85de79338fc3ae4e5f72d5514":"Gunslinger (World)","7c95103dce318c28b5869984bee4cf8a":"Hightail (World) (Demo 4A)","7cbe6832545e4bea48f8f93b51451273":"Nv Wang Gedou 2000 (Taiwan)","7cf3670a8f345344e4789e41503d7da6":"Lucky Luke (USA) (En,Fr,De,Es)","7d15277dd347fa75d36e5f78a06a5504":"Daisu-ki (World) (v1.1.1)","7d54e3982090c614495c5f470a4cdd11":"Game Boy Camera Gallery 2022, The (World) (GB Compatible)","7d66c7afad2a454926a4d835276bf0ec":"Ghost of the Arcade (World) (v1.7)","7d78cacd5eee9569ebc1b85ff9f05c90":"Hamster Club - Awasete Chuu (Japan)","7d9585c947a7637703fb8ccd6a691ed7":"Top Gear Pocket 2 (USA)","7dae13af3d7373116e7c7558bc402bef":"Perfect Choro Q (Japan)","7de54692e7b42e945b318d20079a5efd":"Grand Theft Auto 2 (Europe) (En,Fr,De,Es,It)","7e0bc856feb59566d167350fc1a1775a":"Emperor's New Groove, The (Europe) (En,Fr,De,Es,It)","7e0df312ccd8f3e25bf3074e17d5aedf":"Worms Armageddon (USA) (En,Fr,Es)","7e32dc8b60413cfaa24f941691e545d2":"Megami Tensei Gaiden - Last Bible II (Japan) (SGB Enhanced) (GB Compatible)","7e35f36f4e91088ab85c4acee89e4157":"Ninja Master (World)","7e667e8c8aa169e5b1bd1e09ec4c0b91":"Swordsman on the Eternal Journey (World) (It) (v1.01) (GB Compatible)","7e6d077d50879c57ff70891aaa312e80":"Pop'n Music GB - Animation Melody (Japan)","7e8280463d7ac79662d8be587bb6b766":"Moorhuhn 3 - ...Es Gibt Huhn! (Europe) (En,Fr,De,Es,It)","7e9f03dcbf376fb935553684d6c7d8f5":"Medarot 4 - Kuwagata Version (Japan)","7e9fd020f578c846fa3ae1d39d0a4671":"Legend of Zelda, The - Link's Awakening DX (Germany) (Rev 1) (Beta) (SGB Enhanced) (GB Compatible)","7eb08ef6d67164251eeeabf537fedccb":"Pokemon Trading Card Game (Europe) (En,Es,It) (SGB Enhanced) (GB Compatible)","7ed224aa3117d2aee48ea72bacefd13e":"Slime's Adventure (World) (Proto) (GB Compatible)","7ee095116f1733dc6ba2b2de3f28f5ef":"Samurai Kid (Japan)","7efce91cccc497e6cd816508ddec3437":"Potbound (World) (Proto) (GBJam 10) (GB Compatible)","7f0d28d7c0268b55bb8682224c178308":"Doraemon no Study Boy - Kuku Game (Japan)","7f1830171eec29ac72ae976d4dfdfc65":"Frogger (USA) (Rev 2) (GB Compatible)","7f306f573ca9759fa2f7aa167ca2dd74":"Dance Dance Revolution GB 2 (Japan)","7f41fb9c4f9627828b6a1ae958a8c0a9":"Chaoji Yinsu de Xiaozi II - Super Sonik II (Taiwan)","7f6c3f5388d3bcc0d02e8a2ea0d5e988":"Doraemon no Quiz Boy (Japan) (Rev 1)","7f8c472f3c7bd1eec56a3bad10a2e94c":"Little Mermaid II, The - Pinball Frenzy (USA) (En,Fr,De,Es,It) (Rumble Version)","7f9dbafd6d16957e9687f89e33765f0b":"Network Boukenki Bugsite - Alpha Version (Japan)","7fa5a6dde384652120b46475b193dff9":"WWF WrestleMania 2000 (USA, Europe) (GB Compatible)","7fb36e36e1ba06bd222c31163213c426":"2002 Adventure Digimon 7 (Taiwan) (En)","7fbbfa00a51547639750e69ff802fa76":"Bugs Bunny et le Chateau des Catastrophes (France) (En)","7fd49763f6a8aceb6aea4cfe601a8b10":"Magical Tetris Challenge (Europe) (En,Fr,De,Es,It,Nl,Sv)","7fe77698974780fec4566d30d183a206":"PlayTime (World) (Proto) (GB Compatible)","8040970140b2e728a0078504c2bcd908":"Super Mario Bros. Deluxe (Japan) (NP)","8076243ea44e1885a9981682fe621eee":"Stars of Zureon (World) (Proto 1) (GB Compatible)","807c2f4a7698ee02ee06169a9e3423d9":"My Friendly Little Island (World) (GB Showdown) (GB Compatible)","808a86f3b113ece265bf882293310042":"Menghuan Moni Zhan II (Taiwan) (Zh)","809059ad595bec85ffc7ba37eba29204":"Pro Darts (USA)","809251d6205bc712211fbcab55190a3a":"Top Gear Pocket (USA) (Rumble Version)","809ec52e50279a174a4908e3ea46dcf6":"Game Boy Gallery 3 (Australia) (SGB Enhanced) (GB Compatible)","809fd84f0c8f4ace455ad40930aff59e":"Maus, Die - Verrueckte Olympiade (Germany) (Beta)","80cf4b05b2a0388a804e54f433cdd126":"Rugrats - Totally Angelica (USA, Europe)","80dd8c9ce55ee28c0a3ef44ea317ea17":"Croc (USA, Europe) (Beta 2)","8109642fb056dbf806c66acac8cfc0e4":"Cat Boy's Stellar Journey (World) (GB Compatible)","814042bfbc1ec31e5f992bde98ed613e":"X-Men - Mutant Academy (Japan)","81433716e1a23aefe5de0fc03ef55519":"Microsoft - The Best of Entertainment Pack (USA)","8150a3978211939d367f48ffcd49f979":"Tintin au Tibet (Europe) (En,Fr,De,Es,It,Nl,Sv)","816ce6275d9d5c78b8497e8d0b6a9ece":"Sylvanian Families 3 - Hoshi Furu Yoru no Sunadokei (Japan)","8187bb1e84f676f110bdf2166b4498d2":"Tiny Toon Adventures - Buster Saves the Day (Europe) (En,Fr,De,Es,It)","8190d7454206e1b8966c9b074eabc359":"Taikong Baobei (Taiwan) (Sintax)","81ae87adbbd59bd8bbb86040fbc530fe":"KnockOut (World)","81dd8a336e1b1b705235a7b20a536bc0":"Quest for Camelot (Europe) (En,Fr,De,Es,It,Nl) (SGB Enhanced) (GB Compatible)","81f4cbffbed0638f59a16203c07e364b":"Hamster Paradise (Japan) (SGB Enhanced) (GB Compatible)","81ff698f38896239d2d68fe1074038cc":"Daisu-ki (World) (v1.2)","820e0a19275fabc03fe619c42db47179":"Star Ocean - Blue Sphere (Japan) (SGB Enhanced) (GB Compatible)","821355e18a306e73ee015ab0ba8510b0":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (Beta) (SGB Enhanced)","821f70db4753f0b59a798b9de91cecfc":"Sesame Street Sports (Europe)","825de040ea4dff66661693f8712b1bdb":"Legend of Zelda, The - Oracle of Ages (Europe) (En,Fr,De,Es,It)","8268ae026f73e834f52ee8291bb125b8":"Ultimate Fighting Championship (USA)","82880772ebd67b839c497dfe4308a0a0":"Jim Henson's Bear in the Big Blue House (Europe) (En,Fr,De,Es,It,Nl)","828fa006f4913138bfb964b6685e3463":"Silent Hill 2 - 20th Anniversary Demake (World) (Proto) (GB Compatible)","829da007514e8a1ccc7efe6a7ee5226f":"Barbie - Magic Genie Adventure (USA)","82bd1d9171e60f147d9eeea13ef07a12":"Pocket Monsters Geum (Korea)","82cf6939eb9f1b4da785d8abc321f5e5":"Shoot It (World)","82d17beb1aefd1b93621d6fa61dfa1cb":"Metal Walker (USA) (GB Compatible)","82f9d9b020099e908ef588e1a9de5bb3":"Wing Warriors (World) (En,Fr,Es) (EGS) (GB Compatible)","83087e1a3fa7160a59ee7e4f0b5c3671":"Hoyle Card Games (USA)","830af5154de56ec668db1dd661d4c661":"RunieStory (World) (GB Showdown)","8339e84709ea33723fd11ed2f3e1abee":"Tetris Adventure - Susume Mickey to Nakama-tachi (Japan)","8347efb46014904144d40510d5c9fa05":"Chi to Ase to Namida no Koukou Yakyuu (Japan)","834fb201a446065c06e34f192f8586d0":"Dragon Tales - Dragon Wings (Europe)","83b67b8a10f704a9e3e7ca3814e5b3ca":"Mr. Nutz (Europe) (En,Fr,De,Es,It,Nl)","83ba49181a4eeb41e9628546a2dede19":"GPC Rally (World) (v1.0)","83c090899d4f9d7249249d7f8ec6be09":"Wing Warriors (World) (En,Fr,Es) (Beta 1) (GB Compatible)","83e34702e7c38cd36b506d1084e5ab97":"Monster Traveler (Japan) (Possible Proto)","83f1b6f79b8f0fecc4427efc9fa7d732":"Classic Bubble Bobble (Europe) (SGB Enhanced) (GB Compatible)","83f1f765efdd8d41cdd4f63edce42aff":"Grinch (Japan)","83f735d3357a32576516f6e20b5b7f19":"Rockman X2 - Soul Eraser (Japan)","83f791645ce282093a9d59c121ffc49d":"Mario Golf (USA)","840e1ddb2696ecae487fd264a3c34581":"Perfect Dark (USA, Europe) (En,Fr,De,Es,It) (Rumble Version)","842b07d0add5a3a88bd55653331671dd":"Hello Kitty no Beads Factory (Japan) (SGB Enhanced) (GB Compatible)","84973a134e9e4245d8138ac11807ca3f":"Get Chuu Club - Minna no Konchuu Daizukan (Japan) (Rumble Version) (SGB Enhanced) (GB Compatible)","84a0fe6c3fb014cf43c119c344f99965":"V-Rally - Edition 99 (USA) (En,Fr,Es)","84b71ee450ba95087d2194d17dd3bf1f":"Sanrio Timenet - Mirai Hen (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","84ee1ac070c9695b6d422adb5525db85":"Top Gear Pocket 2 (Japan) (Rumble Version)","84eede6bb298dd354f251eccb1259316":"Pocket Music (Europe) (En,Fr,De,Es,It)","852d68f167a5957f5e73954763f36ada":"Pokemon Pinball (Japan) (Rumble Version) (SGB Enhanced) (GB Compatible)","853eb2ec6feb27869b7af78f929fe7d2":"Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (Beta) (SGB Enhanced) (GB Compatible)","8565f7b388a1741fe41a8c972d95869e":"Barbie - Avventure nell'Oceano (Italy) (GB Compatible)","85bbad46380dffa631f8ce732e9c5d89":"Spider-Man 2 - The Sinister Six (USA, Europe)","85be569fe89f58c40f60480313314c67":"Pocket Monsters Kin (Japan) (SGB Enhanced) (GB Compatible)","85c0c028e6177cda40401f14d16699f4":"10-Pin Bowling (Europe)","85e78f08c579b8c1d2e4c205a7711494":"Yurivania III - Circle of the Polycule (World) (v1.4)","8624db7ac6f7040b9001a87cc44f1fa9":"Legend of Zelda, The - Link's Awakening DX (France) (Rev 1) (Beta) (SGB Enhanced) (GB Compatible)","86316563964ab9314350c99765a2454d":"Xiao Taiji - Shenhua Lixian (Taiwan)","8632a46ba831eff50d1ac5fb00faab84":"Nyghtmare - The Ninth King (World) (v0.2.6) (Beta)","866994b67b78c02b70573076b27d18fb":"Space Invasion & Karate Joe (Europe)","866dca02365fd72f9ad396dca758d8b5":"Who Wants to Be a Millionaire - 2nd Edition (USA)","867971b1e3b751a6b736d03793241176":"Tweety Sekaiisshuu - 80 Hiki no Neko o Sagase! (Japan)","8691333d9fd10c3bc65bc5577856a72b":"VOX (World)","869d388027e0498e3d9994b0dc71984a":"Ken Griffey Jr.'s Slugfest (USA)","86c1b5f04495e22eedbec15e1a320ff3":"International Karate 2000 (Europe)","86cc962b8a8d51b589d86b2b71bd7e23":"Catwoman (Japan) (Proto)","86d769e211c85c1ac956c4556e77f8f3":"Powerpuff Girls, The - Battle Him (Europe)","86ed74283fe0071f8d3f05923051efab":"Revelations - The Demon Slayer (USA) (SGB Enhanced) (GB Compatible)","8707ad4ad9645d2dcfb33821697173a6":"Ganbare! Nippon! Olympic 2000 (Japan)","87397db3151f3dd5b53cdfbb24a98588":"Antz Racing (USA) (En,Fr,De,Es,It,Nl)","87422721dd67b96736861358c71d5a8b":"Tonka Construction Site (USA)","87599b7f88ae1680b490251cfd417792":"Test Drive 6 (Europe) (En,Fr,De,Es,It) (Sample) (GB Compatible)","8765ee1fe94c16e934ea0d004291e8b0":"Portal Runner (USA)","87a6f7ccb23054b225998225b5ea4089":"Nyghtmare - The Ninth King (World) (Free Version) (GB Compatible)","87a9da6697ed8695141f0ef84a0e26e8":"NBA Jam 2001 (USA, Europe) (Beta)","87b211fe7e0b8080961ddd26245ca1a5":"Pro Pool (Europe) (En,Fr,De)","87c5862edce9eae3d6afe964bfed5204":"WWF Attitude (USA, Europe)","88206c0a37bc9c6d42745211e0c18681":"NBA Show Time - NBA on NBC (USA) (Rev 1) (Proto)","882a7b4d2cadedd7ed2e21d22ca8f93d":"Daffy Duck - Fowl Play (USA, Europe) (GB Compatible)","88938327f7a5a8d11470d14d17f412b3":"Momotarou Densetsu 1-2 (Japan)","889e643c52ca6916a4948f4d1b8b955b":"Bouken! Dondoko Shima (Japan)","88babaabfc8c65454dd11590ff5c9f33":"Waternet (World) (GB Compatible)","88e01db4aee70b3c48324f991d149a2a":"Sylvester & Tweety - Breakfast on the Run (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible)","88ee129f5f61078d8649e2134b2e78a3":"Robot Poncots - Sun Version (Japan) (SGB Enhanced) (GB Compatible)","88f1e88f141ded3b81d0d8789cbe7b5c":"Shuihu Shenshou (Taiwan) (Alt)","890733af5a3766bc1954c186d8f9ba65":"2003 Shuma Baolong - Gedou Ban (Taiwan)","8907aab5acf0ed74753d6f573e81be91":"Boarder Zone (USA)","890cc599a9ec49d5adf1cd225ebd233c":"Woody Woodpecker Racing (Europe)","8920d396b06f733dedc512007f4ef60a":"Chumbles Bumbles (World) (v1.2) (GB Compatible)","8931758738e8a662c88910fd2d33d365":"Pokemon - Crystal Version (Australia)","8940ba032d30f87e6956fbd8009420e3":"WCW Mayhem (USA, Europe)","89bb59dc49b59b0cd30b7384d9860bb8":"Pokemon - Versione Oro (Italy) (SGB Enhanced) (GB Compatible)","89d563bcc7b6f2f087cdafa8a78a8aa7":"Gex 3 - Deep Cover Gecko (Europe) (En,Fr,De,Es,It)","89de435cb69325b42d569015ca09f49f":"Barbie - Ocean Discovery (USA) (GB Compatible)","89de6d072a545f21fb6390f3b9e007d9":"Beach'n Ball (Europe) (En,Fr,De,Es,It) (Beta)","89e7aaec31f7d725864ecd9ebd47387a":"2003 Pocket Monster - Carbuncle (USA)","89f251b40b2420ae1dde4d22ca01ed72":"Tabaluga (Germany) (GB Compatible)","89fff31f11da93a6f1a3045f8ea088b3":"Tycoon Tex (World)","8a0bf3dec344271e01979cee50299897":"Crazy Climber (USA) (Proto 1)","8a626340f6b16ba45c1d4e07f2134875":"Pokemon - Edicion Cristal (Spain)","8a7f483857e251d56a16594ca84d1a7e":"Resident Evil Gaiden (Europe) (En,Fr,De,Es,It)","8ac8f913b5f1e31582de191b367648a9":"Hunter x Hunter - Kindan no Hihou (Japan)","8acdfec71941940bcb1410143254228f":"Snooze (World) (GB Compatible)","8aeedaab8a1df0bc26fae53b2b606b1f":"Qunxia Zhuan II (Taiwan)","8b01ed48b1f51f57cfba2f3024fa60d8":"Wings of Fury (USA) (GB Compatible)","8b071ddfa74c3969320acc839a03395f":"Shuma Baolong - Koudai Ban (Taiwan) (Alt)","8b25ad9bd8ecd09a346c736011ea612b":"Mahjong Quest (Japan) (SGB Enhanced) (GB Compatible)","8b3958e2d61921c787c9a40f4d3f13c0":"NBA in the Zone 2000 (USA)","8b437e964ca98e785010160160cf380a":"Super Gals! Kotobuki Ran (Japan)","8b6e5d99ca3267b8a22dbdef0f50565a":"Munch It (World)","8b8064a09b8fc56182ab423ebad9381b":"Looney Tunes Racing (Europe) (En,Fr,De,Es,It,Nl)","8b9a9f5125206b262348356be15bf598":"Inspector Gadget - Operation Madkactus (Europe) (En,Fr,De,Es,It,Nl)","8bf8f9a1e0080d257820ec5506a3fc8f":"Mat Hoffman's Pro BMX (USA, Europe)","8c0212d475d0ac89e5821291abf87816":"Return of the Ninja (World) (Limited Run Games)","8c188939044778f311bdaf2bc9aca076":"Tsuri Sensei 2 (Japan) (SGB Enhanced) (GB Compatible)","8c3bcd751ebc34abc02e666d8ff057c4":"Front Line - The Next Mission (Japan)","8c41132cb09279febe26e21bd3f1a120":"Primera Division Stars 2001 (Spain) (Proto)","8cbb9b7401be513c913a3a54eee0da54":"NBA 3 on 3 Featuring Kobe Bryant (USA) (SGB Enhanced) (GB Compatible)","8ce641b1efbf76cc5f2a841942345a0f":"Kawa no Nushi Tsuri 4 (Japan) (Rumble Version) (SGB Enhanced) (GB Compatible)","8d0a97cc2c5235656e722b0fb9627504":"Wizardry II - Llylgamyn no Isan (Japan) (En,Ja)","8d222a58636551f679177e37c83eb134":"Nakayoshi Pet Series 5 - Kawaii Hamster 2 (Japan)","8d2a6b487aade7ca05696548c2efb181":"Minna no Shougi - Shokyuu Hen (Japan) (GB Compatible)","8d4b4907e207a824a065b0012b22c62c":"Doug's Big Game (Europe)","8d4e41eb71dda41ef945512eb3b53fb3":"Bugs Bunny - Crazy Castle 3 (Japan) (GB Compatible)","8d9c413f30885be0bb0fe08a1817c842":"Pocket Bowling (USA) (GB Compatible)","8db0381e11b2acb529d6534b97ab967b":"Rockman (World)","8dbab7618855360b2029bdf2841067ab":"Loppi Puzzle Magazine - Hirameku Puzzle Dai-3-gou (Japan) (SGB Enhanced, GB Compatible) (NP)","8dc38a2906306949576e60b8d4babc5f":"Sweet Ange (Japan) (SGB Enhanced) (GB Compatible)","8dfe7db1a07feae65f521a4403ba9d8e":"Larion's Tinker Toys (World) (Proto 1)","8e1c9863cf7ad15c824f2af6acf130c4":"International Rally (USA) (SGB Enhanced) (GB Compatible)","8e23226758be3ae7a83803f9147ada5e":"Jimmy White's Cueball (Europe)","8e7298d92bd4eaec572a7f1bcb223200":"Deadly Skies (Europe) (En,Fr,De)","8e79dcdee0e15ef069b3f376a0fee37d":"Dragon Warrior Monsters 2 - Tara's Adventure (USA) (SGB Enhanced) (GB Compatible)","8e7d7b91c08169d779fda0a49c4dd3b7":"Hamunaptra - Ushinawareta Sabaku no Miyako (Japan)","8e8b42b33f5c0867a9bcaf8374fdc337":"Dragon Ball - Final Bout (Taiwan)","8eb8951d69263571392192bf3d928099":"Space-Net - Cosmo Red (Japan)","8ee55a0ad476a0497a483a30c0b28316":"Mr. Driller (Europe)","8f293537e992cb718f0d055c6d08f882":"Pocket Color Block (Japan) (En) (SGB Enhanced) (GB Compatible)","8f3a309320bceffbee2b430e5bb5de4f":"Pocket Smash Out & Race Time (Europe)","8f43bc56783f98e97fe7f51603c1a025":"Oide Rascal (Japan)","8f490735c17b983c2e2fbc3a9425ffe7":"Ungrateful Son, The (World) (v1.1) (GB Compatible)","8f569486abff8a5a5356956f4fe47212":"Pact, The (World)","8f9c21b8e8ff2cd19c1cfd9743d5509e":"Yixing VS Tiexue Zhanshi (Taiwan)","8fbc58ce16cc0c571eb43a8038c97e83":"Colin McRae Rally (Europe)","8fd828532500c3d3e893fe86b725ade3":"Pac-Man - Special Colour Edition (Europe) (SGB Enhanced) (GB Compatible)","8fe6340c822daa9cb07c7d8ab8509751":"Project S-11 (USA)","8ffcf9da76aa9ba1c5b1789a92f47d21":"Midway Presents Arcade Hits - Moon Patrol & Spy Hunter (USA, Europe) (GB Compatible)","900f66d94349339d3b416b5ff0806314":"20 Second Platformer, A (World) (v1.1) (GB Compatible)","9017ebe4c004fd9597557e28d711316a":"NSYNC - Get to the Show (USA)","90280833c156e2ca8e4eaa29adf369b2":"Shadowgate Classic (Europe) (En,Fr,De,Es,Sv) (Rev 1) (GB Compatible)","904929235f090aa2c875a10f6f5d5e64":"Katakis 3D (Europe) (Proto)","906c78f13135691d300aa6d23dc58037":"Space-Net - Cosmo Neo (Japan) (Proto)","9094e49551e838184d0c9290b1ef3694":"36 in 1 (Taiwan) (SL36-0032)","90c8448a9a4edf4ea6a265d5b4560191":"Dragon Ball Z - Guerreros de Leyenda (Spain) (Beta) (All Unlocked)","90d9ddb15cc652fcd3a158a54ece8808":"Xtreme Wheels (Europe)","90dfd51f7a508a4fac1608fb7a44317f":"Seme COM Dungeon - Drururuaga (Japan) (GB Compatible)","90e6f6d8989d241d386bb1c021687099":"Potbound (World) (Proto) (GB Compatible)","90eb27deb7ab0aaae19c393690e234c0":"Gedou Qi Long Qiu 2002 (Taiwan) (Zh)","90ecc5fb29cc95d58c33d44fe630d12e":"Puzzle Master (USA) (GB Compatible)","90f41034a9d4928bdf4b56d2e5c9b62c":"Fire Ant (World)","90fb966cbb46d038ec7d74b2f3f6487f":"Tintin - Le Temple Du Soleil (Europe) (En,Fr,De) (Beta)","9108d1246f11d0e0f2cec608e79efd65":"Puzzled (USA)","9146fdd44befde06269c9c1642678c94":"F-1 World Grand Prix (Japan) (En) (Beta 1)","916042289eeb231324ccd9bc57c7c254":"Taxi 2 (Europe) (En,Fr,De,Es,It,Nl) (Proto)","916d740fc366ecbf9e5626218e56562d":"Wetrix (Europe) (En,Fr,De)","917ec38fa03325cbbd527ac3465611c1":"Legend of Zelda, The - Link's Awakening DX (France) (Beta) (SGB Enhanced) (GB Compatible)","91889ebca9b20510ece17eabdf2f071a":"Suske en Wiske - De Tijdtemmers ~ Bob et Bobette - Les Dompteurs du Temps (Europe) (Fr,Nl) (Beta 2)","919c330030214de201278fc6a232a661":"SD Hiryuu no Ken EX (Japan) (SGB Enhanced) (GB Compatible)","91eb6db42e92e2df05cc2b40f0dbc2f0":"Gex 3 - Deep Pocket Gecko (USA)","91fd1e446ef8af51080409b7940391e9":"Toonsylvania (Europe) (En,Fr,De,Es,It,Nl)","921074a40d44b70db878f88f7c3b51de":"Bomberman Selection (Korea) (Beta 1)","9253aae0d9257d82f52d879813cf3c19":"Turok 2 - Jikku Senshi (Japan) (GB Compatible)","92637d816181b2515f2c78f30fa41e4e":"Jibaku-kun - Rei no Itsuki no Kajitsu (Japan) (Proto)","92978c96b2368e4aebd84966af8bd06f":"Pop'n Music GB - Disney Tunes (Japan)","929b5bfc4506e14d4abe958091af9cbe":"Adventures in Carnal Hell, The (World) (Es) (v1.02) (GB Compatible)","929b9a2332cb7c1d74692c3a65ffbe99":"Super 16 in 1 (Taiwan) (En) (Sachen)","92d36245a65305a209700608971b0597":"Trade & Battle Card Hero (Japan) (SGB Enhanced) (GB Compatible)","92e01e78a83c86c22ee1dcbbf4c7c2f4":"Monopoly (Japan) (SGB Enhanced) (GB Compatible)","93226ce541766d8b8b7d1f70866ad530":"Austin Powers - Welcome to My Underground Lair! (Europe) (En,Fr,De,Es,It)","9324855fef2227a4410725ed20845bfb":"Dragon Ball Z - Guerreros de Leyenda (Spain)","9354cc341aa23da3e29829da76b8888e":"Shin Megami Tensei Devil Children - Shiro no Sho (Japan)","9357c3dab850692ac8184ccf655d4efd":"Pokemon - Versione Argento (Italy) (SGB Enhanced) (GB Compatible)","9361a8850493dcfd7209b16052c8f9f0":"Xin Shediao Yingxiong Chuan (Taiwan)","93644489ccccff6f5fbe1489fa67b0e4":"Raffles (World)","93671715c210c20ce3a6a1d47de86382":"Equestriad 2001 (Europe) (Proto)","93d1eae88ac42199afa4e45a9900182d":"Retro Quiz Tower (World) (v1.2) (GB Compatible)","93dbee715a523e2081a17c44d7a16459":"Pokemon Trading Card Game (Europe) (En,Fr,De) (Rev 1) (SGB Enhanced) (GB Compatible)","93ff3f6b4bfe0a138d8a8897899e8cb0":"Quest - Brian's Journey (USA) (GB Compatible)","943d6c35c9b43494b90ffbde49eac53f":"Merlin (Europe) (En,Fr,De,Es,It,Nl)","9462bc81907e38c59acccd739690e6f9":"Pokemon - Edicion Oro (Spain) (SGB Enhanced) (GB Compatible)","94716503c16f0387f9f78962bca5b30c":"Microsoft - The 6 in 1 Puzzle Collection Entertainment Pack (Europe) (En,Fr,De,Es,It)","947f96cfd5bab7a03ec2f3fc0ae9238d":"Dragon's Lair (USA, Europe) (En,Ja,Fr,De,Es,Zh)","948f4ff45e8c3a7cd94c08aeac6dbef5":"Forest of Fallen Knights (World) (GB Compatible)","94a53f23bf6200905006082508ea43bf":"Bubble Trouble (World)","94ae7f7e9135b2ba30365e91030a8779":"Mount Vesuvius (World)","94cdb66509527746395b3eed6b16fd73":"2003 Crash II Advance (USA)","94d2aa3fbda301f9c0d0c16e00743183":"Commander Keen (USA, Europe)","94e1575453f54cbe157d13eae6e78d92":"MTV Sports - Pure Ride (USA, Europe)","94f4306cb0c27686661e37a96eef730b":"Chee-Chai Alien (Japan) (Rumble Version)","9562a0aad16857f2f1a8e4169163c18a":"Looney Tunes Collector - Martian Alert! (Europe) (En,Fr,De,Es,It,Nl)","956b38b3692985fbd2850d8983916ddb":"GameShark MX (USA) (v1.02)","957b3a018cd37a886ea3d0f956e966b0":"Wing Warriors (World) (En,Fr,Es) (Kitmaker) (GB Compatible)","958670daeccc225fe23e74a60be59541":"G.B Corp. (World) (Beta) (GB Compatible)","95b284df7ba2f862406f747b4ca7c380":"Qix Adventure (Europe)","95de0eb82c6013224a449fd972006d6f":"Gremlins - Unleashed (Europe) (En,Fr,De,Es,It,Pt) (Beta)","967488fc18b9ee5140c33090fedd7a79":"Powerpuff Girls, The - Paint the Townsville Green (USA)","96935055414491738c463c19081aaa90":"Zhong Zhuang Ji Bing (China) (Pirate)","96a21eff22c8e465cd2c730763aea541":"Canoe Slalom (World)","96ada1aaa3214b4f6ee5c77f7dc61a26":"Skelby (World)","96d2795fd83f03986c5142ec288d384e":"Pumuckls Abenteuer im Geisterschloss (Germany)","96d2f46187d1eee4a7e0253e1f51c7aa":"Triple Play 2001 (USA, Europe)","96d365425eb1134944e1255f0ade1fd7":"Blaze (World)","974d6664dc7114e637c2c1cc2f252724":"Austin Powers Episode IV (Europe) (En,Fr,De,Es,It) (Proto)","975afeb42d4dca06ab6d0b029def64af":"Mountain Climber (World) (En,Es) (GB Compatible)","975b5b649d64fd2334cb69f81bca4c9c":"Sonic Adventure 7 (Taiwan) (En)","978ef3e4e41f9b5330f17cf9a6de9595":"Nakayoshi Cooking Series 5 - Cake o Tsukurou (Japan) (Beta 2)","979eb4fd473c344cb2cfc6ea4211ca5a":"Dragon Quest Monsters 2 - Maruta no Fushigi na Kagi - Ruka no Tabidachi (Japan) (SGB Enhanced) (GB Compatible)","97a3474440373af59774d611d5c52c27":"Owarai Yoiko no Geemumichi - Oyaji Sagashite 3 Choume (Japan) (SGB Enhanced) (GB Compatible)","97b6eb86385cc51fed8f65c6db04548a":"Yurivania 0 - Soul Night Prelude (World) (v1.3) (GB Compatible)","97f3fb212fabe26392d110c13e053173":"Top Gear Pocket 2 (USA) (Rev 1) (Proto)","986bcb950df452ade78fff94a83c56f3":"Cross Hunter - Monster Hunter Version (Japan)","9884397baf27070bf210138ac6b5c4e7":"Mission - Impossible (Europe) (En,Fr,De,Es,It) (Rev 1) (Possible Proto)","9889afc5b4e72c9f96db8e6b4260f6b7":"Hollywood Pinball (Europe) (En,Fr,De,It) (GB Compatible)","9896e3a34ae29d05dd0f5d2a298a75ad":"Ruby & Rusty Save the Crows (World) (Beta 2) (GB Compatible)","98ce3dda6530b382036478bf9850f1a1":"Quest Arrest (World) (v1.1) (Digital) (GB Compatible)","98f7778539e22307d074cf0abb37d05c":"Konami GB Collection Vol.3 (Europe) (GB Compatible)","991957a67a63f1e54bf34a3715402ca5":"Full Time Soccer (Europe)","995cebd28aaa5d94b8a230e9f22606b3":"Nakayoshi Cooking Series 4 - Tanoshii Dessert (Japan)","99825e86250ab53b5ea8ac702930919d":"Flintstones, The - Burgertime in Bedrock (Europe) (En,Fr,De,Es,It)","99c2598c7d38b14a35594083f8a20130":"Gedou Jian Shen - Soul Falchion (Taiwan) (En) (Alt)","99c7758531a1e79a1988f0d6ba26d3d4":"Race Time (Europe)","99ff6f711e458726eac291d560c82d10":"TV-Chan's Great Escape! (World) (Proto) (GB Compatible)","9a43179573d212b528d8f74da044511c":"Dragon Tales - Dragon Wings (USA)","9a8e8451edb7a0ce6b19ac89457cb3fc":"Tiny Grasshopper Goes Away (World) (En,Hu) (v1.2) (GB Compatible)","9a908fd85216b1b3a994ec75d2cf9318":"Hot Wheels - Stunt Track Driver (USA, Europe) (SGB Enhanced) (GB Compatible)","9aa127615d6f0de4ccc534774fe54c37":"All Star Tennis 2000 (USA) (Proto) (GB Compatible)","9abaf0dfeb58b76d6b5cce4b42756c8e":"Arle no Bouken - Mahou no Jewel (Japan) (SGB Enhanced) (GB Compatible)","9ae9d43fc7ec5570badf7a19ae006afd":"Naminori Yarou! (Japan) (NP)","9af19423c5fa3dbe4fdcc78d2bc7d1c0":"Pokemon - Version Or (France) (SGB Enhanced) (GB Compatible)","9af23c3cdf945b6a78f13dbaebbaefc0":"Ultimate Paintball (USA, Europe)","9afe57208b564946dec44244409a9a15":"Zidane - Football Generation (Europe) (En,Fr,De,Es,It) (Beta)","9b2d3dfd0f545b1ac8b10b25f9fbe56b":"Tom and Jerry - Mouse Hunt (USA) (En,Fr,Es)","9b3f141b7747d6d23bca68ec1ff7af35":"Ganso! Doubutsu Uranai (Japan) (Proto)","9b846e9a4eb6b80cdbc8e6c82f2b9e9e":"Ghosts'n Goblins (USA, Europe) (GB Compatible)","9b8869fa36562a32edec76717632875e":"Super Breakout! (USA) (GB Compatible)","9b9be252c3ac04112068db69c4c56512":"Zodiac (World)","9ba7b607ec310589c5ccfb1a8149df59":"Mr. Nutz (USA) (En,Fr,Es)","9bbe3cb922a017053d86d1355ee69794":"Doraemon - Kimi to Pet no Monogatari (Japan) (GB Compatible)","9bdc654fc8acb425fe4b68269928fbfb":"Robot Poncots - Star Version (Japan) (SGB Enhanced) (GB Compatible)","9c1cb86cccb4fa2bbc6137a81d92a3b1":"Return of the Ninja (Europe)","9c3800babd418a937f4429bbaaf2b81d":"Antz World Sportz (Europe) (En,Fr,De,Es,It,Nl)","9c3ae66bffb28ea8ed2896822da02992":"Pocket Monsters - Crystal Version (Japan)","9c6a9c38b987e50001153ad12eb5fcc8":"Hamster Monogatari GB + Magi Ham no Mahou Shoujo (Japan)","9ca299a1f1b3a62d4ef96ef9c9835442":"Neonsomnia (World) (v0.1) (Proto) (GB Compatible)","9cf5135bd746fa7f475c65f46e1ae2e1":"Repugnant Bounty (World) (v0.1.023) (Beta) (GB Compatible)","9cf75b247ec97b8838181ad75d5f983a":"Men in Black 2 - The Series (USA) (En,Fr,De)","9d1067c75dcbce5aacabacabb06b95c4":"Monster Traveler (Japan) (Rev 1)","9d2256a877d29f6b12a81d9961a33cea":"Elang 2003 - Mark of the Wolfs (Taiwan) (En)","9d238ed036bb656acf9765589119f68c":"Pro Mahjong Tsuwamono GB 2 (Japan)","9d2f7e1ac30a46456a841c264963e5ea":"Survival Kids 2 - Dasshutsu!! Futago-jima! (Japan) (SGB Enhanced) (GB Compatible)","9d319a32492c1f4964c244477f6188ea":"Gridtrap (World)","9d3bcec616f238ed41146a2ce94ab562":"Telefang - Power Version (Taiwan)","9d3e582f7a50cd50f37c848ba24ee382":"Tarzan (Germany)","9d5808671cdb4bd5d4e4f0c44d171d6e":"Feng Kuang A Gei III - Chaoji Zhadan Ren (Taiwan)","9d64f8607e9bc3e788f30fff123be448":"AirForce Delta (Japan)","9d79034c9b026f448f84f9898c6ccfd6":"Shadowgate Classic (USA, Europe) (En,Fr,De,Es,Sv) (GB Compatible)","9d80032f7d8dddb30aabf19455e9c6e3":"Mary-Kate and Ashley - Pocket Planner (USA, Europe) (GB Compatible)","9dcf58ce7c379a01c3288975e90624f3":"Jim Henson's Muppets (Europe) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible)","9dd91576606411b753e4a722eb12f296":"Sylvanian Families 2 - Irozuku Mori no Fantasy (Japan) (Rev 1) (Possible Proto)","9de083ff607f9a8022fde52d598160e8":"Mary-Kate and Ashley - Winners Circle (USA, Europe)","9dece7202bd00a2806b36b5848ca985e":"Racin' Ratz (USA)","9e3d4ff0ba3d6deec5080f6dbed4fef8":"Fushigi no Dungeon - Fuurai no Shiren GB 2 - Sabaku no Majou (Japan) (AFMJ)","9e6624b386788a0cebd708f23701eadb":"Guzzler (World)","9e857e7a438acd2e8d9965f49dd21411":"Quest - Fantasy Challenge (USA) (SGB Enhanced) (GB Compatible)","9eb8be5600d2408352bf9ef32b91d1df":"Cubix - Robots for Everyone - Race 'n Robots (USA) (En,Fr,De,Es,It)","9eccd7d587ce52ebf90722dac7fb1eac":"Battle Star (World)","9f28e403eb338a7457f54dee7a6f443e":"Xtreme Wheels (USA)","9f2922b235a5eeb78d65594e82ef5dde":"Pokemon - Crystal Version (USA)","9f4382352a6fd43c844c3aced7cd842a":"Megami Tensei Gaiden - Last Bible (Japan) (SGB Enhanced) (GB Compatible)","9f6135616b201739af43236fcfd5c273":"Millennium Winter Sports (USA)","9f61847ddf25f5244257641bc971c1fd":"Puchi Carat (Japan) (SGB Enhanced) (GB Compatible)","9f77adbb0a6af7bd85d21a8ef9fdea49":"Fix & Foxi - Episode 1 - Lupo (Europe) (En,Fr,De)","9f7fbde333caa987d9069e6d993c4993":"Sam the Optimistic Hedgehog (World) (GB Compatible)","9f88bdc053b035240ff1478ca11e7c23":"Test Drive Off-Road 3 (USA) (Rumble Version) (SGB Enhanced) (GB Compatible)","9fde547bcb70b108895e259da4c4e100":"Spider-Man (USA, Europe)","9fe3162d87054504eb82113f7ae8d6f8":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (GB Compatible)","9ff602e5ebc9be5b1f7ad6a637c35c9f":"Daisu-ki (World) (v1.2.1)","9ff78c16081934ee86be9c7e6c543da6":"Shuma Baobei DX6 (Taiwan)","a00012533e76649f4e7e1b7aa5a9ee07":"Lufia - The Legend Returns (USA)","a01026f30b0b0483f3c048b4eb2513ed":"Matel Gear II (Taiwan) (En)","a0361b10f4006f1fea4b21f5403b5b95":"Xiyou Ji (Taiwan)","a03e3cd1a2c78be11e3a52fe995cec71":"Nakayoshi Cooking Series 5 - Cake o Tsukurou (Japan)","a08b575b947d0249cdf214fc130706ce":"31-in-1 Mighty Mix (Australia) (31B-001, Sachen)","a0993894d9c1bb543caa7acbaf7ca5c0":"Hightail (World) (Demo 4F)","a0b4538f687fc61bc88f7ee111170355":"Tomb Raider - Curse of the Sword (USA, Europe)","a0ceaf6ebf640a48e2bf54478d2e4a63":"Mask of Zorro, The (USA)","a0f33ee506052fe421c741e81a395355":"Super Mario Special 3 (Taiwan) (En)","a0f537747bab3d8599281deae17ff47f":"Proof of Destruction (World)","a10a70354cc998e31f0b5fb27c471c37":"B-Daman Bakugaiden V - Final Mega Tune (Japan)","a11802247b7f38f508f71cb257ff76ab":"Taito Memorial - Chase H.Q. - Secret Police (Japan) (SGB Enhanced) (GB Compatible)","a119452d83b0a2e72bfc0ac706325667":"Mask of Zorro, The (Europe)","a1304bdefa239600bd6116081bae2e23":"Space Invaders X (Japan) (En) (GB Compatible)","a13623a452327ede4553ee2bd1b89a1a":"Magical Tetris Challenge (USA)","a173eb46ef11840b9318a8832828280b":"Gedou Jian Shen - Soul Falchion (Taiwan) (En) (Alt 2)","a18746b05badafb5b8456ace6ba3e65f":"Austin Powers Episode III (Europe) (En,Fr,De,Es,It) (Proto)","a18fcd9883846e35c507eb3ec98dcd73":"Towers II - Plight of the Stargazer (USA) (Proto 3)","a1cf50da360d45d78075ae48313a18fa":"Antz (Europe) (En,Fr,De,Es,It,Nl) (Beta) (GB Compatible)","a1d7687a557dd2a3948c9f498703f4a3":"Beast Fighter (Taiwan) (En) (Sachen)","a20d6884a7d6bc5610ef4078a72ce460":"Phantom Zona (Japan) (SGB Enhanced) (GB Compatible)","a2500f1123909abfa0b0a4fa33ef2905":"Powerpuff Girls, The - Paint the Townsville Green (Europe) (BPTX) (Proto)","a2623acf15ec36ab072ee5b92b88b613":"Sgt. Rock - On the Frontline (USA)","a26cfbd01895b12ad64b7191a607fc11":"Tony Hawk's Pro Skater (Japan) (Proto)","a28184f9cd3f24e67c3fb5d84b3aa78b":"Barcode Taisen Bardigun (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","a290f281cde7d00059e0e567bffb0d3b":"Hamster Paradise 2 (Japan)","a2a41746a1ec29a25d3e715342cb71f2":"Super Jacked Up Tomato Face Johnson (World) (Jam Version)","a2d07e7da188092c88ef6d9fd2e5eaa4":"LEGO Racers (USA) (En,Fr,Es)","a30b8e40344bcfbeb08110c79de4af14":"Black Bass - Lure Fishing (USA, Europe) (GB Compatible)","a31652b6d1e7fc647c4af7b9dfe05ff5":"1942 (USA, Europe)","a320f9de83767bb1bc1bbbc6fbd96011":"Mario Tennis (Europe)","a34819a548e7a1a2b8a6d1d5ed6e912d":"Wicked Plague (World) (v0.1.1) (Proto)","a3491f8e6f09dd5945448477d4b8f79b":"Zagan Warrior (World)","a35c0fa2e3b3d1c1779cd9f2352bc427":"Pokemon - Kristall-Edition (Germany)","a36188fae0070066ba5989cebaf2a1b6":"Joryuu Janshi ni Chousen GB - Watashi-tachi ni Chousen Shitene! (Japan) (SGB Enhanced) (GB Compatible)","a366feb4c07a1f70890d0bf3e13de38b":"Gamer Boy Mission (World) (GB Compatible)","a3799918a413d72787d4434935df2117":"Pokemon - Silberne Edition (Germany) (Beta) (SGB Enhanced) (GB Compatible)","a395cafa0678f64114e6a8577ed58bfe":"Usurper Ghoul (World) (v1.9) (GB Compatible)","a3c65d746e0e171843e9013e8d8e1021":"Tales of Phantasia - Narikiri Dungeon (Japan) (SGB Enhanced) (GB Compatible)","a41843374fe3bce0b61a641fafd6f415":"Laura (Europe) (En,Fr,De,Es,It,Nl,Sv,Da) (Rev 1) (Proto)","a42bfef360186003c6a8a617581a1155":"Pocket Lure Boy (Japan)","a455a70d52a9ffcfe8c4d8c164267500":"Super Impostor Bros. (World) (GB Compatible)","a456d96b9c3ed51cdf58369fc1f07880":"Pocket Puyo Puyo-n (Japan) (Rev 1)","a4a756be0d12c2ba7ca5a6420bb2198e":"E.T. - The Extra-Terrestrial - Escape from Planet Earth (Europe) (En,Fr,De,Es,It,Nl)","a4af66b229f3bed283f361275484d84d":"Tools of Nexaura (World) (Beta 4) (SGB Enhanced) (GB Compatible)","a4b4323b2786ddf738a0feedd912a909":"Vixen (World)","a4b695325ac28be2e388f5b9186987ba":"Antz (USA) (En,Fr,Es) (GB Compatible)","a4df533c6b9b3423f71385e68bd5c421":"Ojarumaru - Mangan Jinja no Ennichi de Ojaru! (Japan) (GB Compatible)","a4e6f256943c4b7f99a75b73bdd3a3e0":"Harbour Attack (World)","a537394fbf3378116a27a57ca6d588b7":"South Park (USA) (Proto)","a539a0ae1b1ed8034fc3a4733b4298c3":"Looney Tunes (Europe) (GB Compatible)","a539a7a02639395ad8d7723199c81eae":"Harvest Moon 2 GBC (USA) (SGB Enhanced) (GB Compatible)","a55b8d588bbaa4ebcb4d53dbb534329f":"Planet of the Apes (USA) (En,Fr,De,Es,It,Nl)","a562bbe876b8467cc530213ec84eba0a":"Gimmick Land (Japan) (Proto)","a57d5976214d5f8d52dae5faf4354abb":"Ms. Pac-Man - Special Colour Edition (Europe) (SGB Enhanced) (GB Compatible)","a594843d9a5b85cc8c673c6b97945ad2":"Rootin' Tootin' Cowboy Wizard Lizards (World) (Proto) (GB Compatible)","a5bc2e2ad58bbd78609478a60dcda8d7":"Harvest Moon GB (Europe) (SGB Enhanced) (GB Compatible)","a5be435543968412caac1fe7c914472e":"Wario Land 2 (Japan) (SGB Enhanced) (GB Compatible)","a5bfa8b98969ca67811ed2d7bfbf5535":"Spy vs Spy (Japan)","a5c6583784900008ea52b49761f035b8":"Swordsman on the Eternal Journey (World) (En,Ja) (v1.00) (GB Compatible)","a5d013a0066ee9874e88a1c455cc454a":"Kanji Boy 3 (Japan) (Beta)","a601e9009c88c7dcfac8aaea41dd45d8":"Super Chinese Fighter EX (Japan)","a62923faa62daf5e7e5363d238a1d32c":"Pokemon Gold Version 2 (Taiwan)","a649ef1410ae4c24020fb8b0113739e3":"102 Dalmatiner (Germany)","a67cb573673f041098f23f868a153019":"Noddy and the Birthday Party (Europe) (En,Fr,De,Es)","a680117a75204cc8c6f7f0d80f1d8f24":"Cat Jumper (World) (GB Compatible)","a68e210e9e08cfbcccb0350333b5ff4f":"Langrsr II (Taiwan) (En)","a6924ce1f9ad2228e1c6580779b23878":"Pokemon - Gold Version (USA, Europe) (SGB Enhanced) (GB Compatible)","a6d93b1626f127adecc65bb675672cdb":"Hajimari no Mori (Japan) (Proto)","a70b5728772725f9688f91330bc4fbda":"Wayfarer Boo - Pushing Through (World) (v1.1)","a721520df37c636ed924dbc268cdd753":"Micro Machines 1 and 2 - Twin Turbo (USA, Europe)","a7217c8338a2de76b9e50d09589f350a":"Second Edition Harry Boy, The - The Secret of the Chamber of Secrets (USA)","a72a4d45b155f4a41bd2613d0bb3f5fa":"Nyghtmare - The Ninth King (World) (v0.1.2) (Beta) (GB Compatible)","a767370eefdaad9831acb4c3c3258c44":"Hugo (World)","a779f9fd31f32e78d6b4cea27aa15541":"Project S-11 (USA) (Beta)","a7a083bd154392a188dc8ed62c145ea4":"Burger Paradise International (Japan)","a7a2c27cb6fc2c6cf67eb8af2b99c612":"Terrifying 911 (China) (En)","a7af89e99a4cbb2afbe08549088d8fda":"Forest of Fallen Knights (World) (Beta) (GB Compatible)","a7d2695b3ddc268389e36f916815f96d":"F1 Racing Championship (Europe) (En,Fr,De,Es,It) (Beta)","a7e34f3cf77e1df0ef8896a712d7ca82":"To The Stars (World) (GB Compatible)","a7edd8b2fc42450a4ee4874fa67c24de":"Dragon Ball Z - I Leggendari Super Guerrieri (Italy) (Beta) (All Unlocked)","a7f23a751078922169df0f73a1db1564":"Nakayoshi Cooking Series 1 - Oishii Cake-ya-san (Japan)","a87e78da9b5d0d937dd67ddeb970700a":"Baiwan Dafuweng - Jin Ban (Taiwan)","a881f04dee6d67c7bc4be388e247a6fe":"Haunted (World) (GB Compatible)","a8ea5b8df744d028e681f9b608cff68a":"Skycon (World)","a8ee3ff6fbce24d27334cf532a000206":"Pokemon Diamond (Taiwan) (Zh)","a9049c52dd706737a6515822739db1c9":"Hunter in the Lost Forest (World) (En) (GB Compatible)","a9401fbd85e48cf0105ea3aabaf012a2":"Pocket Monsters Diamond (Taiwan) (En)","a94939498326beaec405d3947a7ce2df":"Robin Hood (Europe) (En,Fr,De,Es,It,Nl)","a94a1c6268555926ca1a3b439a2fb65c":"Dragon Ball Z - Densetsu no Chou Senshi-tachi (Japan)","a95f4953766e427456f1f991bb3143dc":"Dragon Ball Z - Guerreros de Leyenda (Spain) (Beta)","a96e95e150e34db6080724c5eeec1348":"Pop'n Pop (Europe)","a9847d8a5683cbcacd7e45e2762c365c":"Princess Poffin and the Spider Invasion! (World) (GB Compatible)","a9a4d4db13b2c35f0e260bf067087055":"Burger Burger Pocket - Hamburger Simulation (Japan) (SGB Enhanced) (GB Compatible)","a9cc81bffb2d1d3a9caa38f04e6f6c1d":"Gute Zeiten Schlechte Zeiten Quiz (Germany) (GB Compatible)","a9d2f36d6c2a334e0b2261c57c20f0d4":"Turok 3 - Shadow of Oblivion (USA, Europe) (En,Fr,De,Es)","a9da27b4eb19db857d3040b6cd1d2328":"Capcom Fight 2003 (Hong Kong) (En)","a9ee6c9625c9bd187bc7fd90df3a4fc4":"Loppi Puzzle Magazine - Hirameku Puzzle Dai-2-gou (Japan) (SGB Enhanced, GB Compatible) (NP)","a9ee7c9fcfe647a75d9f0ce4dde1b64d":"Thunder Blast Man (Europe) (Sachen)","aa0ccc0c4d2472b5fb657aba003efb81":"Daffy Duck - Subette Koron de Oogane Mochi (Japan) (GB Compatible)","aa1bf5ff55e7106b496850e3c6cf7c14":"Tsuriiko!! (Japan)","aa2b420b9eca7479f83423c46b106823":"Cuthbert in Space (World)","aa7235fbdf5f0c7fb5a67bc6d24dd4df":"Micro Maniacs (Europe)","ab00def91c7d2f6d29d3f0c629102033":"GB-Wordyl (World) (Kw) (GB Compatible)","ab2ebc72473b5669dbcfe4d29081c18b":"Fengkuang Dafuweng (Taiwan) (Alt)","ab3245958e1ddea3209841c62ca8448e":"Bob et Bobette - Les Dompteurs du Temps (Europe) (Fr,Nl)","ab38e871b66ee8ad1bb8ea7d92934fd1":"TG Rally 2 (United Kingdom)","ab44aacb4e4c17f5815a8ee1444045fa":"Shi Mian Maifu - Fengyun Pian (China)","ab58102005b510a2d905ed7de9d6267a":"Densha de Go! 2 (Japan)","ac1f4ad52996882c60ce83cac01e9ccf":"Power Quest (USA) (En-US,En-GB,Fr,De,Es,It) (SGB Enhanced) (GB Compatible)","ac2985f193cf8acc1d1cc5124fc2e406":"Nyghtmare - The Ninth King (World) (v0.1.9) (Beta) (GB Compatible)","ac29eaef5fc03f8dd08215a8e162cd2e":"Airwolf 16 (World)","ac2a045c58145b030f9ed61f526fc233":"Capcom vs SNK - Millennium Fight 2001 (Taiwan) (En)","ac38dfd19646ca6e143024d699145c70":"Stuart Little - The Journey Home (USA, Europe)","ac3dfc02635524fbb01dcacd2db3d066":"RPG Tsukuru GB (Japan)","ac46bc779e1e844674de1d4c13d06f96":"Dragon Ball Z - Legendary Super Warriors (USA)","ac812a2c6eaf743efd64972d8fa5a3c4":"World Soccer GB 2 (Japan) (SGB Enhanced) (GB Compatible)","acb10288f383c6b475e11e936aa56c70":"Dino Breeder 3 - Gaia Fukkatsu (Japan) (SGB Enhanced) (GB Compatible)","acb6b136fa26888d42b5f95871a75eaa":"Klustar (Europe) (En,Fr,De,Es,It) (GB Compatible)","acb82a5584f830d6d7bc33f4827571b9":"Xena - Warrior Princess (USA, Europe) (En,Fr,De,Es,It,Nl)","acd26c013ffa1c3a7905be69dd79c67c":"Zoids - Jashin Fukkatsu! Genobreaker Hen (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","acfa3540921a88cae136da1040ca2302":"Tweety's High-Flying Adventure (Europe) (En,Es,It)","ad2dd8db576cf8aa1262cca24df6ff59":"Exploits of Fingers Malone, The (World)","ad358f284c3303db01212016ed3944d5":"Bomberman Quest (USA) (SGB Enhanced) (GB Compatible)","ad37726c92f43ad7915225b7eaf94ffd":"Heroes of Might and Magic II (USA) (En,Fr,De)","ad380d123ed38ecc6a8068f61602daf7":"Gods of the Universe (World)","ad945d22680a6b2a149079cb564a238e":"DryMouth (USA)","ada59e7dafe1a6b70add7020959c1b23":"Sesame Street - The Adventures of Elmo in Grouchland (Europe) (GB Compatible)","adb95251cfd973f8245e6a869925d6da":"Test Drive Le Mans (USA) (En,Fr,Es)","adfb8d9dc0d5633b1c385be79f3b425f":"Kettou Transformers Beast Wars - Beast Senshi Saikyou Ketteisen (Japan) (SGB Enhanced) (GB Compatible)","ae0a7c2524b627b354098078def54f18":"Xtreme Wheels (Japan) (Possible Proto) (NP)","ae29aed4e24109e18ffe893da6b77fee":"K.O. - The Pro Boxing (Japan)","ae7dd19e6e8b3130498e4a27476e2931":"Outward (World)","ae9b4ed5cd8c80029a3c01096963ee19":"Pitfall GB (Japan) (GB Compatible)","aeb6ac2b389cef6e6133461b38474a7e":"Castlevania - Demon Castle (World)","aeeb6c737c55d4a4d0691e27ec831eec":"Max Steel - Covert Missions (USA) (En,Fr,De,Es) (Proto)","aeec41031271f75b5e0b1d132b8a4505":"Powerpuff Girls, The - Paint the Townsville Green (USA) (Rev 2)","aef3a27b97dd65b17a9c7263eff11322":"Game Boy Wars 2 (Japan) (SGB Enhanced) (GB Compatible)","aef66e8a7c75323ae0981ff5a20722a4":"Pocket Puyo Puyo-n (Japan)","aef9b41fbc898a58fd2aaaeabc2787e9":"Mobile Trainer (Japan)","af157e560d1ff87970c1bd2ee90d0932":"Magical Drop (USA)","af1d1e17a5c568df796f4004be872649":"Xtreme Sports (USA)","af4565bf1ea33c785fc9e05be2a9bad0":"Robot Wars - Metal Mayhem (Europe) (En,Fr,De,It,Nl,Sv)","af584eea2b34afdbb6193348ecb58f11":"Janosch - Das grosse Panama-Spiel (Germany)","af8e059196fcdd29cc0fc417d3abf9ff":"4 in 1 + 8 in 1 (World) (4B-007, 4B-008, 8B-004, Sachen)","afd4ae2f42da36ddb740fa6a5b06d74e":"Shantae (USA) (Beta)","afd9281eac1eacd73c200cbc69f57b9e":"Power Spike - Pro Beach Volleyball (USA)","afe14eef683f3eb910b67ea2e3feb124":"Mage and the Grimoire of Beast (World) (En) (v1.01) (GB Compatible)","afe51a74c6967711ddd263e3998b7afd":"Jim Henson's Bear in the Big Blue House (USA) (En,Fr,De,Es,It,Nl)","afeec69d5ba3afa3ce2279fcda944576":"Prince of Persia (USA, Europe) (En,Fr,De,Es,It) (GB Compatible)","aff1aa8c293dc5e26fa704eb1693dc0c":"Mission - Impossible (Europe) (En,Fr,De,Es,It)","b0080c2f1919a4bb0ea73b788f4a6786":"Legend of Zelda, The - Link's Awakening DX (Germany) (Rev 1) (SGB Enhanced) (GB Compatible)","b03138ad381d8581f245ca6ff88f9ef8":"Mummy Returns, The (USA)","b061db3dd5861addeaf22a83af802491":"Beyblade - Fighting Tournament (Japan)","b06e4ef225fbf01771dea02679f3775e":"Sam the Optimistic Hedgehog (World) (GB Compatible)","b077f0acbb5d2ca07a2d9c035856e01e":"Dinosaur'us (Europe) (En,Fr,De,Es,It,Nl)","b0849abcac5411fc88c90f28b3166bc2":"Tomb Raider (Taiwan)","b08ab767c367afebaa23b1be93f7f318":"Dicee! (World) (v1.1) (GB Compatible)","b090fc649463f99dc413fbae246d400a":"Lee Carvallo's Putting Challenge II (World) (v1.1) (GB Compatible)","b092bd8fc2001baf51d60ce89fe0915e":"Shuihu Zhuan Zhi Qunmo Fengyun Lu (China)","b093e59f676d7e9fc4827139b0cfdc74":"Basketbrawl (World)","b11b76bf7344f01f0608b8b8da83b46b":"Cookie Monster Munch (World)","b11f6063fd7006426d136da1ee27b27a":"Mona and the Witch's Hat Deluxe (World) (GB Compatible)","b12265f9c7139a51d55d354aa5ade32a":"Pachinko Hisshou Guide - Data no Ousama (Japan) (GB Compatible)","b138e131aeee6f969e45673821221b07":"Sei Hai Densetsu (Japan) (SGB Enhanced) (GB Compatible)","b13bbd668d6a9714fc13a8fa903dfe13":"Moshou Shiji - Zhanshen (Taiwan)","b13dda5f217d1e8050af087a3f5ac6bc":"GB-Wordyl (World) (De) (GB Compatible)","b14bf550163b000a7d1ba3caa43ac508":"Lodoss-tou Senki - Eiyuu Kishiden GB (Japan) (SGB Enhanced) (GB Compatible)","b1729716baaea01d4baa795db31800b0":"X-Men - Wolverine's Rage (USA)","b173870c83682e97fcc43b6d3ee9ac7f":"Top Gear Rally (Europe) (Rumble Version)","b1c7dbc6db86ea54fa8caab4eb3148e2":"Unholy Friend (World) (GB Compatible)","b1dba18c324554a433893073599777a7":"Medarot Cardrobottle - Kabuto Version (Japan) (SGB Enhanced) (GB Compatible)","b1e72ba9c23587d002bf1059504ad6db":"Ganbare Goemon - Seikuushi Dynamites Arawaru!! (Japan)","b23248da379be11b7ea91eb6a7c95b2c":"Mission Bravo (USA) (Proto)","b25025224eb338963fc9c0fee91f2c39":"Duke Nukem (Europe) (En,Fr,De,Es,It)","b250ee7ce8d2eaae25379723e054516c":"Daa! Daa! Daa! - Totsuzen Card de Battle de Uranai de! (Japan)","b284dbf9549a8322eadf291c631c057e":"Cops and Robbers (World)","b28a4a00b8a2a0a6055f79d13928f9ff":"Neclaus' Quest (World) (v1.1) (GB Compatible)","b28c999d1b43e8e39998827ff39965cc":"Dragon Quest Monsters - Terry no Wonderland (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","b290f995cec5958d396055c6c0ff8a3b":"Rocky Mountain - Trophy Hunter (USA)","b2d3713267c9e21b3dae3cb5f437fccd":"Duke Nukem (USA) (En,Fr,De,Es,It)","b2fe715038778210c0c2c8dd06b2a11f":"Super Gals! Kotobuki Ran 2 - Miracle Getting (Japan)","b311207a613d72a52a779b2aa3b3990c":"Rig Attack (World)","b3142aae557bc4e04e2f0f740fae9577":"Dropzone (Europe) (GB Compatible)","b3347b3219a7183697e83655f4628827":"Bionic Commando - Elite Forces (USA, Australia)","b3550a7c733b9392477f5b2e4502d7a8":"Shaman King Card Game - Chou Senjiryakketsu - Meramera Hen (Japan)","b397066e3cad5ae33a31e4adfff0bff5":"Legend of the River King GBC (USA) (SGB Enhanced) (GB Compatible)","b39c09e1a033f08d8160bf5dfa4082bc":"Raku x Raku - Moji (Japan)","b3a3b81d16bf534afe80200995dfc683":"NBA in the Zone (USA) (Rev 1) (SGB Enhanced) (GB Compatible)","b3af66996b1ae8315ad94880af361cec":"Hauntsfield (World) (GB Compatible)","b3bd4adc4613ff8f4b9cf8c80ff0a6ef":"Rocket Power - Gettin' Air (USA, Europe)","b3d08bf6b51ec11b62e1865f484717df":"Dia de Sol Noite de Lua (World) (GB Compatible)","b3e63b970dd30375664a119fa80e9382":"Taikong Baobei (Taiwan) (Li Cheng)","b3e8e32a3f8c3366cb12b4ea7b0a9169":"Powerpuff Girls, The - Paint the Townsville Green (Europe) (BPTP)","b3e97d514a8ad26a0802640a4b8386be":"Dragon Ball Z - Les Guerriers Legendaires (France) (Beta) (All Unlocked)","b3ebf79679aeb1e7fa4840484fcb94c5":"Towers II - Plight of the Stargazer (USA) (Proto 2)","b3f1a058f5702384af5e5d79ee855824":"Top Gear Pocket (Japan) (En) (Rumble Version)","b40dbe0f8ac98ede81f05c37dd0f67b1":"Aqualife (Japan) (SGB Enhanced) (GB Compatible)","b40f87a5332e9638cb92b98cfa4b202b":"Dork's Dilemma (World)","b410f6f84f4e4be7d1e8332067984207":"Yinyang (Taiwan) (De)","b44f01ea2d8a7d1987df04ed1424c260":"Yongzhe Dou E Long VIII (Taiwan)","b4718458fffedc4552c94c2428b78ba4":"Cold Nights (World)","b4c21d6cf67f5742ef3a19860eb31d2e":"Mr. Driller (Japan)","b4da49116eaf8e63d5dd912bc8da33f4":"Cross Country Racing (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible)","b50ef76b1e81615cf079c373b50c0ab9":"Grinch, The (Europe) (En,Fr,De)","b53d2cbd2377cbadb4f55b03fe58cbac":"Tiny Toon Adventures - Dizzy's Candy Quest (USA) (Proto)","b53eaf56f0c95887f4c009c4a95f28a2":"Grave Encounter, A (World) (v1.21) (GB Compatible)","b541848e14b7b70b679cb640915e8de2":"Take Your Medicine (World) (En,Pt) (v1.0) (GB Compatible)","b542fbcf77dea9de05ceab312648af6d":"Suske en Wiske - De Tijdtemmers ~ Bob et Bobette - Les Dompteurs du Temps (Europe) (Fr,Nl) (Beta 1)","b56c25cc4c2b086055d9d72a04baa1e8":"Ripjack (World) (GB Compatible)","b587d5ae7c464408526489b67dfca07d":"Dragon Ball Z - Legendaere Superkaempfer (Germany)","b59fa772b15a07f44110d5b7aa24b424":"Taito Memorial - Bubble Bobble (Japan) (SGB Enhanced) (GB Compatible)","b5a71128227f5bc953fd55cb0025807f":"Super Mario Bros. Deluxe (Europe) (Rev 2)","b5e7ac93cb6ad3290ee58e4d589e081b":"Digimon - Yellow Jade (USA)","b5eb859e6ea60a0bd83100a10206d9c9":"Warlocked (USA)","b5f00d021a370663458b346fad6903cc":"Tonic Trouble (Europe) (En,Fr,De,Es,It,Nl)","b5fe88bbde541c28625e32b83239e6f0":"Moorhuhn 2 - Die Jagd geht weiter (Germany)","b60a022c89a8e0a2c597dee3de807f32":"Fellowship of the Rings (Taiwan) (En)","b60dbf70d1a54e327a1cd668ade9f43b":"Hole in One Golf (USA) (Rumble Version) (SGB Enhanced) (GB Compatible)","b62cd45af888f008be2ddb84b778af4e":"Madden NFL 2002 (USA)","b639c0dbb1ca57df4f77eac898ea5710":"Powerpuff Girls, The - Il Terribile Mojo Jojo (Italy) (Proto)","b69bbc95fccabd83c8130d7215884504":"Capybara Quest (World) (v1.0) (GB Compatible)","b69e0d23832e1a8631b72d250c0d23c7":"New Super Color 145 in 1 (Taiwan)","b6b81d98a27596443792f47812f15b67":"Worms Armageddon (Europe) (En,Fr,De,Es,It,Nl)","b6c357bb1a544fb1f8731cbdc3046596":"Looney Tunes - Carrot Crazy (USA) (En,Fr,Es) (GB Compatible)","b6ea71372c0acb3cdc8cc64a4b2add2e":"Micro Machines V3 (USA, Europe)","b702980f1562a0d66106ff8722675eb9":"ATV Racing & Karate Joe (Europe)","b717e9a48b44a5d367e8bcb4a5e68535":"Matchbox Emergency Patrol (USA, Europe)","b71d8408e211d4ae4daf7745af550b18":"Diva Starz - Mall Mania (USA)","b71f9207f81109a0358aebba688418b1":"Remi's Pizzaria (World) (GB Compatible)","b734829913e6d58e678441de37dbf88a":"RoboCop (Europe) (En,Fr,De,Es,It,Nl)","b73582e8872c1185f5ca7f5aecd7c7f8":"Cargo (World) (GB Compatible)","b73c9b2f3b03444fa9a098a03691a79e":"Featherless Cake Delivery (World) (v2.0) (GB Compatible)","b742e2ca9ba371665c32173315f8ff5c":"Super Marrio Sunshine (Taiwan) (En)","b749ab5629d40cc4da3e4136f49d7cd8":"Who Dares Wins II (World)","b74b6132326bafcd75e415ddcd9a2932":"Dragon Warrior III (USA)","b74e388091f84c552ea4e2c1be3fba95":"Spider-Man (Japan)","b7598a51e0acc0d74ca8f464826371ed":"Wario Land II (USA, Europe) (SGB Enhanced) (GB Compatible)","b7c5022990adb215bdfa6cb2714c34d2":"Gun Law (World)","b7cc57aba9190a1db492b56716ba048c":"Fugazim (World) (Pt) (GB Compatible)","b7d6335b8d3a34b15ce0b631bb9731a2":"Asterix & Obelix Contre Cesar (Europe) (En,Fr,De,Es,Nl) (GB Compatible)","b7d7a761d1666d4cf9832435c49eb14a":"Rugrats - Typisch Angelica (Germany)","b80371a8c851a4c0b9c944fd14b44d6e":"Wings of Fury (Europe) (En,Fr,De) (GB Compatible)","b814eb1064975392a2db18b5f410abf7":"Yurivania - Uhaul of the Night (World) (v1.5) (GB Compatible)","b81ddb7d86302384efe1675f75cc35f6":"Pac-Man - Special Color Edition (USA) (SGB Enhanced) (GB Compatible)","b85674c7d71d84cef9dcc9b2e35185d3":"Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 2) (Beta) (SGB Enhanced) (GB Compatible)","b85fa198c52bb1aeb40358dd712800a5":"Booty (World)","b863839c61e45db5c6c6492d24688032":"Dragon Quest Monsters 2 - Maruta no Fushigi na Kagi - Ruka no Tabidachi (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","b868fa9f3cecfa2d39df43a5d1b13b60":"Hello Kitty no Magical Museum (Japan) (SGB Enhanced) (GB Compatible)","b8814bfe24f20d38700822f4904f5c8e":"Legend of Carrot (World)","b883323e9ae3c85548169babe3f9b4f0":"From TV Animation One Piece - Maboroshi no Grand Line Boukenki! (Japan) (SGB Enhanced) (GB Compatible)","b8be3a0807b09038d4feb48dc2ab1e70":"Pocket Racing (Europe)","b8ce3f17001f042e55c8803f0e04cc74":"Pacifist, The (World) (GB Showdown) (GB Compatible)","b8d3db1fd7025e861975433cd718f8d6":"Treasure Island Color (World)","b8e7f2f760dc0e7010ac5a83a793fbd3":"Wendy - Der Traum von Arizona (Germany)","b928699d63702e21a3599b887b947041":"Yu-Gi-Oh! - Das Dunkle Duell (Germany)","b941941050fc32406eca4733926a3779":"Rayman (USA) (En,Fr,De,Es,It,Nl)","b943d261884c20de0b2838cf1416b3a3":"Xin Fengshenbang (Taiwan)","b9795b5d6397d36c1666c3a0bada059f":"International Track & Field - Summer Games (Europe)","b980da92693762bd3a7a4791fe08766e":"Yu-Gi-Oh! - Monster Capsule GB (Japan) (SGB Enhanced) (GB Compatible)","b9a686e4dbc7241bdf72aca235f7f92f":"NYR - New York Race (Europe) (En,Fr,De,Es,It,Pt)","b9bc4621f069f59e22eee05eeb6503cd":"Supreme Snowboarding (Europe) (En,Fr,De)","b9cf2cc6ff8cbe94cb58ffa958475ab8":"Star Wars Episode I - Obi-Wan's Adventures (Europe) (En,Fr,De,Es,It)","b9cf8d2416f8a6dd3b412afd91337f40":"3-D Ultra Pinball - Thrillride (USA) (Rumble Version)","b9fc9e6b9b6a0113c530f5cb0a34da71":"20 Second Platformer, A (World) (GB Compatible)","ba01289e8d646e1407f70275a50114b3":"Love Hina Party (Japan)","ba0aeedae367f82a1fd2760cfcda2bd9":"Soccer Manager (Europe) (En,Fr,De,Es)","ba0d9c7eec69cee04a7ff4faf91f2c4b":"Lucky Luke - Desperado Train (Europe) (En,Fr,De,Es,It,Nl) (Beta)","ba0debf5e0cda9adfa409dab91abb6a9":"Robot Poncots - Moon Version (Japan) (SGB Enhanced) (GB Compatible)","ba1195224261abd308db025d69ee2227":"B-Daman Bakugaiden - Victory e no Michi (Japan) (SGB Enhanced) (GB Compatible)","ba199806fd4f5af5f76fd9c1515b299d":"Casper (Europe) (En,Es,It)","ba1d07a8282202081af5ad985f0c31ad":"Gobs of Games (USA) (En,Fr,De)","ba205296796ad7cdc8ca180b280714d1":"Las Vegas Cool Hand (USA) (GB Compatible)","ba2f38d5c6b03aa44d892b56395a683b":"4 in 1 + 8 in 1 (World) (4B-001, 4B-009, 8B-001, Sachen)","ba2f86e301d723422e92dc2d23fbc976":"Fix It Felix Jr. (World) (GB Compatible)","ba516f1573bd24659e6a73cfbd5da789":"Yuenan Zhanyi X - Shenru Dihou (Taiwan)","ba5624d81e12bd6131cde70f0d9bd18a":"RunieStory (World)","ba7297329e355c7c52a3ae457f0e6069":"Ultimate Surfing (Europe)","ba85a2ae8aa5829c440eef2d5549506c":"Harry Potter and the Sorcerer's Stone (USA, Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da,Fi)","ba9822126b90c2dc7cd93f45e4780a42":"Caise Gedou 29 in 1 Diannao Huamian Xuan Game (Taiwan)","ba9a1c310a60c37fc2a7dc908ec1e442":"Midterm Moments (World) (GB Compatible)","bad2778ba7e134623a371e986e7356e6":"Mojie 3-bu Wanme de Shijie (Taiwan) (Zh)","bad95d30c38a92e7906feecb6d6bd272":"Aladdin (Europe) (En,Fr,De,Es,It,Nl)","baea8ed885dcdf816e9adddd3e1412b5":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (GB Compatible)","baf1c3ae7147141962d0b61d5176d9ee":"Megaman X4 (Taiwan) (En) (Rumble Version)","bafeee7c09f44ff52570841a135f0f9e":"Yingxiong Jian 2 (Taiwan)","bb0de10abd5c34ec0a203ded19d15cd9":"Gangdan Wuyu 2 (Taiwan)","bb5562d1de66e525271d4673d1376273":"Pocket Pro Wrestling - Perfect Wrestler (Japan)","bb8e268f1413adbbbf8654daa5c645b4":"Koenig der Loewen, Der - Simbas grosses Abenteuer (Germany)","bbbe3c8987de434cffa7839676132e0d":"Star Heritage (Europe) (Proto) (SRAM Version)","bbd777c45d97cd88a5cf7c7bdacac82a":"F-18 Thunder Strike (USA, Europe) (Beta) (Rumble Version)","bbf9b39219ecec88bea41b98c8352634":"Other Life - Azure Dreams GB (Japan) (SGB Enhanced) (GB Compatible)","bbfd881158bae49739dce7e60c6aeab2":"Barbie - Pet Rescue (USA)","bc56b4a1ec8b993b06405f6eccc982b3":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (GB Compatible)","bc60280596bce42d050b764b647dc39b":"Harry Potter and the Chamber of Secrets (USA, Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,Da)","bc910c865527dd524818597b4b4f7f8a":"Shikong Xing Shou (Taiwan)","bc9c451415f5317dbf404b79b059f8b2":"Shuma Baolong 9 - Baolong Pian (Taiwan) (Zh)","bcc135b000c1c54f12f4ae87c7673b0c":"Alfred's Adventure (Europe) (En,Fr,De,Es,It)","bceeb4182da245db9402dd55eedba53f":"F1 World Grand Prix II for Game Boy Color (Japan) (En,Ja)","bcf0f4e74c63c6f11e46353cf51c27dd":"Klustar (Japan) (Proto 1) (GB Compatible)","bcf3e2445346b4ef40c1278b4b46408c":"Gift (Europe) (Sample)","bd34182264a2f503d4e6982718d3bb6d":"Three Lions (United Kingdom) (En,Fr,De,Es,It,Nl,Sv) (GB Compatible)","bd564a55bee8b797bf35ded0c4d9d218":"Vegas Games (USA) (En,Fr,De) (Rev 1) (Proto)","bd81ecd1dfbc99ff8592a0169fe5e7c3":"Bitterroot (World) (En) (GB Compatible)","bda8c4e5e18070924261823e5fca655c":"Chicken Run (USA, Europe) (En,Fr,De,Es,It)","be091e7efda10e4c004eadc3a1a0f27d":"Tezhong Budui (Taiwan)","be116ebc3666cd9de17ec00cc9f74d02":"Pro Pool (USA) (En,Fr,De)","be54c9b734c4d64fd4c22c6b9fc36651":"Feng Zhi Gou II (Taiwan)","be5ddc5d5c429713232599d7303d3fce":"Taikong Zhanshi - Jingdian Ban (Taiwan)","be7c823a2c6feba614afa32606edebe5":"Puchi Carat (Europe) (SGB Enhanced) (GB Compatible)","bea053b0d658d549444a2f3e71a3e135":"Yurivania II - Josette's Quest (World) (v1.3)","bef8d1dd00650a7080e23153d2734cb1":"Hunter in the Lost Forest (World) (Ja) (GB Compatible)","bf02f5bfc27ef44ceb2878359c7a9e0e":"Cardcaptor Sakura - Tomoeda Shougakkou Daiundoukai (Japan) (Rev 1) (Proto)","bf52d7ebed63cdd9f905695504da69c1":"Startled 911 (Taiwan) (En)","bf5c2f39b42212b8af8776b12f31d466":"Rugrats Movie, The (Europe) (SGB Enhanced) (GB Compatible)","bfc30d30c1d5aadcbc71be23e90f7b8d":"Shaoling Legend - Hero, the Saver (Taiwan) (En)","c017cce5845b3c1df8f8c13589f53c16":"Koudai Yaoguai Lu Baoshi (Taiwan)","c046f62bb3baf1f8398f5e3fb93dd82a":"Atlantis - The Lost Empire (Europe) (Fr,De,Nl)","c07737d6917eef4cc044b92c89a8b048":"Sonic Adventure 8 (Taiwan) (En) (Rumble Version)","c0b8edc2ccefc3ed95cf68c84a813609":"Kinniku Banzuke GB 3 - Shinseiki Survival Retsuden! (Japan)","c0e42b4b7ba5605c3ab7b83b1e2fab6d":"Shamus (USA, Europe) (GB Compatible)","c0fb030099f7a347b676d27a8a52d5ea":"Daisu-ki (World) (v1.1)","c0fd19d90d3d876cc321074239c7334e":"Medarot 2 - Kabuto Version (Japan) (SGB Enhanced) (GB Compatible)","c13132e59221fc42ed79dbebc42f7d0e":"Robin to the Rescue (World)","c159483205c4855951fbde09af451984":"Pocket Music (World) (Proto) (Riff Sampler Test)","c16f93ef289c6524dff09b8906eef668":"Loppi Puzzle Magazine - Kangaeru Puzzle Dai-3-gou (Japan) (SGB Enhanced, GB Compatible) (NP)","c18bf7a9e03ba337658060a9392f2e3f":"Cookie's Bakery (World) (v1.0.3) (GB Compatible)","c194c03c9d31ec629fd126551f7364fe":"Luke Yingxiong 2 - Zook Hero 2 (Taiwan)","c1a1a97800c76036e5223e4098b1eefe":"Ghost Town (World)","c1b1a97f28e06ad24516538849fff8d0":"Rockman X3 (Taiwan)","c1cf2d44f37a31fa7d5cdc7d523fd145":"Mia Hamm Soccer Shootout (USA)","c1dee0a8036d61d1483a793126da3b45":"Rugrats in Paris - The Movie (USA, Europe)","c1ef769ab7525ca2b2c3b0eb88b1c49c":"Warp Coin Catastrophe, The (World) (GB Compatible)","c202f380d697a36347aa1fb628e89c4b":"International Superstar Soccer 2000 (Europe)","c20886be531dcaa1157920a7ffa51240":"UXB (World)","c21dc91b8ba1032f7fe9d46fc23638ec":"Pro Mahjong Kiwame II GB (Japan) (SGB Enhanced) (GB Compatible)","c2274789b0a45c67f1ed84a3822b4c52":"Super Gran (World)","c22a900acae07be5aa036d569281adbb":"Mayhem (World)","c23c356a1ed788942e7d0b2cdac2fd36":"Granduel - Shinki Dungeon no Hihou (Japan) (Sample)","c2432f63206255ee5e616c0d7862538c":"Ide Yousuke no Mahjong Kyoushitsu GB (Japan)","c259cf18b489d1ddecb4b7a04fedfd2e":"Super Real Fishing (Japan) (Rumble Version)","c275de8abc3dd903038737a2139b0c18":"Warau Inu no Bouken - Silly Go Lucky! (Japan)","c2a2490640ef568e6fa326ab149bfacc":"Watashi no Kitchen (Japan) (Rev 1)","c2aa8555dad975a7005ab85bd8fefc04":"Pilgrim's Peril (World) (Demo 2) (GB Compatible)","c2bdeda559f02973c213e5085fd0d4df":"Fix My Heart (World) (GB Compo 2021) (GB Compatible)","c2d515839dcbe3717d5ce5a811bea914":"Skull Nightmare (World)","c2f9d399accca79c44cc63c9f79b8c87":"Game Boy Camera Gallery - Mystery Show (World) (v1.2) (Digital) (GB Compatible)","c30add585d87114288ff8e3726c5381b":"Yu-Gi-Oh! - Dark Duel Stories (USA)","c3115fdc071cf3f656555b327a11ee9c":"Guiwu Zhe 2 (Taiwan)","c38509b681a7f16ad7831ba1f2fa6e31":"F1 Racing Championship (Europe) (En,Fr,De,Es,It)","c3987a4d734c37b7d8324f654a45de70":"Dragon Warrior I & II (USA) (SGB Enhanced) (GB Compatible)","c3a774c513a2ab5a2b134e0210b6caf1":"Autumn With You, An (World) (GB Compatible)","c3c33d274e6d7ec077ee9935da8ed7f3":"Mission Mars (World)","c3c3932d5471bc0028ade1cd7a102d43":"Resident Evil (World) (Proto 1)","c3c4b88e40538c1c99b85313bc88df6d":"Saban's Power Rangers - Lightspeed Rescue (USA, Europe)","c3e86e1dd7ad48602f5682401e5c34bf":"Game Boy Camera Gallery - Mystery Show (World) (v1.4) (Digital) (GB Compatible)","c40cc786c254ebb58ff23054e3654635":"Hali Xiaozi Dier Bu - Mishi de Mi (Taiwan)","c40dcff155901f2d6046fec19017fe37":"Nakayoshi Cooking Series 3 - Tanoshii Obentou (Japan)","c4110ff080c6730fa39c290b2e02d8a7":"Driver (Europe) (En,Fr,De,Es,It) (Beta)","c4114cdae922b6b483f6c076b822719b":"Super 6 in 1 (Taiwan) (En,Zh) (6B-001, Sachen)","c412f76e37a24cd8e006e00cc344425e":"Bubble Frog (World) (GB Compatible)","c416450b06fc81fc07ab792c07790d3a":"Friday the 13th - The GB Game (World) (GB Compatible)","c4354362e13a4dcda40b063d96bd6580":"Puzz Loop (Japan) (GB Compatible)","c43ce6e1c66e6fcfc259762a9244a63d":"Mario Golf GB (Japan)","c4583c9127d08f9a7dec2056a8c21c1f":"Zebco Fishing! (USA) (Rumble Version)","c4639cc61c049e5a085526bb6cac03bb":"Legend of Zelda, The - Oracle of Ages (USA, Australia)","c468c6d714a2d86e2f68bdcdbb40b658":"LEGO Stunt Rally (USA)","c48ab40a864707e54688b9cf8db15faa":"International Track & Field (Europe) (En,Fr,De,It) (SGB Enhanced) (GB Compatible)","c48de261bb5111681bd77ca5f0d68a1b":"Army Men - Air Combat (USA, Europe) (En,Fr,De)","c48f26f5079ad1b411c78fbcb2738d67":"Tobu Tobu Girl Deluxe (World) (GB Compatible)","c49c17b7c695d382ff80ae49899109ba":"Iron Cor - Stainless (World) (v2.0) (GB Compatible)","c4ac0427318b26d5a616025edfae68ac":"RunieStory (World) (Alt)","c4cd1e337bb76ad0f7307f5cfa1ef6bc":"Rox (USA, Europe) (GB Compatible)","c50667baee3e2abdb1588394cc5d4534":"Ohasuta Yama-chan & Raymond (Japan) (SGB Enhanced) (GB Compatible)","c53d2f538f6a5f421c87f935a42aa912":"Swing (Germany)","c569cda6ff220773ec5fce7ea38ef777":"Razmoket a Paris, Les - Le Film (France)","c576f119cb3ad8ad7b5f18e6755232f3":"Microsoft - The Best of Entertainment Pack (Europe)","c58361b88496e7ad0179b59122afd687":"Tiger Woods PGA Tour 2000 (USA, Europe) (GB Compatible)","c5e3bb77000c5d3755e816f6c0eed489":"All Star Tennis 2000 (Europe) (AZTP) (GB Compatible)","c5effc311c2248d6de58b487e729406b":"Medarot 4 - Kabuto Version (Japan)","c5fbee23b0f8fc7502046f1a9fc9587e":"Runner (World)","c64b45177c93d6465618199543e1805a":"2003 Hali Bote 2 - Xiaoshi de Mishi (Taiwan)","c663691b1eca7eeeb501c4d00b4b186f":"Dragon Ball Z - Legendary Super Warriors (Europe)","c680639fa687146d2d821bad6b7447d8":"Harry Potter 3 (USA)","c69bf9512a815c37363da0e7ff418d68":"Pocket Cooking (Japan) (Beta)","c6cc317c220b2de231ce6db9af40bd83":"NBA Pro 99 (Europe) (SGB Enhanced) (GB Compatible)","c6d4f6037588f79def05e767f5dd8893":"Sergio Kidd (World) (En,Es) (v1.995)","c712c2c9955893f00a2dcc4c9444a761":"Xzap (World)","c718cd9fa02d51d389d498ac0469c3be":"Silent Hill 2 - 20th Anniversary Demake (World) (Proto) (GB Compatible)","c720432fe26cefbb5b177920ce20cd80":"Bomberman Max - Hikari no Yuusha (Japan)","c720b196e885fe116d8b0c2154438c0e":"Uno (USA) (GB Compatible)","c721161c0ee8b4731d71448b481c93ae":"Winnie the Pooh - Adventures in the 100 Acre Wood (USA)","c72e9b28a77971fe7b6e9c6d3030b24d":"Shuma Baolong - Shuijing Ban (Taiwan) (Vast Fame)","c73016626b9e7eae04b9a53a3dc4fb78":"Legend of Zelda, The - Link's Awakening DX (Germany) (Rev 1) (Beta) (SGB Enhanced) (GB Compatible)","c73b80f668e138c6828c9bcca13a13ba":"Powerpuff Girls, The - Bad Mojo Jojo (USA) (Rev 2)","c74c40b7da1a54568f4d5ccd3eb56090":"Legend of the River King GB (Germany) (SGB Enhanced) (GB Compatible)","c74c728ce3177a3a9abc5870b6762885":"Atsumete Asobu Kuma no Pooh-san - Mori no Takaramono (Japan)","c75bf50b9fec4e89ced9a2bdfbeb4245":"Army Men (USA, Europe) (En,Fr,De)","c768e670d408f2dc1cc41f42de981087":"Bomberman Selection (Korea) (Beta 2)","c7799bcf50583c9dde914e71d559d7d4":"Fishing for Asteroids (World) (v1.0) (Mini Jam 153) (GB Compatible)","c779f71e7a64d6eab07db8668a6fe216":"Elang Chuanshuo - Shiji Zhi Zhan (Taiwan)","c7a879befd45bbc5cdab7413d86fff76":"Pokemon Puzzle Challenge (Europe) (En,Fr,De,Es,It)","c7bcdd8ace2dfac5fdce889880472f80":"M&M's Minis Madness (USA)","c7cf1e919682b3ee613dd155cc12a15a":"Dance Dance Revolution GB (Japan)","c7f39d8f17fa808ee91b21b2e45d8d90":"2003 Digimom Sapphii (Taiwan) (De)","c83e117ad79a22c6a91586a419cdf1f5":"Legend of Zelda, The - Link's Awakening DX (France) (Rev 1) (Beta) (SGB Enhanced) (GB Compatible)","c8402b8dbd686fb77fe9489e651cbd4d":"Gambler Densetsu Tetsuya - Shinjuku Tenun Hen (Japan) (Rev 1)","c84bc300653ada16fc0b95d14205d992":"Silent Hill 2 - 20th Anniversary Demake (World) (Proto) (GB Compatible)","c851452c0cb8837add5802ad214eca15":"Pokemon Adventure (Taiwan)","c888149fe40d8d760ce490a74ca98263":"Nakayoshi Pet Series 2 - Kawaii Usagi (Japan) (GB Compatible)","c8aaf7b73f70f3d600a1d6c435f8349e":"GB-Wordyl (World) (Ca) (GB Compatible)","c8b51becb4edacc3b115a81329aa12c0":"Shougi 2 (Japan) (GB Compatible)","c8f68e280f379ff7cc10c8ec4ed89142":"Powerpuff Girls, The - Paint the Townsville Green (USA) (Rev 1)","c8fafcbb7a673765ade44b404b734a92":"Bugs Bunny in - Crazy Castle 4 (Europe)","c8ff99c216603ff09733bb4f80e2bc61":"Kawaii Pet Shop Monogatari (Japan) (SGB Enhanced) (GB Compatible)","c9146a0bf581d7f99aeeac0e8dfa04df":"Hamster Club - Oshiema Chuu (Japan)","c9156b49032e63498df93e132b0307b3":"Watashi no Restaurant (Japan)","c954d72f5a9131667aaa06ae185638b4":"Player Manager 2001 (Europe) (En,Fr)","c9799917bf3c583453b3da3cd5547398":"Pocket Family GB 2 (Japan)","c987f711dfb9cba8dc1174219877360f":"Bomberman Max - Blue Champion (USA)","c9a1dab66e0b13d5835c392437b16a5a":"Monster Race 2 (Japan) (SGB Enhanced) (GB Compatible)","c9a5171978e3587475bd6ffb17300b75":"Majokko Mari-chan no Kisekae Monogatari (Japan) (Rev 1) (SGB Enhanced) (GB Compatible)","c9c2f79adc7d23bad885f9289bc12283":"Kanji Shishuu (Japan) (Proto)","c9c39627ee5049e47ce1acd67fff7b8a":"POWA! (World) (En) (GB Compatible)","ca00c843a575efd01814fcbf7d84a8dc":"UEFA 2000 (Europe) (En,Fr,De,Es,It,Nl)","ca5f9281e0652b85b68120b9d8e5db70":"Tynesoft Commodore 16 Classics II (World)","ca73fc9c13dd686a34b4807bb50d5390":"2003 King Lion Advance III (USA)","ca74e5da2f81da8280ca6aa6e6fc4788":"Dragon Ball Z - Legendaere Superkaempfer (Germany) (Beta 3) (All Unlocked)","ca9d65eba8af25068242c946c50b6753":"Yu-Gi-Oh! - Duel des Tenebres (France)","cab48584e4caeb5ba3b1260f7d64c829":"Dragon Ball Z - Densetsu no Chou Senshi-tachi (Japan) (Beta) (All Unlocked)","cae65f307fc388ea2ad237cd12a2a507":"Ravenia (World) (GB Compatible)","cae6f72a359b1088efe6c641cbae2f97":"Watashi no Restaurant (Japan) (Beta 2)","cb2969699ac7deca731d67aa473e0024":"Golf de Ohasuta (Japan) (GB Compatible)","cb2f61ea9d959f7270eec59a5eb51aff":"4 in 1 + 8 in 1 (World) (4B-005, 4B-006, 8B-003, Sachen)","cb5348c1b469d698eccddce99a16d384":"Vigilante 8 (USA) (Rumble Version)","cb5ac6ddcac8d7c7ff29bd10e1751344":"Koudai Yaoguai - Baijin Ban (Taiwan)","cb5fe636114fcb0925d08ceced82dc23":"Legend of the River King GB (Europe) (SGB Enhanced) (GB Compatible)","cb689dc8d4e95fe9d190f6f5ad1d0ed4":"Sabrina - The Animated Series - Zapped! (Europe) (En,Fr,De)","cb8eefcdd6dbce5b9cabf9b1f0d93e42":"Stratagem Hero (World) (GB Compatible)","cb9c9001a0df32e6f89216e291684836":"Antz Racing (Europe) (En,Fr,De,Es,It,Nl)","cbb8140e3f755dbff588e60dff4a2d57":"Real Pro Yakyuu! - Pacific League Hen (Japan) (SGB Enhanced) (GB Compatible)","cbc55f3bb98f8c0443917ae477e56e51":"Medarot 3 - Kabuto Version (Japan)","cbdc5112eb8b9878fa5fe905e0aca556":"Sesame Street - The Adventures of Elmo in Grouchland (USA) (GB Compatible)","cbf4a5b2ff566554b014118e3d0e3e9a":"Game & Watch Gallery 2 (USA, Europe) (SGB Enhanced) (GB Compatible)","cc130e8228a37ecc3d38f7f34aafedaa":"Barbie - Diepzee Avontuur (Netherlands) (GB Compatible)","cc17f52e5140c0d1ad892d1856d05212":"X-Men - Mutant Academy (USA, Europe)","cc1d5175df56961476d3e92761cab9f2":"GB-Wordyl (World) (Pt-BR) (GB Compatible)","cc58fc8ca9583d4d7ba3361d93a68a21":"60 Minutes til Rot (World) (v1.6b) (GB Compatible)","cc5a11a92e0a0f6f476341237efa4b10":"JumpStart Dino Adventure - Field Trip (USA)","cc7639a2269210338b52e626096a99d9":"Mary-Kate & Ashley - Get a Clue! (USA, Europe) (GB Compatible)","cca8749da97aae49def1132a6a72d047":"Carmageddon - Carpocalypse Now (USA) (En,Es) (Beta)","ccb604ca00f176ae6ca40f4fc33d8c1a":"Wizardry Empire (Japan)","ccbb56212e3dbaa9007d389a17e9d075":"Legend of Zelda, The - Link's Awakening DX (USA, Europe) (Rev 1) (SGB Enhanced) (GB Compatible)","ccdcb901229a2278d0be673472f411b9":"Puzzled (Europe) (En,Fr,De)","cd197f8f5638f3b5af7b1a7d6e88772e":"Binary Monster 2 (Taiwan) (En)","cd4ca93b289aa0d7ef6a26b848e5e06a":"Donald Duck - Daisy o Sukue! (Japan)","cd5c8be982147d4ba99376c2b60bdbcf":"Yogi Bear - Great Balloon Blast (USA)","cd679208722a1c68ec9537394d6b2d35":"MetaFight EX (Japan)","cd93b7c015782bec5c9e21494421a76b":"Heebie Jeebies (World)","cd9448b31bfcf7c14be4782e874ebff3":"Trade & Battle Card Hero (Japan) (Rev 1) (3DS Virtual Console) (SGB Enhanced) (GB Compatible)","cdb21e5e2502dc8b9d0cc0acde7841fc":"Yu-Gi-Oh! - Duelo en las Tinieblas (Spain)","cdf275a96518efd2236f0bbb5321c0e3":"Batman Beyond - Return of the Joker (Japan) (NP)","ce1b3efd190f51e089bec904e92a5f01":"Barbie - Meeres Abenteuer (Germany) (GB Compatible)","ce6cd6dccc2de88a8fdc4d08612af359":"Kanji Boy 2 (Japan) (SGB Enhanced) (GB Compatible)","ce749b7cec312369d201336c1b90ced7":"Juedui Wuli (Taiwan)","ce74c7ece3f8475cd64b9bcf5f10d465":"Jingling Wang III (Taiwan)","ce826815852f1896518c9e43e24b23e1":"Jieba Tianwang 4 (Taiwan)","ceb1a6c3ce3d2921c0fb65f420f811fa":"Bakusou Senki Metal Walker GB - Koutetsu no Yuujou (Japan) (GB Compatible)","cecc79084e6515e9c59ce8d63d49eace":"Hands of Time (USA, Europe) (En,Fr,De,Es,It,Nl)","ced299d2952ae83c7bbfbb64767e4634":"Rhino Rumble (USA, Europe)","cf0917a92643bed6798b47a84ceb928e":"Panik!16 (World)","cf0dd6ce83aa648a1aa1e6dc7c3846f8":"Tazz (World)","cf27c9d0c3633d6b805c390f49b38642":"Harry Potter II (USA)","cf364669fe4197209fde5d0c32713d53":"Bokujou Monogatari 3 GB - Boy Meets Girl (Japan)","cf43504c5f14fea347dc937efec04049":"Take Your Medicine (World) (En,Pt) (v1.1) (GB Compatible)","cf45b5414ec4515f7a1021c139edd71e":"Super Black Bass Pocket 3 (Japan) (SGB Enhanced) (GB Compatible)","cf9ed892228e2c7ddee857758ea372a9":"Rocket Power - La Glisse de l'Extreme (France)","cfa42de596faaeb161bea96d3f6b9e6a":"Test Drive 6 (Europe) (En,Fr,De,Es,It) (GB Compatible)","cfac8209d5119235f678303dfb3cc0f2":"Asteroids (USA, Europe) (GB Compatible)","cfb6a98bef18c56e466d27b885e20f8f":"F-1 World Grand Prix (Europe) (En,Fr,De,Es)","cfdd9df7434c0a8d0e0ad3fdb04ea9b7":"Vegas Games (Europe) (En,Fr,De)","cffbcb83ed97a4ff88f71ee383bd0eba":"Absolute X (Europe) (Proto)","d0009c14cfdcd02695d84d068c0d4abe":"Doraemon Kart 2 (Japan) (SGB Enhanced) (GB Compatible)","d00eb270d07d5531e31c7e81e97a3f40":"Wicked Plague (World) (v0.1.2) (Proto)","d01e66fa8d96d2c6b1fd029856d7c14b":"Kisekae Series 2 - Oshare Nikki (Japan)","d0308455ba266cc5b0cd6ca9b671cb4b":"Klustar (USA) (GB Compatible)","d054a2c3a5f203e9930d8c4b88cd6a33":"Cardcaptor Sakura - Itsumo Sakura-chan to Issho (Japan) (Rev 1) (GB Compatible)","d05a3c8e6af26686166b5049f1438dff":"Winnie the Pooh - Adventures in the 100 Acre Wood (Europe) (En,Fr,De,Es,It,Nl,Da)","d05a9da7cd90cc9822e9655fb5476d54":"Gremlins - Unleashed (Europe) (En,Fr,De,Es,It,Pt)","d076ab5be2ec4972376de685c3705ff2":"Piecrust (World)","d0ac42bca20014e1cd0fb38540c1a9c7":"Shuma Baolong - Koudai Ban (Taiwan)","d0aeac956185e9fca207aa419fd769ea":"Closet Monsters (World) (GB Compatible)","d0c1449229a8208d0e6753fa05685df3":"Dinosaur (USA) (Beta)","d0c6ffc3602d91c0b2b1b0461553de33":"Bomberman Selection (Korea)","d0ca48aee3ffb5fd44fc4d4359c5d44b":"Polaris SnoCross (USA) (Rumble Version)","d106d2513aa3bcf6ba34b7f8cbbffe28":"Ou Dorobou Jing - Devil Version (Japan) (SGB Enhanced) (GB Compatible)","d10d56951b817115477d72a855d7c025":"Doraemon no Study Boy - Gakushuu Kanji Game (Japan)","d14c8cbcca2510a3c92107312999bebc":"Backgammon (Japan) (GB Compatible)","d154381bd849d7a04cb90e789f32bb8e":"Adulting! Soundtrack (World) (GB Compatible)","d1934b308085c92b2ee492faa0d159c2":"John Romero's Daikatana (Europe) (En,Fr,It)","d197d271f067afb8a4e41c1336e03098":"Zhizhu Xia III - Dianying Ban (Taiwan)","d1b2c36def4b361645eae44f6a0c53ea":"Gifty (Germany) (En)","d1bf9c15a1499231d6f2a8f0c4dd9041":"Pokemon - Mewtwo Strikes Back (Taiwan) (Zh)","d1e875cb7dac0092e83b9e7799b06653":"Star Wars Episode I - Racer (USA, Europe) (Rumble Version)","d219a65aa70fd9e1e75c65bdf97913da":"Mary-Kate and Ashley - Crush Course (USA, Europe)","d240328faacf5583804a30b7003743b3":"Rats! (USA) (En,Es) (GB Compatible)","d26054cdb11d2ea6f4e991de75b30164":"Dark Winter Wander, A (World) (GB Compatible)","d2711ff066f40c4e6c471b79da0f08b7":"Marble Madness (USA, Europe)","d2731c794aaa3fb4700c83727d8583e2":"Watashi no Restaurant (Japan) (Beta 3)","d29f8f062aa966917f0933365f3682ef":"Sergio Kidd (World) (En,Es) (v2.013)","d2a65d336cec301779641a1699ad96d8":"Super Jacked Up Tomato Face Johnson (World) (v2.3)","d30ad90e521ff7c4105129f25bde6dcf":"Chromanoids (World) (v1.1)","d315dc5767c97e99d3d2aec84d6ea226":"Jissen ni Yakudatsu Tsumego (Japan) (Rev 1)","d31bad86d4c8397c85ecf1c8338afe66":"Cross Hunter - Treasure Hunter Version (Japan)","d34abda546c5f42e40a2eeb28d029de4":"ESPN National Hockey Night (USA)","d3c08c1eb4f93b64c30fcb0bb7ff8924":"Zelda no Densetsu - Fushigi no Kinomi - Daichi no Shou (Japan)","d3c6c44a4f6021b4d5a6454a87af9a6c":"Snoopy Tennis (Europe) (En,Fr,De,Es,It,Nl)","d3edbd375df5b18b6dc21380fe1374ee":"Dream Shark - Part 1 (World) (Beta 2) (GB Compatible)","d40ebe25a1447c9e08f66682fc9085d2":"Dragon Ball Z - Legendaere Superkaempfer (Germany) (Beta 1)","d4255175d7cbca6080c31ec839893d05":"Painter (Europe)","d4353731d8d6b29c0fa9969c767994a6":"Mud Warriors (World) (GB Compatible)","d455f4ae266279daa36f3f3e54569239":"Monster Farm Battle Card GB (Japan) (SGB Enhanced) (GB Compatible)","d4662b64f1ecb3683f87c6439d1e6061":"Halo - Combat Devolved (World) (GB Compatible)","d4876d692dcb6ca68786e1df3af361a6":"Kinniku Banzuke GB - Chousensha wa Kimida! (Japan) (SGB Enhanced) (GB Compatible)","d493254422eb969a504242529a8780a0":"Shuma Baolong 02 4 (China)","d4b6a73e0b9c9bd7dc88baa36c839723":"From TV Animation One Piece - Maboroshi no Grand Line Boukenki! (Japan) (Beta 1) (SGB Enhanced) (GB Compatible)","d4ecb934836df8e3f26af4c976cae730":"Dawn Will Come (World) (GB Compatible)","d5161ed7380af488b22302691c9a33cd":"Keep the Balance (Europe) (En,Fr,De,Es,It)","d53652b59f1d8b50d1b30d75a44f4135":"Mahjong Joou (Japan) (SGB Enhanced) (GB Compatible)","d55433c70617d18bb078426e8cd99708":"Anpfiff - Der RTL Fussball-Manager (Germany)","d56e7601673af3c0f78def06c34c8efa":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (1998-07-05T215532) (GB Compatible)","d5961426b8ea089e2f74a91a747acfdb":"Ready 2 Rumble Boxing (USA) (Rumble Version)","d5a4819a4ca8c2d1baaf340abff03430":"Adventure (World)","d5a558f3f63771ac1e40d53976e090ef":"Bugs Bunny & Lola Bunny - Operation Carrot Patch (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible)","d5aef2fb975eebf3b66ea89c469d0d7c":"Warp Coin Catastrophe, The (World) (v1.1.2) (GB Compatible)","d5b4fd7fd703b447bcb8e1f78865208f":"Itsudemo Pachinko GB - CR Monster House (Japan)","d5cde4a6f4877a71b06278a4802c7cce":"Rox (Japan) (En) (GB Compatible)","d5e1af0598a8db7b93f57eb2909edc17":"Flintstones, The - Burgertime in Bedrock (Europe) (En,Fr,De,Es,It) (Beta)","d5ebdbeda4156b34e3c0f01d55a4221c":"Frogger (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible)","d5f373b287d29e882a1f1182542d5b68":"Spy vs Spy (USA)","d60bc0b1aa3f89229420f6685aafdeb8":"Zap'em (World)","d62e0c703bc1a84e0fce512f4b9c46e7":"Monsters, Inc. (Europe) (En,Fr,It)","d6311339384cb70c35975c8d30a1cd98":"Crazy Bikers (Europe)","d63504ea68f55d3c290cd01d71d4d1cc":"Deja Vu I & II - The Casebooks of Ace Harding (USA)","d645be8abbdf5ae2271ec50522edf274":"Don't Forget About Me (World) (v1.1) (GB Compatible)","d69fdc8dafd38ab4f48cc6a6b8fa1df9":"Hercules - The Legendary Journeys (Europe) (En,Fr,De,Es,It,Nl)","d6a568f56d59772c7a83b5e8504c86d6":"Melanie and the Magic Forest (World) (v1.1) (GB Compatible)","d6acc2206f227aacd81b22edcab2da1c":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (Beta) (SGB Enhanced)","d6ce41d6e3593ebb7bd5298e959cee8a":"Buried Behind the Cabin (World) (GB Compatible)","d6dce5c8dc02ce77d58f8852653e42e4":"Pitfall - Beyond the Jungle (USA, Europe) (GB Compatible)","d6e59ad9058f410a56356accce0cb488":"Space Invasion & Painter (Europe)","d6f78d93f6c784ed58e43c1c6779f2e4":"Bitterroot (World) (Es) (GB Compatible)","d710cd23e7e38023297d04e935dbebae":"Super Robot Taisen - Link Battler (Japan) (SGB Enhanced) (GB Compatible)","d73b7f013ab9e347398683363f720ab7":"Hamster Club 2 (Japan) (GB Compatible)","d741a2a13d654e45a9b24be6e202a32c":"RunieStory (World) (v1.1)","d794a2c5f75d6b2362aebe684935c694":"Tyrannosaurus Tex (World) (Piko Interactive)","d7a018169bc80c1de1e33c024e0991b7":"Cuthbert in the Cooler (World)","d7b5b58cec32e37c4d29336f4b7c61b7":"Daikatana (USA) (Proto 2)","d7b8309532d3316447a9202cb2f19018":"Bob the Builder - Fix it Fun! (Europe) (En,Fr,It)","d7e62b77572a4db9b8d533141c999ff8":"Shuma Baobei - Chao Mengmeng Fanji Zhan (Taiwan) (Zh)","d7f3a39d4fde196fbe2ddbb2a6e575a3":"Holy Magic Century (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible)","d7f63bbb351a95d73d085a58c8e9f449":"Mario Tennis GB (Japan)","d80951a01c8e329fd3ccc99f95808857":"Turbo RC Racing (USA) (Proto)","d81945176908cc834d3be242528dde96":"Liberator (World)","d849d85a81be386a0617bce591cf1c40":"Death Race 16 (World)","d8595af2c6a3dbb2659acadbc9440515":"Titi - Le Tour du Monde en 80 Chats (France)","d864d40e51fea6c3ed7e4e340f4613fd":"Pocket GI Stable (Japan) (SGB Enhanced) (GB Compatible)","d8800afecf6c190119f508d450f456df":"NASCAR Heat (USA)","d89dcd9cf1a9f6ec694da01b59541401":"Feed IT Souls (World) (v1.3)","d8de3e22c969198f8701bf861cc60974":"Game Boy Gallery 2 (Japan) (Possible Proto) (SGB Enhanced, GB Compatible) (NP)","d94e22b4c08ab3c7b1929f5490adcbf2":"Frogger (USA) (GB Compatible)","d952041d1970551ee4bedbe341556e6f":"Totsugeki! Papparatai (Japan) (SGB Enhanced) (GB Compatible)","d9575286a0da1da5f6036f649024298c":"Toobin' (USA)","d97055e4a2fd4624fc924c4834ace35e":"Alone in the Dark - The New Nightmare (USA) (En,Fr,Es)","d987545c6662cab8f28eca59b456f2b7":"Magician's Curse, The (World)","d99a820e6fabc76264ee1a08b41ef794":"Men in Black 2 - The Series (Europe) (En,Fr,De)","d9d85b81d1b0b4d3c86c95a6e1846f5a":"Action Man - Search for Base X (USA, Europe)","d9ffed48998c978d6bad4a23ae2567b9":"Pocket King (Japan) (SGB Enhanced) (GB Compatible)","da3fe9c44254b6c2dadcf58187d898ef":"Emo Dao (Taiwan)","da5586315ca857071d557a8fde26c108":"From TV Animation One Piece - Yume no Luffy Kaizokudan Tanjou! (Japan) (SGB Enhanced) (GB Compatible)","dabfbdc9aba5f2edc21f884c52881e0d":"Medarot 3 - Kuwagata Version (Japan)","dad39d89a24962b0457dd8e65b7c6ad1":"Muchang Wuyu GB 6 (Taiwan)","dae7b7625d41d8a06266b09924154bb2":"R-Type DX (USA, Europe) (GB Compatible)","db1aeaa7135bd5707dbbccc427808cd7":"Street Fighter Alpha - Warriors' Dreams (USA)","db87fcfe3cc0fecd88ac09dd2f48c845":"Everlasting Summer (World) (Proto)","db9d9e20af969a2ee248ae9af42a5d36":"Sesame Street - Elmo's ABCs (USA) (GB Compatible)","dba35ac5202ee0b8578a1a275ee13b93":"Crazy Golf (World)","dbada1fdfaba283bede36852843f5ed8":"Dance Dance Revolution GB - Disney Mix (Japan)","dbc9bc98ad0f7730b9136d98992ae656":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Rev 2) (Beta) (SGB Enhanced) (Alt 2)","dbcbac05906548b7c7fb8c5639fb7910":"Dicee! (World) (v1.4) (GB Compatible)","dbd7bc8a47d78e84016f0c240e6aa179":"Roswell Conspiracies - Aliens, Myths & Legends (USA) (En,Fr,De)","dbf74341f9d23fe32899ebc9f4bf20c8":"Dragon Ball Z - Densetsu no Chou Senshi-tachi (Japan) (Beta)","dc131a70357d28bc43649c4ad6cd4397":"Dukes of Hazzard, The - Racing for Home (Europe) (En,Fr,De)","dc15bf4d545a2c537f46598cb9204daf":"Solomon (Japan)","dc1680ac734e67945bc4ce002b15d4da":"Harry Potter 3 - Shen Qi Zhi Guang Lun (Taiwan)","dc1ab5d860adc30b57fdadcaf04bf9ef":"Sheng Shou Wuyu - Shenlong Chuanshuo (Taiwan)","dc640627128579ee52c3fb0ff38a96f0":"Supercross Freestyle (Europe) (En,Fr,De,Es,It)","dc835fa5664aa83ff90dc2ff6cc83f24":"Bust-A-Move 4 (USA, Europe) (GB Compatible)","dc94079146ee90d7dd7d72280a3faad5":"Donkey Kong Country (USA, Europe) (En,Fr,De,Es,It)","dca07583bc53befabea1d5467d4ec4d2":"Klustar (Europe) (En,Fr,De,Es,It) (Beta) (GB Compatible)","dcc4505e35d2d4780a56d39c8d268e1c":"Super Donkey Kong 5 (Taiwan) (En) (Rumble Version) (Alt)","dcc73cdf818a54657230bf552504abe1":"Find Out (World) (GB Compatible)","dccb2adec6b97ac35614414a427abdbb":"Barbie - Pet Rescue (Europe) (En,Fr,De,Es,It)","dccbe12f558f971148eb147c32318431":"Madden NFL 2000 (USA, Europe) (Beta) (SGB Enhanced) (GB Compatible)","dce795b0fe13ca2617edb2273cccf0be":"Shin Megami Tensei Devil Children - Shiro no Sho (Japan) (Rev 1) (Proto)","dd1505a3f4d7289b37107c6a98931eb4":"International Superstar Soccer 99 (Europe) (SGB Enhanced) (GB Compatible)","dd34a89c4839949f4a983786ec63a993":"Yu-Gi-Oh! - Racconti Oscuri (Italy)","dd52cfda22b54bb69a4274b85930934c":"Speedy Gonzales - Aztec Adventure (Japan) (Proto) (GB Compatible)","dd53d483612e848d5f636aac67665f72":"Puzzle Bobble Millennium (Japan)","dd6b704cde7ff9516c09ba86833a7f9f":"Aardvark (World)","dd818318641f6c81b8254bc9e04e99af":"Space Baby (USA)","dd8b136f46a0c2ce1381506396e77fde":"Wai Xing Tanxian Zhi Xingqiu Dazhan (Taiwan)","dd9e7c40f202f2c3963930e195d75f4d":"Batman Beyond - Return of the Joker (USA)","ddc44d19f27100e9e9cf440820436152":"Hissatsu Pachinko Boy - CR Monster House (Japan)","dddbe98001059d52284539a631094799":"Trouballs (USA) (Beta)","ddecba0a4e0d1373fad858316faf6f33":"Dinosaur (USA)","de204ad9ae3e29cf2c06ceb372ec9cd2":"Pocket Puyo Puyo Sun (Japan) (SGB Enhanced) (GB Compatible)","de3c7f4b7df2d8c95ea1c5c622c332e8":"Loppi Puzzle Magazine - Hirameku Puzzle Soukangou (Japan) (SGB Enhanced, GB Compatible) (NP)","decde704dfe0a7e4644e3f6c4c9474f3":"Nyghtmare - The Ninth King (World) (v0.1.2) (Beta) (GB Compatible) (Alt)","dedb5679bb7fd73893272195e3c48d9e":"Zhihuan Wang - Shoubu Qu (Taiwan) (Zh)","deef0140c464bff3435061b90e01b70d":"Hamster Paradise 2 (Japan) (Rev 1)","df12fd885c09702ef5f02bfd2a5e1ec3":"Roadsters '98 (USA) (Proto) (SGB Enhanced) (GB Compatible)","df15cf120ba0db664adab8d52f0e4d57":"Rayman - Mister Dark no Wana (Japan)","dfc1c1fa9731807aa8bb5aa7d4849984":"Lemmings VS (Japan)","dfd98373a954974a62043f85fc1e85ae":"Loco-coco (World)","e019b0790ef6e7b2dd39afdbec8ba651":"Glocal Hexcite (Japan) (SGB Enhanced) (GB Compatible)","e0245d992101be481c355e3e2c2cbb83":"Hoyle Casino (USA)","e027bb984964e07be2feeaa712715987":"Dragon Dance (Europe) (Proto) (SGB Enhanced) (GB Compatible)","e041a65713ac7070c9d16cb6501e1a6e":"LEGO Alpha Team (Europe) (En,Fr,De,Es,It,Nl,Pt,Sv,No,Da)","e0b8537949322d3233cc72ee8c1fce15":"Astro Plumber (World)","e0ee709c3bbe5c59be87944dee1c7dcb":"Boing! (World)","e12fecf7cfa7aa217fb30c16fba18499":"Block Droppin' (World) (v1.0) (GB Compatible)","e155c9d08645a64fb63cd09bc3f56edc":"Escape from Vostok (World) (Proto) (GB Compatible)","e16141de4a31074438eb44e808fb6789":"Hime's Quest (World) (Digital)","e1836b1ec913a6bfa1e02fc250727fa9":"Jisedai Begoma Battle Beyblade (Japan)","e1ae3e808f17b972d063a0bb0d58888e":"Aventures de Buzz l'Eclair, Les (France)","e1af297b7083e1958352bbc5655ef480":"Hana Yori Dango - Another Love Story (Japan)","e1bf59102bcd5e3601f4b24b3e873fd2":"Toki Tori (USA, Europe) (En,Ja,Fr,De,Es)","e1da550bf08b9db2ac142da1a76b7456":"Bub-O Escape - Tournament Edition (World)","e1de60430a3de8b26f68e7472d9cae58":"Jet Set Willy (World)","e1ef19561d4f816c0becc3380139af58":"Dusky Dungeon (World) (v0.2.0) (Proto) (GB Compatible)","e1fcd22f776dc38d0bcffa697794cb1e":"ESPN International Track & Field (USA)","e20f2057c2143993c0f844097d0086d5":"Extreme Sports with the Berenstain Bears (USA, Europe) (En,Fr,De,Es,It)","e24141ed6fc94b149bbf43b4bd9658e8":"Atlantis - The Lost Empire (Europe) (En,Es,It)","e260c0118fd3a6b4dfbec651d156bf3a":"Host, The (World)","e27e5d2079fb84a439dbafda7c6e2ef1":"Konchuu Fighters (Japan)","e2b6cfc93021d361ab1cac347499b493":"Hollywood Pinball (Japan) (GB Compatible)","e2b6edd74568e18e37356a1bd75c216b":"Starseed 2 (World) (GB Compatible)","e2f33aaf29750f1142b2b6017b454bd4":"Zoids - Jashin Fukkatsu! Genobreaker Hen (Japan) (SGB Enhanced) (GB Compatible)","e31b25f35267460f474f7079e445025d":"Grand Casino (Japan) (Proto)","e333c74332067d817732f06cf301d736":"Waternet (World) (Batteryless Generic Save Flash Cartridge Version) (GB Compatible)","e35a91c87173b3ddd332b94a85f67257":"Kikstart (World)","e3809354341cfb1f2ebb3e4dd1bc8828":"Yu-Gi-Oh! Duel Monsters 4 - Battle of Great Duelist - Yuugi Deck (Japan)","e3846151ea7d911c9b0b76de2fe5239a":"Blue's Clues - Blue's Alphabet Book (USA) (Rev 1) (Proto)","e384f3789ef10051159217048c62fb16":"Xtreme Sports (World) (Limited Run Games)","e39b039557a7c0629553ce7fed602bb3":"Legend of Zelda, The - Link's Awakening DX (Germany) (Beta) (SGB Enhanced) (GB Compatible)","e3c757e5f4261e962cacc8a999ec0f87":"NBA in the Zone 2000 (Europe)","e3d17744fcbb85d392b746ebb9f49147":"Boxing Master (World) (Proto) (GB Compatible)","e3edbfe8aba5dd198a9e2e0f0141785b":"Tanimura Hitoshi Ryuu Pachinko Kouryaku Daisakusen - Don Quijote ga Iku (Japan) (SGB Enhanced) (GB Compatible)","e4064df09a734c3ed04f69a970715f6f":"Porklike (World) (v1.0.13)","e43684f551fd471b7dd2d694748cdde1":"Tom and Jerry in - Mouse Attacks! (Europe) (En,Fr,De,Es,It,Nl,Da)","e4594f3d22fce6b71642a9f3049a6054":"Denki Blocks! (Europe) (En,Fr,De,Es,It)","e4874674056451f1df22c2cbf7a25f93":"Zok Zok Heroes (Japan)","e49185b5b5268f17a923a459e84bed0d":"Taisen Tsume Shougi (Japan) (NP) (GB Compatible)","e4c1111dcc4dc23860ce016daf584dc1":"Antz (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible)","e4cf23360373168bacf6a7e4925a27ef":"VR Sports - Powerboat Racing (USA) (Proto)","e4e5488d10d69c4c12eb2a9a522ffc7b":"Tonka Raceway (USA) (Rumble Version)","e51c03fc9ed1a31a9e2be404f9e01068":"Deja Vu I & II - The Casebooks of Ace Harding (Europe) (En,Fr)","e56e69bc23281c85a8a17a48a6f2abdb":"Tyrian 2000 (USA) (Proto) (GB Compatible)","e585b4fc4acf013599938e3d84e4afe3":"StarFox - Grounded (World) (GB Compatible)","e599e5aab2cfe2fc95d340a5c910d87e":"Doraemon no Study Boy - Kanji Yomikaki Master (Japan)","e5a5ff83ab27aa5b20d40dd2ddf3100d":"NBA Jam 2001 (USA, Europe) (Beta)","e5bfbe8dd1f3017834496626208b9d7d":"Super JetPak DX (World) (GB Compatible)","e5cf736f37cbbbbe6957e172de5626fc":"DX Jinsei Game (Japan)","e5d8aea67aef0ee94acf1ed35900ea74":"Azarashi Sentai Inazuma - Dokidoki Daisakusen! (Japan)","e6007f4f4d8d671d7c94390be47e6dfa":"Agent B (World) (GB Compatible)","e6009a3556e22fa2f42134999759d366":"McDonald's Monogatari - Honobono Tenchou Ikusei Game (Japan)","e6149202059598ffb69cf5ad6fff0da7":"Tiledentity (World) (v1.0) (GB Compatible)","e6534476aa084c2933a03392e7202473":"Pancho (World)","e69da049d745b89fd28c79fe20a2b861":"Granduel - Shinki Dungeon no Hihou (Japan)","e6a3d906bc47516138ca14578601af02":"Dokidoki Densetsu - Mahoujin Guruguru (Japan)","e6a4ef193f15c78fa2463a693bfb0928":"Trickboarder GP (Japan)","e6b7301f1f8b127fb6a493c50a0c233c":"Shuihu Shenshou (Taiwan)","e6cfb4de1afee7579d21938eba5a69b3":"Grave Encounter, A (World) (v1.3) (GB Compatible)","e6e14aa92b3969da7edd57abef060ba2":"Carnivale (USA) (Proto)","e6f36322946499f2f55b724c3db916cd":"Bomberman Quest (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible)","e718083d717d4262d3f26eba4040f8e4":"Action Replay Online (Europe)","e7719bb0d0619e2e5fb10dab75f78654":"NBA Hoopz (USA)","e7775efddf4d0a5e6a9e8534f5efc2ef":"Dokapon! - Millennium Quest (Japan) (SGB Enhanced) (GB Compatible)","e77bbfc1ffb3c846752410a371e098ce":"Chibi Maruko-chan - Go Chounai Minna de Game Da yo! (Japan)","e79ce8c2b2e9ea0c0907cfbfadaa8744":"LEGO Alpha Team (USA)","e7c022031cb882912e81970eb63d4f61":"Beatmania GB (Japan) (SGB Enhanced) (GB Compatible)","e81e4977a1380a6a0bac49bfd9e04671":"Wizardry III - Diamond no Kishi (Japan) (En,Ja)","e84bf72a6a82a76237813e3701551ee8":"UEFA 2000 (Europe) (En,Fr,De,Es,It,Nl) (Beta)","e89653bd33d07e1a50a3ff78c2818a53":"NBA Show Time - NBA on NBC (USA)","e8a7906583a479b95e3bc26677f485a0":"World Cup (World)","e8af8eb59a3f8ab95c68769e651ed138":"Climb It (World)","e8b4a4231325adc851229bbde40d2284":"Top Gun - Fire Storm (USA, Europe) (En,Fr,De,Es,It,Nl)","e8bb2b9629f352fdc0f59a7bffdd66bb":"Meteorite (World)","e8e8c096bebc6b6412fa810422ffd872":"Pokemon Trading Card Game (Europe) (En,Es,It) (Rev 1) (SGB Enhanced) (GB Compatible)","e8ea4eeae15080840086fdc5f047b69c":"Slime Dungeon (World) (GB Compatible)","e91752013f0fb62cf0e52873c412ceeb":"Bibi und Tina - Fohlen Felix in Gefahr (Germany)","e91fd46e7092d32ca264f21853f09539":"Legend of Zelda, The - Link's Awakening DX (Germany) (SGB Enhanced) (GB Compatible)","e923107e9c8b13a769371d041ee383d2":"Jankyuusei - Cosplay Paradise (Japan)","e952d78a439e47ab4d77b563973797d5":"Great Battle Pocket, The (Japan) (SGB Enhanced) (GB Compatible)","e95cf6f2c0e1a7276f37ad8926b3f901":"Moomin no Daibouken (Japan) (Beta)","e96fad823b6771c00c04dab88ede40bb":"Katou Hifumi Kudan - Shougi Kyoushitsu (Japan) (SGB Enhanced) (GB Compatible)","e98124b30408c00786068387353e39e5":"Bust-A-Move Millennium (USA, Europe)","e98b6a7bb91bb0a7e80e40985eefb1d0":"Emperor's New Groove, The (USA)","e99687d3558fd7fc4af702ea1abd9957":"Casper (USA)","ea1d92074995590ebe4766f28f476db9":"Sofia the Witch - Curse of the Monster Moon (World)","ea3cfb50763df7977b3e45b280066742":"Kakurenbo Battle - Monster Tactics (Japan)","ea991b38b2a74d10c6d075f509d9b555":"Meitantei Conan - Norowareta Kouro (Japan) (SGB Enhanced) (GB Compatible)","ea9f362f629124c9423a8d9ba933eced":"Rayman (Europe) (En,Fr,De,Es,It,Nl)","eac27e6d4cd1d38d07f2a18ad8169af1":"Logical (USA)","eb14f75bda32d51b8f5751869743bf7a":"Nakayoshi Pet Series 1 - Kawaii Hamster (Japan) (GB Compatible)","eb76fda958f100fb791111b928ffe46f":"Lucky Luke (Europe) (En,Fr,De,Es)","eb8a8817e782cddb4fe0474922a3405d":"Nakayoshi Pet Series 3 - Kawaii Koinu (Japan)","eb8c8c397482963a027aad7bcb60706a":"Egbert (World)","ebb19fe17fd6d13d9d52239e8da9711a":"Rockman X - Cyber Mission (Japan) (GB Compatible)","ebed797f57ecff8918a4a13de340d83d":"Don't Forget About Me (World) (GB Compatible)","ebfe05828463cc004898e6a95ee57fea":"Keitai Denjuu Telefang - Speed Version (Japan) (GB Compatible)","ec0985bdad4b519c492f07f2d01f1613":"Puyo Puyo Gaiden - Puyo Wars (Japan) (SGB Enhanced) (GB Compatible)","ec11bd38c10913047913eab36b06c2a0":"Shantae (World) (Limited Run Games)","ec1613010e8f9e0bd729f37248c435a8":"Out on a Limb (World)","ec1a1e432cba04e33c408a7dad314997":"V-Rally - Championship Edition (Europe) (En,Fr,De,Es)","ec1c9035be5c529795048546b1f35ca5":"Full Time Soccer & Hang Time Basketball (Europe)","ec39462e39e3cbcabe03667fabf12d5a":"Sabrina - The Animated Series - Zapped! (USA, Europe)","ec3ef08bb6d73b1b57958322d1085dad":"It's a World Rally (Japan) (SGB Enhanced) (GB Compatible)","ec648c50e1bc337c399ab40b58b40509":"WDL - World Destruction League - Thunder Tanks (USA) (En,Fr,De)","ec64d367cdc02cfb9019d058ab5a0fdb":"Pocket Densha 2 (Japan) (SGB Enhanced) (GB Compatible)","ec6d8099aa51acc791e3846558c81ebb":"Roadsters (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible)","ec764e03228d212ca794ac0b9df62857":"Super Mario Bros. Deluxe (USA, Europe)","ecf0d8121278d810bf40c4de8a2a080b":"Game Boy Wars Pocket Tactics (Japan) (Beta)","ed002e5b29f7082a6a37191bf5af1d08":"Pocket Cooking (Japan)","ed23c6ab13f2397becf476509e7e1802":"Xian Dan Chaoren - Ultraman (Taiwan)","ed351bbc74e47f7adb4a926c8c59af8b":"BIG2SMALL (World) (Digital) (GB Compatible)","ed517a9923865f4e4945ca4095313fe2":"Dancing Furby (Japan) (GB Compatible)","ed5a1efc26ceb76f61c133303173ab31":"Sanguozhi Wudai (Taiwan)","ed679655b3721327ea36c857c554427a":"Konami GB Collection Vol.2 (Europe) (GB Compatible)","ed842f9b8786b9f7d8cfa082a4cf47b9":"Gedou Jian Shen - Soul Falchion (Taiwan) (En)","edf021b521a496fe7afc5e15949f5c80":"Fish Files, The (Europe) (En,Fr,De,Es,It)","ee133ab2f9ea5b18e9a19ce9b599a883":"Paperboy (USA, Europe)","ee37c79e8df6475d90e99e527823f92f":"AirForce Delta (USA)","ee44254c96fa9318a26a1a5b0a9b48fe":"Montezuma's Return! (Europe) (En,Fr,De,Es,It) (GB Compatible)","ee4fc61afd79c8a20e57fa04f49ad1b3":"Mummy Returns, The (Europe) (En,Fr,De,Es,It)","ee55d33109a6cd761fb3b5f7bc21c6c0":"Xploder GB (Germany) (v1.2.2G) (GB Compatible)","ee5fe52488da10e838a123649d33d809":"Klustar (Japan) (Proto 2) (GB Compatible)","ee6f509cea8b3350c6171d5204f2a797":"New Addams Family Series, The (Europe) (En,Fr,De,Es,It,Pt) (Rev 1) (Proto)","ee700a60bf4e72287e0b9eb377e981d2":"Dragonmaster (World)","eeb8a7311a959035e8a3c3822329ea48":"Sakata Gorou Kudan no Renju Kyoushitsu (Japan) (SGB Enhanced) (GB Compatible)","eec6986c0380b1071a2ca6d25a29b8d4":"Spy vs Spy (Japan) (Rev 1) (NP)","eec8ef2cedff516fa121f6b1698eac31":"Shishang Chaoqiang RPG + Gedou + Yizhi Ban Zuhe Ka 18 in 1 (Taiwan)","ef032b6f603b3a290a91d40cb9c4b3e6":"Toy Story 2 (USA, Europe) (SGB Enhanced) (GB Compatible)","ef24106662ae769dba0c410933736332":"Golf Daisuki! (Japan) (En) (SGB Enhanced) (GB Compatible)","ef2a181785cc591ac53e960c68e14216":"Donkey Kong 2001 (Japan)","ef451d968a8d2494840385c85c128e6f":"Alone in the Dark - The New Nightmare (Europe) (En,Fr,De,Es,It,Nl) (Beta)","ef5566473e95b1d4413b0e2e858ac56d":"Pokemon - Mewtwo Strikes Back (Taiwan) (En)","efa5853ddae4ab47301b2ca0416583a9":"Chiki Chiki Machine Mou Race (Japan)","efab73ec361b19896bfe5a09ceb53c25":"Nyghtmare - The Ninth King (World) (v0.2.5) (Beta)","efc589169180e3b278be99af8cae1a64":"Majokko Mari-chan no Kisekae Monogatari (Japan) (SGB Enhanced) (GB Compatible)","efe18a36fc03264e23ccbb81fef2beba":"Honkaku Hanafuda GB (Japan)","efeb35261663e96d216615704c469a77":"Green Beret (Unknown) (Proto 3)","eff2f1335219f77a8025e881fecf538c":"Cult of Blood, The (World) (Demo 4) (GB Compatible)","effc5fcd69d188d423c2ddf9ee0f7536":"Shi Mian Maifu - Tianlong Pian (China)","f012b129cebd445c8b63f4ddc475bb26":"Diva Starz (Germany)","f0462eba75d879c40668e20d1dbdb612":"Gex - Enter the Gecko (USA, Europe) (GB Compatible)","f0538d924e04ce032c469268c58b1c8b":"Rockets Vs Cars (World) (GB Compatible)","f0568c53b8ec915dda258955a531f37b":"R-Type DX (Japan) (En) (GB Compatible)","f0656cf3aa3d6b539fb1b7da0fd27617":"Warriors of Might and Magic (USA) (En,Fr,De)","f0691682463eb9d3ea942a2f60f29aa9":"Maus, Die (Europe) (En,Fr,De,Es) (Beta)","f09214d17150911af6aacbe5d89bc00f":"Soreike! Anpanman - 5-tsu no Tou no Ousama (Japan)","f0ae420d6ce590baac5b2ca03f4b2ba6":"Chessmaster (USA, Europe) (GB Compatible)","f0bfbded7125dd312eaf36d16c1556a1":"Rampage - World Tour (USA, Europe) (GB Compatible)","f104769941c0c25e8b468c2ae274d632":"All Humans Must Die! (World) (GB Compatible)","f16c1e8b98e0dbe969214fe3df4562d1":"Sylvanian Families 2 - Irozuku Mori no Fantasy (Japan)","f18339f4c836530bea39086969d28964":"Qui Qui (Japan) (GB Compatible)","f19153c5bc422a2b1b13a4b9ff5d7bd9":"Little Mermaid II, The - Pinball Frenzy (Europe) (En,Fr,De,Es,It)","f1a64423cc8cc50338ab69feee3199f6":"Hugo 2 1-2 (Germany) (GB Compatible)","f1b1776986bbadfa4e6771395fbc6214":"E.T. - The Extra-Terrestrial and the Cosmic Garden (USA)","f1bb0127347994b46258adbda0dc0b16":"Game & Watch Gallery 3 (USA, Europe) (SGB Enhanced) (GB Compatible)","f1e27ad24bb3bf71d1d7b048ae21f0b5":"Uno (Europe) (En,Fr,De,Es,It,Nl) (GB Compatible)","f1f013cd591bc4ea77305bbc9f8cbb3c":"Pokemon - Silberne Edition (Germany) (SGB Enhanced) (GB Compatible)","f204617e057286c4320529bf6679740f":"2003 Digimom Sapphii (Taiwan) (En)","f23a400ac0ac9c33fffb464a82ee9ba9":"Pacifist, The (World) (GB Compatible)","f270519e6357bc32fd07fc6386e14dec":"WWF Betrayal (USA, Europe)","f274752501c49963b509168cb9cdd818":"Kanji de Puzzle (Japan) (GB Compatible)","f2842c70cae57f3e7619966bd1dae886":"Pocket Golf! (USA) (Proto) (SGB Enhanced) (GB Compatible)","f2be814c8bf513e8a709254d9b72d361":"Supershot Golf Robot (USA) (Proto) (SGB Enhanced) (GB Compatible)","f2dc6c4e093e4f8c6cbea80e8dbd62cb":"Legend of Zelda, The - Oracle of Seasons (USA, Australia)","f2e24776d93082362c9b435abc167d89":"Kirby - Tilt 'n' Tumble (USA)","f2f1e41f5843c54c35e731445d6a2beb":"Tiny Toon Adventures - Dizzy's Candy Quest (Europe) (En,Fr,De,Es,It,Nl)","f32210eedc7a619a09339764887e2b93":"Wild Thornberrys, The - Rambler (USA)","f32b31ad27ffb8f40c93f92675b72bd3":"Caise Gedou 24 in 1 Diannao Huamian Xuan Game (Taiwan)","f3414d53473e2cc43347774cc5f40495":"Konami GB Collection Vol.4 (Europe) (GB Compatible)","f36a0ed25a601c039b1171d9daf241d6":"Crystalis (USA)","f36cd3e0a8a8eacf4a9c5a2a755f237e":"Wetrix GB (Japan) (SGB Enhanced) (GB Compatible)","f3ab5b9cd7e7d9478cad2cad85f3a3e6":"Knit-Wit (World) (v1.1) (GB Compatible)","f3da15bac37fd41582d8901d55fdc203":"EuroSport XS Racing (Europe) (Proto) (GB Compatible)","f3daa6ce7708668405674c735bea9745":"Monsters, Inc. (Europe) (En,Es,Nl)","f418cde12a87673da824d354a92f93e5":"Kakutou Ryouri Densetsu Bistro Recipe - Gekitou Foodon Battle Hen (Japan) (SGB Enhanced) (GB Compatible)","f47edc51d53ae8f416898b80bd3022a1":"Dragon Quest Monsters 2 - Maruta no Fushigi na Kagi - Iru no Bouken (Japan) (SGB Enhanced) (GB Compatible)","f48db23d4efec93d401aeb888088bf87":"Shengui Diguo Zhi Emo Cheng (Taiwan)","f4aa77a3a2609f42b879bc27983289bc":"Monster Go! Go! Go!! (Taiwan) (En)","f5325eaf1ecbf7cd6e1e561a3b5d77f7":"Meitantei Conan - Kigantou Hihou Densetsu (Japan) (SGB Enhanced) (GB Compatible)","f55ed9e6a8fece5220e9876fb515e222":"Monster Rancher Explorer (USA)","f56a4dd7e30ca39cfe6da0e6e6a28668":"31 in 1 (Taiwan) (31B-001, Sachen)","f5767f97f44365b703eae78afb7562e6":"Road Rash (USA, Europe)","f5780199efb64e9eee31ca35f68489da":"Cannon Fodder (Europe) (En,Fr,De,Es,It) (Beta)","f57c93ad02dab5141f7a5ba9b228977f":"Konchuu Hakase 3 (Japan) (Beta)","f5aa2d1278788af857ee082c0c03a02e":"Legend of Zelda, The - Link's Awakening DX (France) (Rev 1) (Beta) (SGB Enhanced) (GB Compatible)","f5bbcea31c08651a944a9f3ee8ee37b2":"Luoke Yingxiong EXE5 (Taiwan)","f5c243c844137701560617cf9eb7cd97":"Elemental Fighter (USA) (Proto)","f5e14b069eaddee42735572bd23f7ef8":"Pocket Monsters Eun (Korea)","f5e2ceff766584d558eff4eadbc97f2d":"Astro-Jump - The Sequel (World) (GB Compatible)","f5f4239fa64d1ea9144dd834f087c5c0":"Spectipede (World)","f66b21af086612f0f26448e63aa7a9fd":"Woody Woodpecker (Europe) (En,Fr,De,Es,It)","f67e8aa1d9c49401bfbc8dd148223d99":"Swordsman on the Eternal Journey (World) (En,Ja) (v1.01) (GB Compatible)","f687b51a0fab72e03766356b62261a49":"Looney Tunes (USA) (GB Compatible)","f6b6ddfaaf03392dc469f4eed49ec15d":"Azure Dreams (Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible)","f6dd1b1e5747412b9e5f25376c972d5a":"Metal Gear Solid (USA)","f6e5ce8f0b2f886c6f26af215e2438cf":"Gakkyuu Ou Yamazaki (Japan) (Possible Proto) (GB Compatible)","f6ede04cda0b777b8973a9bcb64e4931":"Hime's Quest (World)","f7034b8297393fa04d9752d461f749a5":"Moomin no Daibouken (Japan)","f70756d7502b1374e05c7fce48a4d283":"Toonsylvania (USA)","f71ac6ac4bb335f59bfd2b594d47ab49":"Dragon Warrior Monsters 2 - Cobi's Journey (USA) (SGB Enhanced) (GB Compatible)","f722b68c0f532ed567397a3e53909ccf":"Magical Chase GB - Minarai Mahoutsukai Kenja no Tani e (Japan)","f73c5cc4935ede64f5b2d62754c90262":"Carmageddon - Carpocalypse Now (USA, Europe) (En,Fr,Es,It)","f746b0ace75ac81f1fe1122087087514":"Hauntsfield (World) (v2.0) (GB Compatible)","f75874e3654360094fc2b09bd1fed7e8":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (SGB Enhanced) (GB Compatible)","f765e4019c3ab207c5804ca530173a31":"Looney Tunes Collector - Martian Revenge! (Europe) (En,Fr,De,Es,It,Nl)","f7a5dc02b67118f6b7b8211f75625ac4":"Vegas Games (USA)","f7db0c6343b12fbef11605077af5d9a2":"GameShark Online (USA)","f7e13de010decf104efa3db865971f34":"Shanghai Pocket (Europe) (Rev 1) (SGB Enhanced) (GB Compatible)","f7e5f82ff68aa678b92e41159db34e90":"Sesame Street - Elmo's 123s (USA) (GB Compatible)","f80034c5241a063e200bce777a9f41fa":"Grimace's Birthday (World) (v1.5)","f8228ad67881ba0b2947f7a0b67de2b1":"Zelda no Densetsu - Yume o Miru Shima DX (Japan) (Beta) (GB Compatible)","f84f21fd860d1d9cfb8ca6ea62a0da8f":"Yu-Gi-Oh! Duel Monsters 4 - Battle of Great Duelist - Jounouchi Deck (Japan)","f853150641026abf3c66dbfb65da428f":"Block Droppin' (World) (v1.1) (GB Compatible)","f855638ad74a7b31cca5786a32bb8868":"International Track & Field (USA) (SGB Enhanced) (GB Compatible)","f85593061b776695d8c0daf0d411eef8":"Shanghai Pocket (USA) (SGB Enhanced) (GB Compatible)","f8690cdd39e182f3bdf09ac5559676ef":"Silent Hill 2 - 20th Anniversary Demake (World) (Proto) (GB Compatible)","f88959b615f284cc120cd17f5263d018":"Elevator Action EX (Europe) (En,Fr,De,Es,It)","f8a6836a0f3448fae3f2e79ba1d32769":"Nobunaga no Yabou - Game Boy Ban 2 (Japan) (SGB Enhanced) (GB Compatible)","f8dd50a061e428e361fd79153a7beb5d":"Mythri (USA) (Proto 2)","f8f8fedf07e783a97a50cd0e05544fc3":"Wizard of Wor (World)","f91bc9d802e1fa17e5611bdd9f0d4d60":"Pine Creek (World) (En-US,Es-MX,Pt-BR) (v2.2) (Beta) (GB Compatible)","f94b2a0548f59d5b90533ed79db9d43e":"Digimon 3 Crystal (Taiwan) (En)","f94f61e6beaec6222e0d35229e2e271e":"Balloon Fight GB (Japan) (SGB Enhanced, GB Compatible) (NP)","f9594360b2a4ed8745b63304063baabb":"Inspector Gadget - Operation Madkactus (USA)","f9726ee26bcba4308493cbbb2ae7b3ea":"Yuenan Zhanyi - Chong Jian Tian Ri (Taiwan)","f985329ca65d773c7bdb40e22612199a":"POWA! (World) (Eu) (GB Compatible)","f9af3abe9471549ff21cea6d81bafc63":"Adventures in Carnal Hell, The (World) (Ja) (v1.02) (GB Compatible)","f9be99d213760ba2e9525abea1de3cb6":"Maus, Die (Europe) (En,Fr,De,Es)","f9c554dfce8383f16e554b61083f0922":"Evel Knievel (USA) (GB Compatible)","f9ec4cc3c9df3887dc731ccf53663ffb":"Pokemon Puzzle Challenge (USA, Australia)","f9feabe8eb6d7921a883fd74faf08bcc":"Ruby & Rusty Save the Crows (World) (v2.6) (GB Compatible)","fa646273b3c23600957c8ccb390a4c51":"AF+ER (World) (GB Compatible)","fa826469ab786988785b6ef36e902010":"Beauty and the Beast - A Board Game Adventure (USA, Australia) (SGB Enhanced) (GB Compatible)","fa8360094cae37a838fabcfd333ae300":"Wizardry Empire - Fukkatsu no Tsue (Japan)","faab6966e9ed5e80ff724cafde1e903d":"Driver (Europe) (En,Fr,De,Es,It)","fac13870841c0f570fff95b0c53a6e24":"Tom and Jerry (USA, Europe)","fac7b33c7d7d3b92e39dfd325e9c7f9a":"Trouble City - Pocket Mission (World) (GB Compatible)","faf6768ebd1b7a72783a2c30fd3eca17":"Musical Notes (World)","fb16f88f0454e1d038c53be5682a017d":"Autobahn (World)","fb343f6c1e4d9ddb10f160ede0f3410e":"Sewing Machine Operation Software (Europe) (En,Fr,Es,Pt) (Proto) (GB Compatible)","fb3c040f2cc720ee26f9744e55371d07":"Trick Boarder (USA)","fb74342ca6ca49f3bad3f6934e13e10f":"Number Builder (World)","fb7b02c4a6e29303255bf0bc6fc819fb":"Friendly Fire (World)","fbbf7c3c11242356586abf2a2c99a6b6":"e'Fighter HOT (Taiwan) (En)","fbc62eb7d5e05f092fd8412bcb9754e3":"Chrome and Blood (World) (v1.00) (Proto) (GB Compatible)","fbd15fa51a3bce25d9041cc522af7fb4":"Hero Hero-kun (Japan)","fbe20570c2e52c937a9395024069ba3c":"Pokemon Pinball (USA, Australia) (Rumble Version) (SGB Enhanced) (GB Compatible)","fbf1ffe76883dffcca299228c81f171f":"Mobile Golf (Japan)","fbfbec8d91d281ca13e52085819058c5":"Nightmare Hamlet (World)","fc03e910ec8028a30f15feee2243d9cb":"Chase H.Q. - Secret Police (Europe) (SGB Enhanced) (GB Compatible)","fc2629620c6a8b67550df2773333788d":"Roi Lion, Le - La Formidable Aventure de Simba (France)","fc327cdb1f787046dae8a17305f10261":"Pumuckls Abenteuer bei den Piraten (Germany)","fca034c2494a20c8a75dd1ff0bcc7545":"Game Boy Gallery 4 (Australia) (SGB Enhanced) (GB Compatible)","fcdd17dd69e273c2830e4eb886fdaf78":"Chaoji Gedou 2001 Alpha (Taiwan)","fcdeae417e8bdf89f1300311e4be5c57":"Postie (World) (v1.1) (GB Compatible)","fce7079639133df3c4d1f7beb8a89b21":"Neighbor (World) (GB Compatible)","fcf910e4d2f27bab40244eb7bf4aa2d3":"Wizardry Empire (Japan) (Rev 1)","fd1f17aa8c4b5c2963db8b0444673a3d":"Battleship (USA, Europe) (GB Compatible)","fd4c412dfb452c267edb508b0e899fdb":"Tristam Island (World) (v1.6) (GB Compatible)","fd5d1ad9fa778895fa24d1fe1eca52b7":"Powerpuff Girls, The - Bulle Contre Lui (France)","fd91d5d69c43f2f0406b3626d625b6e6":"Resident Evil (World) (Proto 2)","fdade90c72f29a498e045323dda5ad37":"Varmit (World)","fdf70472390282fe62765a0838318e52":"Casper (Europe) (En,Fr,De)","fdf704aff61ad3e6848642241ddb6032":"Marvin Strikes Back! (USA) (En,Fr,Es)","fe002ee7d615bf7b728bf6031645b168":"Spy vs Spy (Europe) (En,Fr,De,Es,It,Nl,Sv)","fe22797c8098ac1c18a80875e29aa09b":"Inspector Gadget - Operation Madkactus (Europe) (Fr) (Beta)","fe2df6252f512957b081c1663086b588":"Guaishou Go! Go! II (Taiwan)","fe510196e7fd81b5d9ab9cca091435d7":"Powerpuff Girls, The - Bad Mojo Jojo (Europe) (BJJP)","fe5f723b01bc8cdf7ec1c4a3a61e4ba8":"Shuma Baolong - Diannao Pian (Taiwan) (Zh)","fe97e6bb194bd38e5baeb889b4c8e251":"Marie no Atelier GB (Japan) (SGB Enhanced) (GB Compatible)","feb32471ea029a55d7bdea7e0bdc6961":"Rayman 2 (USA) (En,Fr,De,Es,It)","febd6cdb9f12b6003d7ef33045ef7079":"Spawn (USA)","fee6336f969c9e72e9b78be53d512c1e":"Conker's Pocket Tales (USA, Europe) (En,Fr,De) (SGB Enhanced) (GB Compatible)","ff0001c209fc894c26b339a1519f38a6":"Daikaijuu Monogatari - The Miracle of the Zone II (Japan) (SGB Enhanced) (GB Compatible)","ff1b35a16b0eca8e1fb10af164e66421":"Backgammon (Europe) (En,Fr,De,Es) (GB Compatible)","ff3531643a965dd351b54f32c280c9c0":"Stratacombo (World) (v1.2) (Proto) (GB Compatible)","ff69bcdedca5ac1325af47d8a1e4823f":"Daikatana (USA) (Proto 1)","ff92e59c47a990815bc548e5e253c390":"Chase H.Q. - Secret Police (USA) (SGB Enhanced) (GB Compatible)","ff9b78e1f399fc2bd665b8a08ba27456":"Mickey's Speedway USA (USA, Europe) (En,Fr,De,Es)","ffa003fa747731a9fd547260598538cb":"Dragon Ball Z - Les Guerriers Legendaires (France)","ffadefd2e7e6325cd33f834915a09c8b":"Floracy (Europe) (Proto)","ffe6f6d5b40e249a03b8c80ab140f56d":"Commando (World)"}