aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarkelarious <darkelarious@333networks.com>2020-12-29 17:38:39 +0000
committerDarkelarious <darkelarious@333networks.com>2020-12-29 17:38:39 +0000
commit6c9f14e8d2c10584d59a3c24127d95e447dc9ab0 (patch)
treeb0ca177ec9bfdc82bf98d0d4f5b3e07882332a78
parent47b7a453f6d7153077df6e8a534b7a8e2c7d9e11 (diff)
downloadSimulation-Tools-6c9f14e8d2c10584d59a3c24127d95e447dc9ab0.tar.gz
Simulation-Tools-6c9f14e8d2c10584d59a3c24127d95e447dc9ab0.zip
gameserver simulation tool
-rwxr-xr-xcommon/auth.pl127
-rwxr-xr-xcommon/status.pl140
-rwxr-xr-xcommon/supportedgames.pl3155
-rwxr-xr-xgameserver/gameserver.pl94
-rwxr-xr-xother/getsecure.pl16
5 files changed, 3532 insertions, 0 deletions
diff --git a/common/auth.pl b/common/auth.pl
new file mode 100755
index 0000000..7e00096
--- /dev/null
+++ b/common/auth.pl
@@ -0,0 +1,127 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+sub get_validate_string {
+ my ($cipher_string, $secure_string, $enctype) = @_;
+
+ # use pre-built rotations for enctype
+ my @enc_chars = ( qw |
+ 001 186 250 178 081 000 084 128 117 022 142 142 002 008 054 165
+ 045 005 013 022 082 007 180 034 140 233 009 214 185 038 000 004
+ 006 005 000 019 024 196 030 091 029 118 116 252 080 081 006 022
+ 000 081 040 000 004 010 041 120 081 000 001 017 082 022 006 074
+ 032 132 001 162 030 022 071 022 050 081 154 196 003 042 115 225
+ 045 079 024 075 147 076 015 057 010 000 004 192 018 012 154 094
+ 002 179 024 184 007 012 205 033 005 192 169 065 067 004 060 082
+ 117 236 152 128 029 008 002 029 088 132 001 078 059 106 083 122
+ 085 086 087 030 127 236 184 173 000 112 031 130 216 252 151 139
+ 240 131 254 014 118 003 190 057 041 119 048 224 043 255 183 158
+ 001 004 248 001 014 232 083 255 148 012 178 069 158 010 199 006
+ 024 001 100 176 003 152 001 235 002 176 001 180 018 073 007 031
+ 095 094 093 160 079 091 160 090 089 088 207 082 084 208 184 052
+ 002 252 014 066 041 184 218 000 186 177 240 018 253 035 174 182
+ 069 169 187 006 184 136 020 036 169 000 020 203 036 018 174 204
+ 087 086 238 253 008 048 217 253 139 062 010 132 070 250 119 184
+ |),
+
+ # convert to array of characters
+ my @cip = split "", $cipher_string;
+ my @sec = split "", $secure_string;
+
+ # length of strings/arrays which should be 6
+ my $sec_len = scalar @sec;
+ my $cip_len = scalar @cip;
+
+ # from this point on, work with ordinal values
+ for (0..$sec_len-1) { $sec[$_] = ord $sec[$_]; }
+ for (0..$cip_len-1) { $cip[$_] = ord $cip[$_]; }
+
+ # helper vars
+ my ($i,$j,$k,$l,$m,$n,$p);
+
+ # too short or too long -- return empty string
+ return "" if ($sec_len <= 0 || $sec_len >= 32);
+ return "" if ($cip_len <= 0 || $cip_len >= 32);
+
+ # temporary array with ascii characters
+ my @enc;
+ for(0..255) {$enc[$_] = $_;}
+
+ $j = 0;
+ for(0..255) {
+ $j += $enc[$_] + $cip[$_ % $cip_len];
+ $j = $j % 256;
+ $l = $enc[$j];
+ $enc[$j] = $enc[$_];
+ $enc[$_] = $l;
+ }
+
+ # store temporary positions
+ my @tmp;
+
+ $j = 0;
+ $k = 0;
+ for($i = 0; $sec[$i]; $i++) {
+ $j += $sec[$i] + 1;
+ $j = $j % 256;
+ $l = $enc[$j];
+ $k += $l;
+ $k = $k % 256;
+ $m = $enc[$k];
+ $enc[$k] = $l;
+ $enc[$j] = $m;
+ $tmp[$i] = $sec[$i] ^ $enc[($l + $m) & 0xff];
+ }
+
+ # part of the enctype 1-2 process
+ for($sec_len = $i; $sec_len % 3; $sec_len++) {
+ $tmp[$sec_len] = 0;
+ }
+
+ if ($enctype == 1) {
+ for (0..$sec_len-1) {
+ $tmp[$_] = $enc_chars[$tmp[$_]];
+ }
+ }
+ elsif ($enctype == 2) {
+ for (0..$sec_len-1) {
+ $tmp[$_] ^= $cip[$_ % $cip_len];
+ }
+ }
+
+ # parse the validate array
+ $p = 0;
+ my @val;
+ for($i = 0; $i < $sec_len; $i += 3) {
+ $l = $tmp[$i];
+ $m = $tmp[$i + 1];
+ $m = $m % 256;
+ $n = $tmp[$i + 2];
+ $n = $n % 256;
+ $val[$p++] = charshift($l >> 2);
+ $val[$p++] = charshift((($l & 3 ) << 4) | ($m >> 4));
+ $val[$p++] = charshift((($m & 15) << 2) | ($n >> 6));
+ $val[$p++] = charshift($n & 63);
+ }
+
+ # return to ascii characters
+ my $str = "";
+ for (@val) { $str .= chr $_}
+
+ return $str;
+}
+
+sub charshift {
+ my $reg = shift;
+ return($reg + 65) if ($reg < 26);
+ return($reg + 71) if ($reg < 52);
+ return($reg - 4) if ($reg < 62);
+ return(43) if ($reg == 62);
+ return(47) if ($reg == 63);
+
+ # if all else fails
+ return(0);
+}
+1;
diff --git a/common/status.pl b/common/status.pl
new file mode 100755
index 0000000..4e9ad28
--- /dev/null
+++ b/common/status.pl
@@ -0,0 +1,140 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+use Switch;
+
+# query id counter
+my $qid = 0;
+
+# status information
+my %basic = (
+ gamename => "ut",
+ gamever => 451,
+ location => 0,
+);
+my %info = (
+ hostname => "333networks test server",
+ hostport => 7777,
+ maptitle => "333networks",
+ mapname => "DM-333networks",
+ gametype => "DeathMatchPlus",
+ numplayers => 6,
+ maxplayers => 8,
+ gamemode => "openplaying",
+ gamever => 451,
+ minnetver => 432,
+ worldlog => "False",
+);
+my %rules = (
+ mutators => "333networks simulated server",
+ listenserver => "False",
+ password => "False",
+ timelimit => 150,
+ goalteamscore => 0,
+ minplayers => 0,
+ changelevels => "True",
+ balanceteams => "True",
+ playersbalanceteams => "False",
+ friendlyfire => "10%",
+ gamestyle => "Hardcore",
+ AdminName => "Darkelarious",
+ AdminEMail => "simulate@333networks.com",
+);
+my %player = (
+ player_ => "Player",
+ frags_ => 0,
+ health_ => 100,
+ deaths_ => 200,
+ ping_ => 75,
+ team_ => 1,
+ mesh_ => "Boss",
+ skin_ => "SourceSkins.sourceclan",
+ face_ => "SourceSkins.dark",
+ ngsecret_ => "True"
+);
+
+# get gamename outside status environment
+sub getGameName
+{
+ return $basic{gamename};
+}
+
+# parse to gamespy0 format: \key\value
+sub getResponse
+{
+ # what was requested?
+ my ($key, $value) = @_;
+
+ # count responses
+ ++$qid;
+
+ # determine response
+ switch(lc $key)
+ {
+ case "basic"
+ {
+ my $reply = "\\" . join '\\', %basic;
+ return "$reply\\queryid\\$qid.3";
+ }
+
+ case "info"
+ {
+ my $reply = "\\" . join '\\', %info;
+ return "$reply\\queryid\\$qid.3";
+ }
+
+ case "rules"
+ {
+ my $reply = "\\" . join '\\', %rules;
+ return "$reply\\queryid\\$qid.3";
+ }
+
+ case "players"
+ {
+ my $reply = "";
+ for ( 0..$info{numplayers}-1 )
+ {
+ $reply .= "\\player_$_\\" .$player{player_};
+ $reply .= "\\frags_$_\\" .$player{frags_};
+ $reply .= "\\health_$_\\" .$player{health_};
+ $reply .= "\\deaths_$_\\" .$player{deaths_};
+ $reply .= "\\ping_$_\\" .int(rand(400)); # random number!
+ $reply .= "\\team_$_\\" .$player{team_};
+ $reply .= "\\mesh_$_\\" .$player{mesh_};
+ $reply .= "\\skin_$_\\" .$player{skin_};
+ $reply .= "\\face_$_\\" .$player{face_};
+ $reply .= "\\ngsecret_$_\\".$player{ngsecret_};
+ }
+ return "$reply\\queryid\\$qid.3";
+ }
+
+ case "status"
+ {
+ my $reply = "";
+ $reply .= "\\" . join '\\', %basic;
+ $reply .= "\\" . join '\\', %info;
+ $reply .= "\\" . join '\\', %rules;
+ for ( 0..$info{numplayers}-1 )
+ {
+ $reply .= "\\player_$_\\" .$player{player_};
+ $reply .= "\\frags_$_\\" .$player{frags_};
+ $reply .= "\\health_$_\\" .$player{health_};
+ $reply .= "\\deaths_$_\\" .$player{deaths_};
+ $reply .= "\\ping_$_\\" .int(rand(400)); # random number!
+ $reply .= "\\team_$_\\" .$player{team_};
+ $reply .= "\\mesh_$_\\" .$player{mesh_};
+ $reply .= "\\skin_$_\\" .$player{skin_};
+ $reply .= "\\face_$_\\" .$player{face_};
+ $reply .= "\\ngsecret_$_\\".$player{ngsecret_};
+ }
+ return "$reply\\queryid\\$qid.3";
+
+ }
+
+ else # echo and others
+ {
+ return "\\echo_reply\\$value";
+ }
+ }
+}
diff --git a/common/supportedgames.pl b/common/supportedgames.pl
new file mode 100755
index 0000000..c9d6a17
--- /dev/null
+++ b/common/supportedgames.pl
@@ -0,0 +1,3155 @@
+our %S = (
+%S, # do not overwrite other parts of the %S config hash (if applicable)
+
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+#
+# Changelog:
+#
+# 29 Dec 2020
+# - Added contact information, update information
+#
+# 6 Jan 2018
+# - Added game "hx" to the list
+#
+# 11 Jul 2017
+# - Added default ports for various games
+#
+# 24 Oct 2016
+# - Added/updated description for the 333networks synchronization
+# protocol and uplink setup. Works with MS-Perl 2.1.8 and above.
+#
+# 8 Nov 2015
+# - Migrated supportedgames.pl to database; after these are games
+# are loaded, the variables are cleared
+#
+# 5 Oct 2015
+# - Moved "enc_chars" to Core::Secure.pm, in preparation to
+# migrate supportedgames.pl to the database instead.
+#
+# 31 Dec 2013
+# - Added entry and cipher 333networks to the list
+#
+# Supported Games & Secure/Validate
+# Games following the GameSpy protocol authenticate with the secure/validate
+# challenge method. This requires a gamename, cipher and secure phrase to
+# generate a validation response. The original list was provided by Luigi
+# Auriemma (http://aluigi.altervista.org/papers.htm#gsmsalg).
+#
+# This file was (originally) required for the 333networks masterserver. As of
+# the Qt5 implementation, this file is solely used to simulate server/client
+# interaction for (unit) testing of the masterserver. See 333networks.com for
+# more information.
+#
+# Questions and contact
+# Darkelarious
+# darkelarious@333networks.com
+# irc.synirc.net #333networks
+# https://discord.gg/qbbTaGA
+#
+# Technical note: duplicates are overwritten by the next duplicate item.
+#
+# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
+
+# Usage:
+# game code => {key => "game key", label => "game name label", port => "default port number"}
+game => {
+
+ "333networks" => {key => "333NWX", label => "333networks Masterserver Synchronization"},
+
+ "hx" => {key => "5YKJVt", label => "Han's Deus Ex Coop Mod"},
+ "12ironds" => {key => "RxXhtd", label => "12Iron (DS)"},
+ "12irondsam" => {key => "RxXhtd", label => "12Iron Automatch (DS)"},
+ "2kboxingds" => {key => "JiBAt0", label => "2K Boxing (DS)"},
+ "3celsiuswii" => {key => "xR1sEX", label => "3* Celsius (WiiWare)"},
+ "3dpicrossds" => {key => "uhXkFl", label => "3D Picross (DS)"},
+ "3dpicrosseuds" => {key => "UAX3WC", label => "3D Picross (EU) (DS)"},
+ "3dpicrossUSds" => {key => "2IOxzX", label => "3D Picross (US) (DS)"},
+ "3DUltraMinigolf" => {key => "KzYRQz", label => "3D Ultra Minigolf Adventures"},
+ "4x4evo" => {key => "tFbq8m", label => "4x4 Evolution"},
+ "4x4evodemo" => {key => "p4jAGg", label => "4x4 Evolution Demo"},
+ "4x4retail" => {key => "MIq0wX", label => "4x4 Evolution"},
+ "50centjpnps3" => {key => "ZmGGQs", label => "50 Cent: Blood on the Sand (JPN) (PS3)"},
+ "50centjpnps3am" => {key => "ZmGGQs", label => "50 Cent: Blood on the Sand Automatch (JPN) ("},
+ "50centjpnps3d" => {key => "ZmGGQs", label => "50 Cent: Blood on the Sand Demo (JPN) (PS3)"},
+ "50centsandps3" => {key => "ORydHB", label => "50 Cent: Blood on the Sand (PS3)"},
+ "50centsandps3am" => {key => "ORydHB", label => "50 Cent: Blood on the Sand Automatch (PS3)"},
+ "50ctsndlvps3" => {key => "n5qRt7", label => "50 Cent: Blood on the Sand - Low Violence (PS"},
+ "50ctsndlvps3am" => {key => "n5qRt7", label => "50 Cent: Blood on the Sand - Low Violence Au"},
+ "7kingdoms" => {key => "WEX3rA", label => "Seven Kingdoms 2"},
+ "8ballstarsds" => {key => "b6WiRo", label => "8-Ball Allstars (DS)"},
+ "aarmy3" => {key => "zwAbg5", label => "America's Army 3"},
+ "aarts" => {key => "tR3b8h", label => "Axis and Allies RTS"},
+ "aartsd" => {key => "tR3b8h", label => "Axis and Allies RTS demo"},
+ "abominatio" => {key => "qik37G", label => "Abomination"},
+ "ace" => {key => "L2dC9x", label => "A.C.E."},
+ "acejokerUSds" => {key => "ZS4JZy", label => "Mega Man Star Force 3: Black Ace/Red Joker (U"},
+ "acrossingds" => {key => "h2P9x6", label => "Animal Crossing (DS)"},
+ "acrossingdsam" => {key => "h2P9x6", label => "Animal Crossing (DS, Automatch)"},
+ "acrossingwii" => {key => "Z7Fm9K", label => "Animal Crossing Wii (Wii)"},
+ "actofwar" => {key => "LaR21n", label => "Act of War: Direct Action"},
+ "actofwaram" => {key => "LaR21n", label => "Act of War: Direct Action (Automatch)"},
+ "actofward" => {key => "LaR21n", label => "Act of War: Direct Action demo"},
+ "actofward" => {key => "LaR21n", label => "Act of War: Direct Action Demo"},
+ "actofwardam" => {key => "LaR21n", label => "Act of War: Direct Action Demo (Automatch)"},
+ "actofwarht" => {key => "LaR21n", label => "Act of War: High Treason"},
+ "actofwarhtam" => {key => "LaR21n", label => "Act of War: High Treason Automatch"},
+ "actofwarhtd" => {key => "LaR21n", label => "Act of War: High Treason Demo"},
+ "actofwarhtdam" => {key => "LaR21n", label => "Act of War: High Treason Demo Automatch"},
+ "actval1" => {key => "j9Ew2L", label => "Activision Value Title 1"},
+ "afllive05ps2" => {key => "j72Lm2", label => "AFL Live 2005 (ps2)"},
+ "afrikakorps" => {key => "tbhWCq", label => "Afrika Korps"},
+ "afrikakorpsd" => {key => "tfHGsW", label => "Desert Rats vs. Afrika Korps Demo"},
+ "agentps3" => {key => "8me2Ja", label => "Agent (PS3)"},
+ "agentps3am" => {key => "8me2Ja", label => "Agent Automatch (PS3)"},
+ "ageofconanb" => {key => "QZQLGt", label => "Age of Conan beta"},
+ "ageofsail2" => {key => "Kb3ab5", label => "Age of Sail 2"},
+ "AGON" => {key => "ytpbYm", label => "AGON: The Lost Sword of Toledo D2D"},
+ "agrome" => {key => "8mEKiP", label => "Against Rome"},
+ "airhockeywii" => {key => "vhxMTl", label => "World Air Hockey Challenge! (WiiWare)"},
+ "airwingsds" => {key => "5TTmMf", label => "Air Wings (DS)"},
+ "aliencrashwii" => {key => "gRfsiO", label => "Alien Crash (WiiWare)"},
+ "aliencross" => {key => "IOrDfP", label => "Alien Crossfire"},
+ "AliensCMPC" => {key => "5T4ATR", label => "Aliens: Colonial Marines (PC)"},
+ "AliensCMPCam" => {key => "5T4ATR", label => "Aliens: Colonial Marines Automatch (PC)"},
+ "AliensCMPCd" => {key => "5T4ATR", label => "Aliens: Colonial Marines Demo (PC)"},
+ "AliensCMPS3" => {key => "5T4ATR", label => "Aliens: Colonial Marines (PS3)"},
+ "AliensCMPS3am" => {key => "5T4ATR", label => "Aliens: Colonial Marines Automatch (PS3)"},
+ "AliensCMPS3d" => {key => "5T4ATR", label => "Aliens: Colonial Marines Demo (PS3)"},
+ "allegiance" => {key => "YghTwJ", label => "MS Allegiance"},
+ "alphacent" => {key => "qbb4Ge", label => "Alpha Centauri"},
+ "altitude" => {key => "DZzvoR", label => "Altitude"},
+ "amairtac" => {key => "8dvSTO", label => "Army Men - Air Tactics"},
+ "americax" => {key => "CSCQMZ", label => "America Addon"},
+ "amfbowlingds" => {key => "c56nI8", label => "AMF Bowling: Pinbusters! (DS)"},
+ "AmMcGeeGrimm02" => {key => "wOTjPr", label => "American Mcgee's Grimm Episode 2"},
+ "AmMcGeeGrimm03" => {key => "SWUWsc", label => "American Mcgee's Grimm Episode 3"},
+ "AmMcGeeGrimm04" => {key => "BDjKYg", label => "American McGee's Grimm Episode 4"},
+ "amworldwar" => {key => "nLfZDY", label => "Army Men World War"},
+ "anarchyonline" => {key => "ThLopr", label => "Anarchy Online"},
+ "AncientQofSaq" => {key => "UIctfg", label => "Ancient Quest of Saqqarah D2D"},
+ "and1sballps2" => {key => "J3c8Dm", label => "AND1: Streetball Online (PS2)"},
+ "and1sballps2am" => {key => "J3c8Dm", label => "AND1: Streetball Online Automatch (PS2)"},
+ "anno1503" => {key => "9mDKiP", label => "Anno 1503"},
+ "anno1503b" => {key => "mEcJMZ", label => "Anno 1503 Beta"},
+ "anno1602ad" => {key => "sAJtHo", label => "1602 A.D."},
+ "anno1701" => {key => "Xa6zS3", label => "Anno 1701"},
+ "anno1701d" => {key => "taEf7n", label => "Anno 1701 Demo"},
+ "aoe" => {key => "VzkADe", label => "Age of Empires"},
+ "aoe2" => {key => "iZhjKi", label => "Age of Empires 2"},
+ "aoe2demo" => {key => "alVRIq", label => "Age of Empires II Trial"},
+ "aoe2tc" => {key => "p4jAGg", label => "Age of Empires II: The Co"},
+ "aoe2tcdemo" => {key => "wUhCSC", label => "Age of Empires II - The C"},
+ "aoe3wcd" => {key => "ZDdpQV", label => "Age of Empires 3: The Warchiefs Demo"},
+ "aoemythds" => {key => "a9EK9F", label => "Age of Empires: Mythologies (DS)"},
+ "aoex" => {key => "JafcLp", label => "Age of Empires Expansion"},
+ "aow2" => {key => "csFcq8", label => "Age of Wonders 2"},
+ "aow2d" => {key => "S6aiiP", label => "Age of Wonders 2 Beta Dem"},
+ "aow3" => {key => "W88dvR", label => "Age of Wonders: Shadow Ma"},
+ "aowdemo" => {key => "alVRIq", label => "Age Of Wonders Demo"},
+ "aowfull" => {key => "alVRIq", label => "Age of Wonders"},
+ "aowfull" => {key => "alVRIq", label => "Age Of Wonders"},
+ "aowsm" => {key => "W78cvR", label => "Age of Wonders: Shadow Ma"},
+ "appletest" => {key => "TZHVox", label => "Apple SDK test"},
+ "appletestam" => {key => "TZHVox", label => "Apple SDK test Automatch"},
+ "appletestd" => {key => "TZHVox", label => "Apple SDK test Demo"},
+ "aquanox" => {key => "U3pf8x", label => "Aquanox"},
+ "arc" => {key => "M9tZe4", label => "ARC"},
+ "arc" => {key => "M9tZe4", label => "Arc: Sierra"},
+ "archlord" => {key => "eLiRAC", label => "Archlord"},
+ "ardinokingds" => {key => "6wO62C", label => "Ancient Ruler Dinosaur King (DS)"},
+ "area51pc" => {key => "mW73mq", label => "Area 51"},
+ "area51pc" => {key => "mW73mq", label => "Area 51 (PC)"},
+ "area51pcb" => {key => "mW73mq", label => "Area 51 (PC) Beta"},
+ "area51ps2" => {key => "eR48fP", label => "Area 51 (PS2)"},
+ "area51ps2" => {key => "eR48fP", label => "Area 51 PS2"},
+ "arkanoidds" => {key => "QxU6hI", label => "Arkanoid DS (DS)"},
+ "arkaUSEUds" => {key => "kORtxH", label => "Arkanoid DS (US/EU) (DS)"},
+ "arkwarriors" => {key => "sTPqLc", label => "Arkadian Warriors"},
+ "arkwarriorsam" => {key => "sTPqLc", label => "Arkadian Warriors Automatch"},
+ "arma2oapc" => {key => "sGKWik", label => "Arma 2: Operation Arrowhead (PC)"},
+ "arma2oapcam" => {key => "sGKWik", label => "Arma 2: Operation Arrowhead Automatch (PC)"},
+ "arma2oapcd" => {key => "sGKWik", label => "Arma 2: Operation Arrowhead Demo (PC)"},
+ "arma2pc" => {key => "zbMmN3", label => "Arma II (PC)"},
+ "arma2pc" => {key => "zbMmN3", label => "ArmA2: Armed Assault 2"},
+ "arma2pcam" => {key => "zbMmN3", label => "Arma II Automatch (PC)"},
+ "arma2pcd" => {key => "zbMmN3", label => "Arma II Demo (PC)"},
+ "armaas" => {key => "fgDmOT", label => "ArmA: Armed Assault"},
+ "armada2" => {key => "N3a2mZ", label => "Star Trek Armada 2"},
+ "armada2beta" => {key => "N3a2mZ", label => "Star Trek: Armada 2 Beta"},
+ "armada2d" => {key => "N3a2mZ", label => "Star Trek: Armada II Demo"},
+ "armedass" => {key => "peprUy", label => "ArmA"},
+ "armedass" => {key => "peprUy", label => "ArmA: Armed Assault (correct gamekey)"},
+ "armedassd" => {key => "peprUy", label => "ArmA Demo"},
+ "armygame" => {key => "g3sR2b", label => "Americas Army: Special Forces"},
+ "armygamemac" => {key => "g3sR2b", label => "America's Army: Operations MAC"},
+ "armygamemac" => {key => "g3sR2b", label => "Americas Army: Special Forces (Mac)"},
+ "armymen" => {key => "V5Hm41", label => "Army Men"},
+ "armymen2" => {key => "YBLJvU", label => "Army Men II"},
+ "armymenrts" => {key => "Rp4jGh", label => "Army Men RTS"},
+ "armymenspc" => {key => "r1wXEX", label => "Army Men Toys in Space"},
+ "asbball2005ps2" => {key => "Y3pG1m", label => "All-star Baseball 2005"},
+ "ascensionpc" => {key => "1aT6fS", label => "Ascension (PC)"},
+ "ascensionpcam" => {key => "1aT6fS", label => "Ascension Automatch (PC)"},
+ "ascensionpcd" => {key => "1aT6fS", label => "Ascension Demo (PC)"},
+ "asobids" => {key => "1L77RN", label => "Asobi Taizen (DS)"},
+ "Asonpartywii" => {key => "g4hp4x", label => "Asondewakaru THE Party/Casino (Wii)"},
+ "assaultheroes" => {key => "WpA5Tx", label => "Assault Heroes"},
+ "assaultheroesam" => {key => "WpA5Tx", label => "Assault Heroes Automatch"},
+ "AssaultHeroesD2" => {key => "GZUXrC", label => "Assault Heroes"},
+ "assimilation" => {key => "BOFdk1", label => "Assimilation"},
+ "assultwii" => {key => "6AStwk", label => "Assult (Wii)"},
+ "atlantica" => {key => "LfZDXB", label => "Atlantica"},
+ "atlantis" => {key => "W49nx4", label => "Atlantis"},
+ "atlantispre" => {key => "W49nx4", label => "Atlantis Prequel"},
+ "atlantispre" => {key => "W49nx4", label => "Atlantis: Search for the Journal"},
+ "atlas_samples" => {key => "Zc0eM6", label => "ATLAS Sample Apps"},
+ "austerlitz" => {key => "hCSBQM", label => "Austerlitz: Napoleons Gre"},
+ "avp" => {key => "WtGzHr", label => "Aliens Vs Predator"},
+ "avp2" => {key => "Df3M6Z", label => "Aliens vs Predator 2"},
+ "avp2demo" => {key => "Df3M6Z", label => "Aliens vs Predator 2 Demo"},
+ "avp2lv" => {key => "Df3M6Z", label => "Aliens vs. Predator 2 (Low violence)"},
+ "avp2ph" => {key => "P4fR9w", label => "Aliens vs. Predator 2: Primal Hunt"},
+ "avpnotgold" => {key => "DLiQwZ", label => "Aliens vs. Predator"},
+ "avponlive" => {key => "QZlhzB", label => "Aliens Vs Predator (OnLive)"},
+ "avponliveam" => {key => "QZlhzB", label => "Aliens Vs Predator Automatch (OnLive)"},
+ "axallirnb" => {key => "GexS6a", label => "Axis & Allies: Iron Blitz"},
+ "axis" => {key => "nYBLJv", label => "Axis"},
+ "axisallies" => {key => "JwWh9S", label => "Axis & Allies"},
+ "backgammon" => {key => "VCypJm", label => "Hasbro's Backgammon"},
+ "baldursg" => {key => "3MHCZ8", label => "Baludurs Gate"},
+ "ballarenaps3d" => {key => "W8bW5s", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "ballers3ps3" => {key => "lu5P4Q", label => "NBA Ballers: Chosen One (PS3)"},
+ "ballers3ps3am" => {key => "lu5P4Q", label => "NBA Ballers: Chosen One Automatch (PS3)"},
+ "ballers3ps3d" => {key => "lu5P4Q", label => "NBA Ballers: Chosen One Demo (PS3)"},
+ "banburadxds" => {key => "04cR2B", label => "Banbura DX Photo Frame Radio (DS)"},
+ "bandbrosds" => {key => "yvcEXe", label => "Daiggaso! Band Brothers DX (DS)"},
+ "bandbrosEUds" => {key => "WrU6Ov", label => "Daiggaso! Band Brothers DX (EU) (DS)"},
+ "bandits" => {key => "H2k9bD", label => "Bandits: Phoenix Rising"},
+ "banditsd" => {key => "H2k9bD", label => "Bandits: Phoenix Rising Demo"},
+ "bandw" => {key => "KbEab3", label => "Black and White"},
+ "bang" => {key => "zgsCV2", label => "Bang! Gunship Elite"},
+ "bangdemo" => {key => "Hl31zd", label => "Bang! Gunship Elite Demo"},
+ "bangler2003" => {key => "hCTCQM", label => "Bass Angler 2003"},
+ "batmanaa2ps3" => {key => "3kgng6", label => "Batman: Arkham Asylum 2 (PS3)"},
+ "batmanaa2ps3am" => {key => "3kgng6", label => "Batman: Arkham Asylum 2 Automatch (PS3)"},
+ "battlefield2" => {key => "hW6m9a", label => "Battlefield 2"},
+ "battlefield2d" => {key => "hW6m9a", label => "Battlefield 2 Demo"},
+ "battlemages" => {key => "ZMWyOO", label => "Battle Mages"},
+ "battlerealms" => {key => "hU7wE3", label => "Battle Realms"},
+ "battlerealmsbBA" => {key => "hU7wE3", label => "Battle Realms Beta"},
+ "batwars2wii" => {key => "XvB2pu", label => "Battalion Wars II (Wii)"},
+ "bballarenaps3" => {key => "W8bW5s", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "bballarenaps3am" => {key => "W8bW5s", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "bbangminids" => {key => "ErZPG8", label => "Big Bang Mini (DS)"},
+ "bbarenaEUps3" => {key => "w6gFKv", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "bbarenaEUps3am" => {key => "w6gFKv", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "bbarenaEUps3d" => {key => "w6gFKv", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "bbarenaJPNps3" => {key => "CwiTIz", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "bbarenaJPNps3am" => {key => "CwiTIz", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "bbarenaJPps3d" => {key => "CwiTIz", label => "Supersonic Acrobatic Rocket-Powered BattleCar"},
+ "bbladeds" => {key => "7TUkXB", label => "Bay Blade (DS)"},
+ "bboarderswii" => {key => "Z5pkm2", label => "Battle Boarders (WiiWare)"},
+ "bbobblewii" => {key => "IdTzGr", label => "Bubble Bobble Wii (WiiWare)"},
+ "bc3k" => {key => "5LnQaz", label => "Battle Cruiser 3000 AD"},
+ "bcm" => {key => "tHg2t7", label => "Battlecruiser: Millenium"},
+ "bcommander" => {key => "Nm3aZ9", label => "Star Trek: Bridge Commander", port => 22101},
+ "bderlandruspc" => {key => "Pe4PcU", label => "Borderlands RUS (PC)"},
+ "bderlandruspcam" => {key => "Pe4PcU", label => "Borderlands RUS Automatch (PC)"},
+ "bderlandruspcd" => {key => "Pe4PcU", label => "Borderlands RUS Demo (PC)"},
+ "bderlands360am" => {key => "1Eu2fy", label => "Borderlands Automatch (360)"},
+ "bderlandspc" => {key => "a2Lg16", label => "Borderlands (PC)"},
+ "bderlandspcam" => {key => "a2Lg16", label => "Borderlands Automatch (PC)"},
+ "bderlandspcd" => {key => "a2Lg16", label => "Borderlands Demo (PC)"},
+ "bderlandsps3" => {key => "Z1kXis", label => "Borderlands (PS3)"},
+ "bderlandsps3am" => {key => "Z1kXis", label => "Borderlands Automatch (PS3)"},
+ "bderlandsps3d" => {key => "Z1kXis", label => "Borderlands Demo (PS3)"},
+ "bderlandsx360" => {key => "1Eu2fy", label => "Borderlands (360)"},
+ "bderlandsx360d" => {key => "1Eu2fy", label => "Borderlands Demo (360)"},
+ "beaterator" => {key => "VXtdws", label => "Beaterator (PSP/iphone)"},
+ "beateratoram" => {key => "VXtdws", label => "Beaterator Automatch (PSP/iphone)"},
+ "beateratord" => {key => "VXtdws", label => "Beaterator Demo (PSP/iphone)"},
+ "beateratoriph" => {key => "qV4GA6", label => "Beaterator (iPhone)"},
+ "beateratoripham" => {key => "qV4GA6", label => "Beaterator Automatch (iPhone)"},
+ "beateratoriphd" => {key => "qV4GA6", label => "Beaterator Demo (iPhone)"},
+ "beateratorpsp" => {key => "VXtdws", label => "Beaterator (PSP)"},
+ "beateratorpspam" => {key => "VXtdws", label => "Beaterator Automatch (PSP)"},
+ "beateratorpspd" => {key => "VXtdws", label => "Beaterator Demo (PSP)"},
+ "beatrunnerwii" => {key => "CAI5ov", label => "Beat Runner (WiiWare)"},
+ "beijing08pc" => {key => "P4QzX5", label => "Beijing 2008 (PC)"},
+ "beijing08pcam" => {key => "P4QzX5", label => "Beijing 2008 Automatch (PC)"},
+ "beijing08pcd" => {key => "P4QzX5", label => "Beijing 2008 Demo (PC)"},
+ "beijing08ps3" => {key => "P4QzX5", label => "Beijing 2008 (PS3)"},
+ "beijing08ps3am" => {key => "P4QzX5", label => "Beijing 2008 Automatch (PS3)"},
+ "beijing08ps3d" => {key => "P4QzX5", label => "Beijing 2008 Demo (PS3)"},
+ "bejeweled2wii" => {key => "83V7wq", label => "Bejeweled 2 (Wii)"},
+ "bejeweled2wiiam" => {key => "83V7wq", label => "Bejeweled 2 Automatch (Wii)"},
+ "ben10bb" => {key => "bwV3xN", label => "Ben 10 Bounty Battle"},
+ "ben10bbam" => {key => "bwV3xN", label => "Ben 10 Bounty Battle Automatch"},
+ "besieger" => {key => "ydG3vz", label => "Besieger"},
+ "bestfriendds" => {key => "i7Sk5y", label => "Best Friend - Main Pferd (DS)"},
+ "betonsoldier" => {key => "mH2y9u", label => "Bet on Soldier"},
+ "betonsoldierd" => {key => "mH2y9u", label => "Bet On Soldier"},
+ "bewarewii" => {key => "iTHrhz", label => "Beware (WiiWare)"},
+ "bf1942swmac" => {key => "HpWx9z", label => "Battlefield 1942: Secret Weapons of WW2 Mac"},
+ "bf2142" => {key => "FIlaPo", label => "Battlefield 2142"},
+ "bf2142b" => {key => "sdbMvQ", label => "Battlefield 2142 (Beta)"},
+ "bf2142d" => {key => "UoiZSm", label => "Battlefield 2142 Demo"},
+ "bf2142e" => {key => "flfRQv", label => "Battlefield 2142 (EAD)"},
+ "bf2ddostest" => {key => "hW6m9a", label => "Battlefield 2 DDoS testing"},
+ "bf2sttest" => {key => "NFFtwb", label => "Battlefield 2 Snapshot testing"},
+ "bfield1942" => {key => "HpWx9z", label => "Battlefield 1942"},
+ "bfield1942d" => {key => "gF4i8U", label => "Battlefield 1942 Demo"},
+ "bfield1942mac" => {key => "HpWx9z", label => "Battlefield 1942 (Mac)"},
+ "bfield1942mac" => {key => "HpWx9z", label => "Battlefield 1942 MAC"},
+ "bfield1942ps2" => {key => "HpWx9z", label => "Battlefield Modern Combat (PS2)"},
+ "bfield1942ps2am" => {key => "HpWx9z", label => "Battlefield Modern Combat Automatch (PS2)"},
+ "bfield1942ps2b" => {key => "HpWx9z", label => "Battlefield Modern Combat (PS2) Beta"},
+ "bfield1942rtr" => {key => "HpWx9z", label => "Battlefield 1942: Road to Rome"},
+ "bfield1942rtrm" => {key => "HpWx9z", label => "Battlefield 1942 Road to Rome (Mac)"},
+ "bfield1942sw" => {key => "HpWx9z", label => "Battlefield 1942: Secret Weapons of WW2"},
+ "bfield1942swd" => {key => "r3Yjs8", label => "Battlefield 1942: Secret Weapons of WW2 Demo"},
+ "bfield1942t" => {key => "HpWx9z", label => "Battlefield 1942 Testing"},
+ "bfield2xp1" => {key => "hW6m9a", label => "Battlefield 2: Special Forces"},
+ "bfvietnam" => {key => "h2P9dJ", label => "Battlefield: Vietnam"},
+ "bfvietnamt" => {key => "h2P9dJ", label => "Battlefield: Vietnam Testing"},
+ "bg2bhaal" => {key => "532HaZ", label => "Baldurs Gate 2: Throne of Bhaal"},
+ "bgate" => {key => "2ozFrM", label => "Baldur's Gate"},
+ "bgate2" => {key => "U9b3an", label => "Balders Gate 2"},
+ "bgatetales" => {key => "GjuMcs", label => "Baldurs Gate: Tales of the Sword Coast"},
+ "bgeverwii" => {key => "zDalN6", label => "Best Game Ever (WiiWare)"},
+ "biahhJPps3" => {key => "oAEUPB", label => "Brothers In Arms: Hell's Highway (PS3) (JPN)"},
+ "biahhJPps3am" => {key => "oAEUPB", label => "Brothers In Arms: Hell's Highway Automatch ("},
+ "biahhJPps3d" => {key => "oAEUPB", label => "Brothers In Arms: Hell's Highway Demo (PS3)"},
+ "biahhPCHpc" => {key => "NFBVyk", label => "Brothers In Arms: Hell's Highway (PC) (POL/CZ"},
+ "biahhPCHpcam" => {key => "NFBVyk", label => "Brothers In Arms: Hell's Highway Automatch ("},
+ "biahhPOLps3" => {key => "zEo2mk", label => "Brothers In Arms: Hell's Highway (PS3) (POL)"},
+ "biahhPOLps3am" => {key => "zEo2mk", label => "Brothers In Arms: Hell's Highway Automatch ("},
+ "biahhPOLps3d" => {key => "zEo2mk", label => "Brothers In Arms: Hell's Highway Demo (PS3)"},
+ "biahhPRps3" => {key => "hWpJhQ", label => "Brothers In Arms: Hell's Highway (PS3) (RUS)"},
+ "biahhPRps3am" => {key => "hWpJhQ", label => "Brothers In Arms: Hell's Highway Automatch ("},
+ "biahhPRps3d" => {key => "hWpJhQ", label => "Brothers In Arms: Hell's Highway Demo (PS3)"},
+ "biahhRUSpc" => {key => "dhkWdE", label => "Brothers In Arms: Hell's Highway (PC) (RUS)"},
+ "biahhRUSpcam" => {key => "dhkWdE", label => "Brothers In Arms: Hell's Highway Automatch ("},
+ "bioshock" => {key => "SGeqMj", label => "Bioshock Demo"},
+ "bioshockd" => {key => "eoaXfs", label => "Bioshock"},
+ "birhhpc" => {key => "sPZGCy", label => "Brothers In Arms: Hell's Highway (PC)"},
+ "birhhpcam" => {key => "sPZGCy", label => "Brothers In Arms: Hell's Highway Automatch (P"},
+ "birhhps3" => {key => "HrDRqe", label => "Brothers In Arms: Hell's Highway (PS3)"},
+ "birhhps3am" => {key => "HrDRqe", label => "Brothers In Arms: Hell's Highway Clone Automa"},
+ "black9pc" => {key => "h2F9cv", label => "Black9 (PC)"},
+ "black9ps2" => {key => "w3D8gY", label => "Black9 (PS2)"},
+ "blade" => {key => "Eel1q7", label => "Blade"},
+ "blade" => {key => "Eel1q7", label => "Blade of Darkness"},
+ "blademasters" => {key => "B3Avke", label => "Legend of the Blademasters"},
+ "blahblahtest" => {key => "uH88tT", label => "Just another test for masterid"},
+ "blahmasterid" => {key => "uH88tT", label => "Just another test for masterid"},
+ "blahtest" => {key => "uH88tT", label => "Just another test for masterid"},
+ "blandsjpnps3" => {key => "TrcpZd", label => "Borderlands JPN (PS3)"},
+ "blandsjpnps3am" => {key => "TrcpZd", label => "Borderlands JPN Automatch (PS3)"},
+ "blandsonlive" => {key => "T6XRqP", label => "Borderlands ONLIVE"},
+ "blandsonliveam" => {key => "T6XRqP", label => "Borderlands ONLIVE Automatch"},
+ "bldragondds" => {key => "HPN6nJ", label => "Blue Dragon D (DS)"},
+ "bldragonddsam" => {key => "HPN6nJ", label => "Blue Dragon D Automatch (DS)"},
+ "bldragondfdsam" => {key => "4GLxnr", label => "Blue Dragon F Automatch (DS)"},
+ "bldragonds" => {key => "iICaoP", label => "Blue Dragon (DS)"},
+ "bldragoneuds" => {key => "WsdhMJ", label => "Blue Dragon EU (DS)"},
+ "bldragoneudsam" => {key => "WsdhMJ", label => "Blue Dragon EU Automatch (DS)"},
+ "bldragonfds" => {key => "4GLxnr", label => "Blue Dragon F (DS)"},
+ "bldragonfdsam" => {key => "4GLxnr", label => "Blue Dragon F Automatch (DS)"},
+ "bldragonids" => {key => "zvpxQy", label => "Blue Dragon I (DS)"},
+ "bldragonidsam" => {key => "zvpxQy", label => "Blue Dragon I Automatch (DS)"},
+ "bldragonNAds" => {key => "JfXyGi", label => "Blue Dragon - Awakened Shadow"},
+ "bldragonNAdsam" => {key => "JfXyGi", label => "Blue Dragon - Awakened Shadow Automatch"},
+ "bldragonsds" => {key => "kqc1U3", label => "Blue Dragon S (DS)"},
+ "bldragonsdsam" => {key => "kqc1U3", label => "Blue Dragon S Automatch (DS)"},
+ "bleach1EUds" => {key => "9AxT0s", label => "Bleach DS (EU) (DS)"},
+ "bleach1USds" => {key => "d4wISd", label => "Bleach DS (US) (DS)"},
+ "bleach2ds" => {key => "Txc4SQ", label => "Bleach DS 2: Requiem in the black robe (DS)"},
+ "bleach2EUds" => {key => "B0veR8", label => "Bleach DS 2: Requiem in the black robe (EU) ("},
+ "bleach2USds" => {key => "7xEJsp", label => "Bleach DS 2 (US) (DS)"},
+ "bleach2wii" => {key => "hTswOX", label => "BLEACH Wii2 (Wii)"},
+ "bleachds" => {key => "5BuVRR", label => "Bleach (DS)"},
+ "blic2007" => {key => "X2P8Th", label => "Brian Lara International Cricket 2007"},
+ "blindpointpc" => {key => "IGbJEs", label => "Blind Point (PC)"},
+ "blindpointpcam" => {key => "IGbJEs", label => "Blind Point Automatch (PC)"},
+ "blindpointpcd" => {key => "IGbJEs", label => "Blind Point Demo (PC)"},
+ "blitz08ps3" => {key => "Jk4zlB", label => "Blitz: The League 08 (PS3)"},
+ "blitz08ps3am" => {key => "Jk4zlB", label => "Blitz: The League 08 Automatch (PS3)"},
+ "blitz08ps3d" => {key => "Jk4zlB", label => "Blitz: The League 08 Demo (PS3)"},
+ "blitz2004ps2" => {key => "w3Rk7F", label => "NFL Blitz 2004 (PS2)"},
+ "blitz2004ps2b" => {key => "y3G9dJ", label => "NFL Blitz Pro 2004 Beta (PS2)"},
+ "blitz2004ps2e" => {key => "t3Fg7C", label => "NFL Blitz Pro 2004 E3 (PS2)"},
+ "blitz2005ps2" => {key => "uY39vA", label => "Blitz: The League 2005"},
+ "blitzkrieg" => {key => "fYDXBN", label => "Blitzkrieg"},
+ "blitzkriegrt" => {key => "fYDXBN", label => "Blitzkrieg: Rolling Thunder"},
+ "blkhwkdnps2" => {key => "7wM8sZ", label => "Delta Force: Black Hawk Down (PS2)"},
+ "blkhwkdnps2" => {key => "7wM8sZ", label => "Delta Force: Black Hawk Down PS2"},
+ "blkuzushiwii" => {key => "Fi1p8K", label => "THE Block Kuzushi - With the Stage Creation f"},
+ "bllrs2004pal" => {key => "t3w6k8", label => "NBA Ballers PAL (PS2)"},
+ "bllrs2004ps2" => {key => "t3w6k8", label => "NBA Ballers (PS2)"},
+ "bllrs2004ps2d" => {key => "t3w6k8", label => "NBA Ballers Demo (PS2)"},
+ "bllrs2005ps2" => {key => "4StbWm", label => "NBA Ballers 2005 (PS2)"},
+ "bllrs2005ps2d" => {key => "4StbWm", label => "NBA Ballers 2005 Demo (PS2)"},
+ "blockade" => {key => "3sAJtI", label => "Operation Blockade"},
+ "blockoutwii" => {key => "6DPfd2", label => "Blockout (Wii)"},
+ "blockrushwii" => {key => "LbsgGO", label => "Blockrush! (WiiWare)"},
+ "blood2" => {key => "jUOF0p", label => "Blood II"},
+ "bluemarspc" => {key => "qMJq8p", label => "Blue Mars (PC)"},
+ "bluemarspcam" => {key => "qMJq8p", label => "Blue Mars Automatch (PC)"},
+ "blurds" => {key => "E8xJSw", label => "Blur (DS)"},
+ "blurdsam" => {key => "E8xJSw", label => "Blur Automatch (DS)"},
+ "blzrdriverds" => {key => "n9HLOG", label => "Blazer Drive (DS)"},
+ "bmbermanexdsi" => {key => "nhQakb", label => "Bomberman Express (DSiWare)"},
+ "boardgamesds" => {key => "fFgBAt", label => "The Best of Board Games (DS)"},
+ "bodarkness" => {key => "Jn33pM", label => "Blade of Darkness"},
+ "boggle" => {key => "geaDfe", label => "Boggle"},
+ "bokujomonods" => {key => "mM94Uc", label => "Bokujo Monogatari DS2: Wish-ComeTrue Island ("},
+ "bokujyods" => {key => "O5ZdFP", label => "Bokujyo Monogatari Himawari Shoto wa Oosawagi"},
+ "bokujyomonds" => {key => "aydHX0", label => "Bokujyo Monogatari Youkoso! Kaze no Bazzare ("},
+ "bokutwinvilds" => {key => "z9VMe9", label => "Bokujyo Monogatari Twin Village (DS)"},
+ "bomberfunt" => {key => "bbeBZG", label => "BomberFUN Tournament"},
+ "bomberman20ds" => {key => "JZ2s7T", label => "Bomberman 2.0 (DS)"},
+ "bomberman2wii" => {key => "mWTGGw", label => "Bomberman 2 (Wii)"},
+ "bomberman2wiid" => {key => "mWTGGw", label => "Bomberman 2 Demo (Wii)"},
+ "bombermanslds" => {key => "9dG7KP", label => "Bomberman Story/Land DS"},
+ "bombls2ds" => {key => "8BuVqr", label => "Touch! Bomberman Land 2 / Bomberman DS 2 (DS)"},
+ "bonkwii" => {key => "QeXwBs", label => "Bonk (Wii)"},
+ "botbattles" => {key => "Admg3p", label => "Tex Atomics Big Bot Battles"},
+ "bots" => {key => "JKb462", label => "Bots (Lith)"},
+ "boyvgirlcwii" => {key => "gWFTR4", label => "Boys vs Girls Summer Camp (Wii)"},
+ "breed" => {key => "t3Fw7r", label => "Breed"},
+ "breedd" => {key => "u7Gc92", label => "Breed Demo"},
+ "bridgebaron14" => {key => "hd3Y2o", label => "Bridge Baron"},
+ "brigades" => {key => "nUAsKm", label => "Gamespy Brigades"},
+ "bsmidway" => {key => "fLtUIc", label => "Battlestations Midway Demo"},
+ "bsmidwaypc" => {key => "qY84Ne", label => "Battlestations Midway PC"},
+ "bsmidwaypcam" => {key => "qY84Ne", label => "Battlestations Midway PC (automatch)"},
+ "bsmidwayps2" => {key => "qY84Ne", label => "Battlestations Midway PS2"},
+ "bsmidwayps2am" => {key => "qY84Ne", label => "Battlestations Midway PS2 (automatch)"},
+ "bspiritsds" => {key => "rFSr5s", label => "Battle Spirits (DS)"},
+ "bspiritsdsam" => {key => "rFSr5s", label => "Battle Spirits Automatch (DS)"},
+ "bstormps3" => {key => "2skyJh", label => "BulletStorm (PS3)"},
+ "bstormps3am" => {key => "2skyJh", label => "BulletStorm Automatch (PS3)"},
+ "bstrikeotspc" => {key => "7vRSBa", label => "Battlestrike: Operation Thunderstorm (PC)"},
+ "bstrikeotspcam" => {key => "7vRSBa", label => "Battlestrike: Operation Thunderstorm Automat"},
+ "bstrikeotspcd" => {key => "7vRSBa", label => "Battlestrike: Operation Thunderstorm Demo (P"},
+ "buccaneer" => {key => "sAhRTM", label => "Buccaneer The Pursuit of Infamy"},
+ "buccaneerpc" => {key => "vFNtGi", label => "Buccaneer (PC)"},
+ "buccaneerpcam" => {key => "vFNtGi", label => "Buccaneer Automatch (PC)"},
+ "buccaneerpcd" => {key => "vFNtGi", label => "Buccaneer Demo (PC)"},
+ "buckmaster" => {key => "4NcAZg", label => "Buckmaster Deer Hunting"},
+ "buckshotwii" => {key => "p6QgFH", label => "Buck Shot (Wii)"},
+ "buckshotwiiam" => {key => "p6QgFH", label => "Buck Shot Automatch (Wii)"},
+ "bumperwars" => {key => "Rp5kAG", label => "Bumper Wars!"},
+ "bz2" => {key => "tGbcNv", label => "Battlezone 2"},
+ "c5" => {key => "uQCWJs", label => "Conflict: Denied Ops"},
+ "cadZ2JPwii" => {key => "Z5bgxv", label => "Caduceus Z2 (Wii)"},
+ "callofduty" => {key => "K3dV7n", label => "Call of Duty"},
+ "callofduty2" => {key => "DSpIxw", label => "Call of Duty 2"},
+ "callofduty4" => {key => "TEuBmf", label => "Call of Duty 4: Modern Warfare"},
+ "callofduty4d2d" => {key => "AOPMCh", label => "Call of Duty 4: Modern Warfare"},
+ "callofduty4d2d" => {key => "AOPMCh", label => "Call of Duty 4: Modern Warfare (D2D)"},
+ "callofduty5" => {key => "VycTat", label => "Call of Duty 5"},
+ "callofdutyps2" => {key => "tR32nC", label => "Call of Duty (PS2)"},
+ "callofdutyps2" => {key => "tR32nC", label => "Call of Duty: Finest Hour PS2"},
+ "callofdutyps2d" => {key => "tR32nC", label => "Call of Duty (PS2) Sony Beta"},
+ "callofdutyuo" => {key => "KDDIdK", label => "Call of Duty: United Offensive"},
+ "capitalism2" => {key => "ihPU0u", label => "Capitalism 2"},
+ "captsubasads" => {key => "A738z3", label => "Captain tsubasa (DS)"},
+ "cardgamesds" => {key => "6iGEJe", label => "The Best of Card Games (DS)"},
+ "cardherods" => {key => "FRzL49", label => "Card Hero DSi (DS)"},
+ "cardherodsam" => {key => "FRzL49", label => "Card Hero DSi Automatch (DS)"},
+ "cardheroesds" => {key => "xnSA6P", label => "Card Heroes (DS)"},
+ "cardiowrk2wii" => {key => "ByKsx6", label => "Cardio Workout 2 (Wii)"},
+ "carnivalkwii" => {key => "iTuqoN", label => "Carnival King (WiiWare)"},
+ "carnivores3" => {key => "yd7J2o", label => "Carnivores 3"},
+ "casinotourwii" => {key => "WykxqZ", label => "Casino Tournament (Wii)"},
+ "casinotourwiiam" => {key => "WykxqZ", label => "Casino Tournament Automatch (Wii)"},
+ "castles" => {key => "31zdyb", label => "Castles and Catapluts"},
+ "castlestrike" => {key => "GPcglz", label => "Castle Strike"},
+ "cavestorywii" => {key => "tWThgd", label => "Cave Story (WiiWare)"},
+ "cb2ds" => {key => "V47Nu4", label => "CB2 (DS)"},
+ "cc3arenapc" => {key => "gE7WcR", label => "Command & Conquer: Arena"},
+ "cc3arenapcam" => {key => "gE7WcR", label => "Command & Conquer: Arena Automatch"},
+ "cc3arenapcd" => {key => "gE7WcR", label => "Command & Conquer: Arena Demo"},
+ "cc3dev" => {key => "Ba77xN", label => "Command & Conquer 3 Dev Environment"},
+ "cc3devam" => {key => "Ba77xN", label => "Command & Conquer 3 Dev Environment Automatch"},
+ "cc3kw" => {key => "TPLstA", label => "Command & Conquer 3 Kanes Wrath"},
+ "cc3kw" => {key => "TPLstA", label => "Command and Conquer 3 Kanes Wrath"},
+ "cc3kwcd" => {key => "TPLstA", label => "Command and Conquer 3 Kanes Wrath CD Key Auth"},
+ "cc3kwcdam" => {key => "TPLstA", label => "Command and Conquer 3 Kanes Wrath CD Key Auth"},
+ "cc3kwmb" => {key => "TPLstA", label => "Command and Conquer 3 Kanes Wrath Match Broad"},
+ "cc3tibwars" => {key => "E4F3HB", label => "Command & Conquer 3: Tiberium Wars"},
+ "cc3tibwarsam" => {key => "E4F3HB", label => "Command & Conquer 3: Tiberium Wars Automatch"},
+ "cc3tibwarscd" => {key => "E4F3HB", label => "Command & Conquer 3: Tiberium Wars CD Key Aut"},
+ "cc3tibwarscdam" => {key => "E4F3HB", label => "Command & Conquer 3: Tiberium Wars CD Key Aut"},
+ "cc3tibwarsd" => {key => "yGVzUf", label => "Command & Conquer 3 Demo"},
+ "cc3tibwarsmb" => {key => "GmMKoK", label => "Command & Conquer 3: Tiberium Wars Match Broa"},
+ "cc3xp1" => {key => "BhcJLQ", label => "Command & Conquer 3: Expansion Pack 1"},
+ "cc3xp1" => {key => "BhcJLQ", label => "Command & Conquer 3: Kanes Wrath"},
+ "cc3xp1am" => {key => "BhcJLQ", label => "Command & Conquer 3: Expansion Pack 1 Automat"},
+ "cc3xp1mb" => {key => "BhcJLQ", label => "Command & Conquer 3: Kane's Wrath Match Broad"},
+ "ccgenerals" => {key => "h5T2f6", label => "Command & Conquer Generals"},
+ "ccgenerals" => {key => "h5T2f6", label => "Command and Conquer Generals"},
+ "ccgeneralsb" => {key => "g3T9s2", label => "Command and Conquer Generals Closed Beta"},
+ "ccgenzh" => {key => "D6s9k3", label => "Command & Conquer Generals Zero Hour"},
+ "ccgenzh" => {key => "D6s9k3", label => "Command and Conquer Generals: Zero Hour"},
+ "ccombat3" => {key => "TKuE2P", label => "Close Combat 3"},
+ "ccombat3" => {key => "TKuE2P", label => "Close Combat III: The Russian Front"},
+ "ccrenegade" => {key => "tY1S8q", label => "Command and Conquer: Renegade"},
+ "ccrenegadedemo" => {key => "LsEwS3", label => "Command and Conquer: Renegade Demo"},
+ "celebdm" => {key => "h5D7j8", label => "Celebrity Deathmatch"},
+ "cellfactorpc" => {key => "gkVTh8", label => "CellFactor: Ignition (PC)"},
+ "cellfactorpcam" => {key => "gkVTh8", label => "CellFactor: Ignition Automatch (PSN) Clone"},
+ "cellfactorpsn" => {key => "gkVTh8", label => "CellFactor: Ignition (PSN)"},
+ "cellfactorpsnam" => {key => "gkVTh8", label => "CellFactor: Ignition Automatch (PSN)"},
+ "cellfacttwpc" => {key => "4aN3Pn", label => "Cell Factor:TW (PC)"},
+ "cellfacttwpcam" => {key => "4aN3Pn", label => "Cell Factor:TW Automatch (PC)"},
+ "celtickings" => {key => "MIq0wW", label => "Druid King"},
+ "celtickingsdemo" => {key => "TCQMZI", label => "Celtic Kings Demo"},
+ "celtickingspu" => {key => "WxaKUc", label => "Nemesis of the Roman Empire"},
+ "cfs" => {key => "ydxbnf", label => "Combat Flight Simulator"},
+ "cfs2" => {key => "uPkKya", label => "Combat Flight Simulator 2"},
+ "cfs2" => {key => "uPkKya", label => "MS Combat Flight Simulator 2"},
+ "champgamesps3" => {key => "dwg55x", label => "High Stakes on the Vegas Strip: Poker Edition"},
+ "charcollectds" => {key => "DlZ3ac", label => "Character Collection! DS (DS)"},
+ "chaser" => {key => "Pe4W2B", label => "Chaser"},
+ "chaserd" => {key => "3R5fi7", label => "Chaser Demo"},
+ "chasspart5" => {key => "p4kGg7", label => "ChessPartner 5"},
+ "chat" => {key => "DagNzk", label => "Chat Service"},
+ "checkers" => {key => "2hfuJA", label => "Hasbro's Checkers"},
+ "cheetah3ds" => {key => "4aCzFd", label => "The Cheetah Girls 3 (DS)"},
+ "chesk" => {key => "W5Hl41", label => "Chesk"},
+ "chess" => {key => "g11Aig", label => "Hasbro's Chess"},
+ "chesschalwii" => {key => "EU1zXz", label => "Chess Challenge! (WiiWare)"},
+ "chesschalwiiam" => {key => "EU1zXz", label => "Chess Challenge! Automatch (WiiWare)"},
+ "chessrevmac" => {key => "kpWAJE", label => "chess revolution mac"},
+ "chessrevmacam" => {key => "kpWAJE", label => "chess revolution mac Automatch"},
+ "chessrevpc" => {key => "IUQltN", label => "chess revolution pc"},
+ "chessrevpcam" => {key => "IUQltN", label => "chess revolution pc Automatch"},
+ "chesswii" => {key => "X8qanS", label => "Wii Chess (Wii)"},
+ "chessworlds" => {key => "5Hm41y", label => "Chess Worlds"},
+ "cheuchre" => {key => "Yw7fc9", label => "Championship Euchre"},
+ "chhearts" => {key => "Yw7fc9", label => "Championship Hearts"},
+ "chocmbeuds" => {key => "O8r2ST", label => "Chocobo & Magic Book (EU) (DS)"},
+ "chocobombds" => {key => "FP75Oy", label => "Chocobo & Magic Book (DS)"},
+ "chocotokids" => {key => "yfVdWO", label => "Shido to Chocobo no Fushigina Dungeon Tokiwas"},
+ "chocotokiwii" => {key => "uxXJS3", label => "Chocobo no Fushigina Dungeon: Toki-Wasure no"},
+ "chspades" => {key => "Yw7fc9", label => "Championship Spades"},
+ "cityofheroes" => {key => "tJnRie", label => "City of Heroes"},
+ "cityofvl" => {key => "LEJaXZ", label => "City of Villains"},
+ "civ2gold" => {key => "alVRIq", label => "Civilization 2: Gold"},
+ "civ2gold" => {key => "alVRIq", label => "Civilization II Gold"},
+ "civ2tot" => {key => "alVRIq", label => "Civ2TOTime"},
+ "civ2tot" => {key => "alVRIq", label => "Civilization II: Test of Time"},
+ "civ3con" => {key => "h4D8Wc", label => "Civilization III: Conquests"},
+ "civ3conb" => {key => "g3e9J1", label => "Civilization III: Conquests Beta"},
+ "civ3ptw" => {key => "yboeRW", label => "Civilization III: Play Th"},
+ "civ4" => {key => "y3D9Hw", label => "Civilization IV"},
+ "civ4am" => {key => "y3D9Hw", label => "Civilization IV Automatch"},
+ "civ4b" => {key => "y3D9Hw", label => "Civilization 4 Beta"},
+ "civ4bts" => {key => "Cs2iIq", label => "Civilization IV: Beyond the Sword"},
+ "civ4btsam" => {key => "Cs2iIq", label => "Civilization IV: Beyond the Sword Automatch"},
+ "civ4btsjp" => {key => "Cs2iIq", label => "Civilization IV: Beyond the Sword (Japanese)"},
+ "civ4btsjpam" => {key => "Cs2iIq", label => "Civilization IV: Beyond the Sword Automatch"},
+ "civ4ch" => {key => "y3D9Hw", label => "Civiliation IV (Chinese)"},
+ "civ4cham" => {key => "y3D9Hw", label => "Civiliation IV Automatch (Chinese)"},
+ "civ4coljp" => {key => "5wddmt", label => "Sid Meier's Civilization 4: Colonization (PC"},
+ "civ4coljpam" => {key => "5wddmt", label => "Sid Meier's Civilization 4: Colonization Aut"},
+ "civ4colpc" => {key => "2yheDS", label => "Sid Meier's Civilization 4: Colonization (PC/"},
+ "civ4colpcam" => {key => "2yheDS", label => "Sid Meier's Civilization 4: Colonization Aut"},
+ "civ4colpcd" => {key => "2yheDS", label => "Sid Meier's Civilization 4: Colonization Dem"},
+ "civ4jp" => {key => "y3D9Hw", label => "Civiliation IV (Japanese)"},
+ "civ4jpam" => {key => "y3D9Hw", label => "Civiliation IV Automatch (Japanese)"},
+ "civ4mac" => {key => "CWiCbk", label => "Civilization IV (MAC)"},
+ "civ4macam" => {key => "CWiCbk", label => "Civilization IV Automatch (MAC)"},
+ "civ4ru" => {key => "y3D9Hw", label => "Civiliation IV (Russian)"},
+ "civ4ruam" => {key => "y3D9Hw", label => "Civiliation IV Automatch (Russian)"},
+ "civ4wrld" => {key => "oQ3v8V", label => "Civilization IV: Warlords"},
+ "civ4wrldam" => {key => "oQ3v8V", label => "Civilization IV: Warlords Automatch"},
+ "civ4wrldcn" => {key => "oQ3v8V", label => "Civilization IV: Warlords (Chinese)"},
+ "civ4wrldcnam" => {key => "oQ3v8V", label => "Civilization IV: Warlords Automatch (Chinese"},
+ "civ4wrldjp" => {key => "oQ3v8V", label => "Civilization IV: Warlords (Japan)"},
+ "civ4wrldjpam" => {key => "oQ3v8V", label => "Civilization IV: Warlords Automatch (Japan)"},
+ "civ4wrldmac" => {key => "QtCpWE", label => "Civilization IV: Warlords (MAC)"},
+ "civ4wrldmacam" => {key => "QtCpWE", label => "Civilization IV: Warlords Automatch (MAC)"},
+ "civ4xp3" => {key => "lgNJU7", label => "Civilization IV: 3rd Expansion"},
+ "civ4xp3am" => {key => "lgNJU7", label => "Civilization IV: 3rd Expansion Automatch"},
+ "civ4xp3d" => {key => "lgNJU7", label => "Civilization IV: 3rd Expansion Demo"},
+ "civ5" => {key => "kB4qBk", label => "Civilization 5"},
+ "civconps3" => {key => "hn53vx", label => "Civilization Revolution (PS3)"},
+ "civconps3am" => {key => "hn53vx", label => "Civ Console Automatch (PS3)"},
+ "civconps3d" => {key => "hn53vx", label => "Civilization Revolution Demo (PS3)"},
+ "civrevasiaps3" => {key => "xUfwlE", label => "Civilization Revolution (Asia) (PS3)"},
+ "civrevasips3d" => {key => "xUfwlE", label => "Civilization Revolution Demo (Asia) (PS3)"},
+ "civrevoasiads" => {key => "QXhNdz", label => "Sid Meier's Civilization Revolution (DS, Asia"},
+ "civrevods" => {key => "o3WUx2", label => "Sid Meier's Civilization Revolution (DS)"},
+ "claw" => {key => "ziPwZG", label => "Claw"},
+ "close4bb" => {key => "alVRIq", label => "Close Combat IV: Battle of the Bulge"},
+ "close4bb" => {key => "alVRIq", label => "CloseCombat4BB"},
+ "close5" => {key => "XBOEdl", label => "Close Combat 5"},
+ "close5dmo" => {key => "V0tKnY", label => "Close Combat 5 Demo"},
+ "close5dmo" => {key => "V0tKnY", label => "Close Combat 5: Invasion Normandy Demo"},
+ "closecomftf" => {key => "iLw37m", label => "Close Combat: First to Fight"},
+ "closecomftfmac" => {key => "iLw37m", label => "Close Combat: First to Fight Mac"},
+ "closecomftfmac" => {key => "iLw37m", label => "Close Combat: First to Fight MAC"},
+ "clubgameKORds" => {key => "Jb3Tt1", label => "Clubhouse Games (KOR) (DS)"},
+ "CM_Testing" => {key => "IHReee", label => "Content Moderation Test Game"},
+ "cmanager" => {key => "S6aiiO", label => "Cycling Manager"},
+ "cmanager3" => {key => "T3d8yH", label => "Cycling Manager 3"},
+ "cmmwcpoker" => {key => "iRU92a", label => "Chris Moneymaker's World Championship Poker"},
+ "cmmwcpoker" => {key => "iRU92a", label => "Chris Moneymakers World Championship Poker"},
+ "cmr4pc" => {key => "t3F9f1", label => "Colin McRae Rally 4 (PC)"},
+ "cmr4pcd" => {key => "t3F9f1", label => "Colin McRae Rally 4 Demo (PC)"},
+ "cmr5pc" => {key => "hH3Ft8", label => "Colin McRae Rally 5 PC"},
+ "cmr5pcd" => {key => "hH3Ft8", label => "Colin McRae Rally 5 PC demo"},
+ "cmr5ps2" => {key => "hH3Ft8", label => "Colin McRae Rally 5 PS2"},
+ "CMwrldkitwii" => {key => "24vlFy", label => "Cooking Mama: World Kitchen (Wii)"},
+ "cneagle" => {key => "HNvEAc", label => "Codename: Eagle"},
+ "cnoutbreak" => {key => "Jg43a1", label => "Codename: Outbreak"},
+ "cnoutbreakd" => {key => "Jg43a1", label => "Codename: Outbreak Demo"},
+ "cnpanzers" => {key => "h3Tod8", label => "Codename Panzers"},
+ "cnpanzers2" => {key => "h3Tod8", label => "Codename Panzers Phase 2"},
+ "cnpanzers2cw" => {key => "2mEAh7", label => "Codename Panzers 2: Cold Wars (PC)"},
+ "cnpanzers2cwam" => {key => "2mEAh7", label => "Codename Panzers 2: Cold Wars Automatch"},
+ "cnpanzers2cwb" => {key => "uazO6l", label => "Codename Panzers 2: Cold Wars BETA (PC)"},
+ "cnpanzers2cwbam" => {key => "uazO6l", label => "Codename Panzers 2: Cold Wars BETA Automatch"},
+ "cnpanzers2cwd" => {key => "2mEAh7", label => "Codename Panzers 2: Cold Wars Demo"},
+ "cod5victoryds" => {key => "z8ooR0", label => "Call of Duty 5: Victory (DS)"},
+ "cod5wii" => {key => "XSq2xz", label => "Call of Duty 5 (Wii)"},
+ "cod7ds" => {key => "qMrpGp", label => "Call of Duty 7 (DS)"},
+ "cod7dsam" => {key => "qMrpGp", label => "Call of Duty 7 Automatch (DS)"},
+ "codbigredps2" => {key => "ye4Fd8", label => "Call of Duty 2: Big Red One (PS2)"},
+ "codblackopspc" => {key => "LwzOpE", label => "Call of Duty: Black Ops (PC)"},
+ "codblackopspcam" => {key => "LwzOpE", label => "Call of Duty: Black Ops Automatch (PC)"},
+ "codedarmspsp" => {key => "E7Emxp", label => "Coded Arms (PSP)"},
+ "codedarmspspam" => {key => "E7Emxp", label => "Coded Arms Automatch (PSP)"},
+ "codmw2ds" => {key => "0DzDcW", label => "Call of Duty: Modern Warfare 2 (DS)"},
+ "codwaw" => {key => "LdlpcA", label => "Call of Duty: World at War"},
+ "codwawbeta" => {key => "iqEFLl", label => "Call of Duty: World at War Beta"},
+ "coh2pc" => {key => "J4b95X", label => "Code of Honor 2 (PC)"},
+ "coh2pcam" => {key => "J4b95X", label => "Code of Honor 2 Automatch (PC)"},
+ "cohof" => {key => "epROcy", label => "Company of Heroes: Opposing Fronts"},
+ "cohofbeta" => {key => "LAedqA", label => "Company of Heroes: Opposing Fronts MP Beta"},
+ "colcourseds" => {key => "T9aQ3K", label => "Collision Course (DS)"},
+ "combat" => {key => "p5kGh7", label => "Combat"},
+ "combatzonepc" => {key => "3NncWS", label => "Combat Zone - Special Forces (PC)"},
+ "combatzonepcam" => {key => "3NncWS", label => "Combat Zone - Special Forces Automatch (PC)"},
+ "combatzonepcd" => {key => "3NncWS", label => "Combat Zone - Special Forces Demo (PC)"},
+ "commandos2" => {key => "V0tKnY", label => "Commandos 2"},
+ "commandos3" => {key => "uukfJz", label => "Commandos 3"},
+ "commandpc" => {key => "rSRJDr", label => "Commanders: Attack!"},
+ "commandpcam" => {key => "rSRJDr", label => "Commanders: Attack! Automatch"},
+ "comrade" => {key => "F72JWS", label => "Comrade"},
+ "conan" => {key => "4J8df9", label => "Conan: The Dark Axe"},
+ "condemned2bs" => {key => "kwQ9Ak", label => "Condemned 2: Bloodshot (PS3)"},
+ "condemned2bsam" => {key => "kwQ9Ak", label => "Condemned 2: Bloodshot Automatch"},
+ "condemned2bsd" => {key => "kwQ9Ak", label => "Condemned 2: Bloodshot Demo (PS3)"},
+ "conduit2wii" => {key => "io3vKi", label => "The Conduit 2 (Wii)"},
+ "conduitwii" => {key => "GTd9OX", label => "The Conduit (Wii)"},
+ "conflictsopc" => {key => "vh398A", label => "Conflict: Global Storm"},
+ "conflictsopc" => {key => "vh398A", label => "Conflict: Special Ops"},
+ "conflictsopc" => {key => "vh398A", label => "Conflict: Special Ops PC"},
+ "conflictsops2" => {key => "vh398A", label => "Conflict: Global Storm PS2"},
+ "conflictsops2" => {key => "vh398A", label => "Conflict: Special Ops PS2"},
+ "conflictzone" => {key => "g7nLfZ", label => "Conflict Zone"},
+ "connect4" => {key => "2Pnx6I", label => "Hasbro's Connect 4"},
+ "conquestfw" => {key => "ORp4kG", label => "Conquest: Frontier Wars"},
+ "conquestfwd" => {key => "ZIr0wW", label => "Conquest: Frontier Wars D"},
+ "contactds" => {key => "quPooS", label => "Contact JPN (DS)"},
+ "contactusds" => {key => "pEldCc", label => "Contact US (DS)"},
+ "contractjack" => {key => "h3K8f2", label => "Contract Jack"},
+ "contractjackd" => {key => "U3k2f8", label => "Contract Jack Demo"},
+ "contractjackpr" => {key => "U3k2f8", label => "Contract Jack PR Demo"},
+ "contrads" => {key => "bw215o", label => "Contra DS (DS)"},
+ "cossacks" => {key => "p2vPkJ", label => "Cossacks: European Wars"},
+ "coteagles" => {key => "cEb84M", label => "War Front: Turning Point"},
+ "coteaglesam" => {key => "cEb84M", label => "War Front: Turning Point Automatch"},
+ "coteaglessp" => {key => "cEb84M", label => "War Front: Turning Point (singleplayer)"},
+ "cpenguin2ds" => {key => "1XafMv", label => "Club Penguin 2 (DS)"},
+ "cpenguin2wii" => {key => "Nu3Uqi", label => "Club Penguin 2 (Wii)"},
+ "crashnburnps2" => {key => "gj7F3p", label => "Crash 'n' Burn PS2"},
+ "crashnburnps2" => {key => "gj7F3p", label => "Crash N Burn (PS2)"},
+ "crashnburnps2b" => {key => "gj7F3p", label => "Crash N Burn Sony Beta (PS2)"},
+ "crashnitro" => {key => "3E8fT5", label => "Crash Nitro Carts"},
+ "cribbage" => {key => "TKuE2P", label => "Hasbro's Cribbage"},
+ "cricket2007" => {key => "ABiuJy", label => "Brian Lara International Cricket 2007"},
+ "crimson" => {key => "YBLJwU", label => "Crimson Skies"},
+ "crmgdntdr2k" => {key => "W5Hl31", label => "Carmageddon TDR 2000"},
+ "crttestdead" => {key => "111111", label => "CRT - TEST"},
+ "cruciform" => {key => "TgsP47", label => "Genesis Rising: The Universal Crusade"},
+ "cruciformam" => {key => "TgsP47", label => "Genesis Rising: The Universal Crusade Automat"},
+ "crysis" => {key => "ZvZDcL", label => "Crysis (PC)"},
+ "crysis2pc" => {key => "XeS9dz", label => "Crysis 2 (PC)"},
+ "crysis2pcam" => {key => "XeS9dz", label => "Crysis 2 Automatch (PC)"},
+ "crysis2pcd" => {key => "XeS9dz", label => "Crysis 2 Demo (PC)"},
+ "crysis2ps3" => {key => "lhgvHv", label => "Crysis 2 (PS3)"},
+ "crysis2ps3am" => {key => "lhgvHv", label => "Crysis 2 Automatch (PS3)"},
+ "crysis2ps3d" => {key => "lhgvHv", label => "Crysis 2 Demo (PS3)"},
+ "crysis2x360" => {key => "A3Xz9h", label => "Crysis 2 (Xbox 360)"},
+ "crysis2x360am" => {key => "A3Xz9h", label => "Crysis 2 Automatch (Xbox 360)"},
+ "crysis2x360d" => {key => "A3Xz9h", label => "Crysis 2 Demo (Xbox 360)"},
+ "crysisb" => {key => "ZvZDcL", label => "Crysis Beta"},
+ "crysisd" => {key => "ZvZDcL", label => "Crysis Demo"},
+ "crysisspd" => {key => "IWfplN", label => "Crysis SP Demo"},
+ "crysiswars" => {key => "zKbZiM", label => "Crysis Wars"},
+ "crystalw1wii" => {key => "U9J7QC", label => "Crystal - Defender W1 (WiiWare)"},
+ "crystalw2wii" => {key => "AqCvfz", label => "Crystal - Defender W2 (WiiWare)"},
+ "cskies" => {key => "Rp5kAG", label => "Crimson Skies"},
+ "cskiesdemo" => {key => "p2uPkK", label => "Crimson Skies Trial"},
+ "cstaisends" => {key => "0LTCe3", label => "Chotto Sujin Taisen (DS)"},
+ "cstrike" => {key => "ZIr1wX", label => "Counter-Strike"},
+ "cueballworld" => {key => "sAJtHo", label => "Jimmy White Cueball World"},
+ "cueballworldd" => {key => "uPkKyb", label => "Cueball World Demo"},
+ "cuesportswii" => {key => "rNBacr", label => "Cue Sports (WiiWare)"},
+ "culdceptds" => {key => "6qUoZg", label => "Culdcept DS (DS)"},
+ "cultures" => {key => "Ir1wXE", label => "Cultures"},
+ "cusrobousds" => {key => "pO5zuq", label => "Gekitoh! Custom Robo (DS) (US)"},
+ "custoboeuds" => {key => "hZCuTq", label => "Custom Robo (EU) (DS)"},
+ "Customrobods" => {key => "MH0EK4", label => "Custom Robo DS (DS)"},
+ "cvania08ds" => {key => "SwO9Jn", label => "Castlevania 2008 (DS)"},
+ "CVjudgmentwii" => {key => "9te6Ua", label => "Castlevania: Judgment (Wii)"},
+ "DaggerdalePC" => {key => "1PnaZt", label => "Daggerdale PC"},
+ "DaggerdalePCam" => {key => "1PnaZt", label => "Daggerdale PC Automatch"},
+ "DaggerdalePS3" => {key => "SDeeXi", label => "Daggerdale PS3"},
+ "DaggerdalePS3am" => {key => "SDeeXi", label => "Daggerdale PS3 Automatch"},
+ "daikatana" => {key => "fl8aY7", label => "Daikatana"},
+ "damnationpc" => {key => "Jpxpfr", label => "DamNation (PC)"},
+ "damnationpcam" => {key => "Jpxpfr", label => "DamNation Automatch (PC)"},
+ "damnationpcd" => {key => "Jpxpfr", label => "DamNation Demo (PC)"},
+ "damnationps3" => {key => "Jpxpfr", label => "DamNation (PS3)"},
+ "damnationps3am" => {key => "Jpxpfr", label => "DamNation Automatch (PS3)"},
+ "daoc" => {key => "TkAksf", label => "Dark Age of Camelot"},
+ "darkheaven" => {key => "G3i4Xk", label => "DarkHeaven"},
+ "darkplanet" => {key => "uPkJyb", label => "DarkPlanet"},
+ "darkreign2" => {key => "PwE7Nd", label => "Dark Reign 2"},
+ "darkstone" => {key => "3MHCZ8", label => "Darkstone"},
+ "darkstone" => {key => "3MHCZ8", label => "DarkStone"},
+ "dartspartywii" => {key => "xyHrNT", label => "Darts Wii Party (Wii)"},
+ "dawnheroesds" => {key => "HpsSGM", label => "Dawn of Heroes (DS)"},
+ "dday" => {key => "B78iLk", label => "D-Day"},
+ "ddayd" => {key => "B78iLk", label => "D-Day Demo"},
+ "ddayxp1" => {key => "B78iLk", label => "D-Day: 1944 Battle of the Bulge"},
+ "ddozenpt" => {key => "L3sB7f", label => "Deadly Dozen: Pacific Theater"},
+ "ddozenptd" => {key => "G7b3Si", label => "Deadly Dozen Pacific Theater Demo"},
+ "DeathtoSpies" => {key => "LOhgNO", label => "Death to Spies"},
+ "decasport2wii" => {key => "pSFeW6", label => "Deca Sports 2 (Wii)"},
+ "decasport3wii" => {key => "rKsv8q", label => "Deca Sports 3 (Wii)"},
+ "Decathletesds" => {key => "ry7e63", label => "Decathletes (DS)"},
+ "decsprt3euwii" => {key => "BvkTE8", label => "Deca Sports 3 (Europe) (Wii)"},
+ "decsprt3nawii" => {key => "6mMxER", label => "Deca Sports 3 (NA) (Wii)"},
+ "demoderby" => {key => "Hl31yd", label => "Demolition Derby & Figure"},
+ "demonforgepc" => {key => "XEuc92", label => "Demon's Forge (PC)"},
+ "demonforgepcam" => {key => "XEuc92", label => "Demon's Forge Automatch (PC)"},
+ "demonforgepcd" => {key => "XEuc92", label => "Demon's Forge Demo (PC)"},
+ "demonforgeps3" => {key => "9Cpt5m", label => "Demon's Forge (PS3)"},
+ "demonforgeps3am" => {key => "9Cpt5m", label => "Demon's Forge Automatch (PS3)"},
+ "demonforgeps3d" => {key => "9Cpt5m", label => "Demon's Forge Demo (PS3)"},
+ "demonstar" => {key => "ziPwZF", label => "Demonstar"},
+ "dental2ds" => {key => "NQP31X", label => "dental2 (DS)"},
+ "dental2dsam" => {key => "NQP31X", label => "dental2 Automatch (DS)"},
+ "derbydogwii" => {key => "I8HL3T", label => "Derby Dog (WiiWare)"},
+ "descent3" => {key => "feWh2G", label => "Descent 3"},
+ "destruction" => {key => "vt3f71", label => "Destruction 101 (Namco Bandai)"},
+ "destructionam" => {key => "vt3f71", label => "Destruction 101 Automatch"},
+ "deusex" => {key => "Av3M99", label => "Deus Ex"},
+ "devastation" => {key => "b6Eo3S", label => "Devastation"},
+ "devastationd" => {key => "y3Fk8c", label => "Devastation Demo"},
+ "dexplorerds" => {key => "8mqApN", label => "Dungeon Explorer (DS)"},
+ "dfriendsEUds" => {key => "AoJWo6", label => "Disney Friends DS (EU)"},
+ "dh2003" => {key => "hT40y1", label => "Deerhunter 2003"},
+ "dh2004" => {key => "E8j4fP", label => "Deer Hunter 2004"},
+ "dh2004d" => {key => "E8j4fP", label => "Deer Hunter 2004 Demo"},
+ "dh2005" => {key => "qW56m4", label => "Deer Hunter 2005"},
+ "dh2005d" => {key => "qW56m4", label => "Deer Hunter 2005 demo"},
+ "dh3" => {key => "gbnYTp", label => "Deer Hunter 3"},
+ "dh4" => {key => "BeaPe2", label => "Deer Hunter 4"},
+ "dh5" => {key => "Ji2R2v", label => "Deer Hunter 5"},
+ "dhunterps2dis" => {key => "G2Qvo9", label => "Deer Hunter (PS2)"},
+ "diablo" => {key => "blGjuM", label => "Diablo"},
+ "diablo2" => {key => "hPU0tK", label => "Diablo 2"},
+ "digichampds" => {key => "lDiK3f", label => "Digimon Championship (DS)"},
+ "digichampKRds" => {key => "KbWB9w", label => "Digimon Championship (KOR) (DS)"},
+ "digichampUSds" => {key => "TiuO7K", label => "Digimon Championship (US) (DS)"},
+ "Digidwndskds" => {key => "SEmI1f", label => "Digimon World Dawn/Dusk (DS)"},
+ "digimonsleds" => {key => "mB26Li", label => "Digimon Story Lost Evolution (DS)"},
+ "digistoryds" => {key => "n5t4VH", label => "Digimon Story (DS)"},
+ "digistorydsam" => {key => "n5t4VH", label => "Digimon Story Automatch (DS)"},
+ "digisunmoonds" => {key => "6DPXX9", label => "Digimon Story Sunburst/Moonlight (DS)"},
+ "digiwrldds" => {key => "MLh2Hn", label => "Digimon World DS (DS)"},
+ "dimensitypc" => {key => "ZTcB4o", label => "Dimensity (PC)"},
+ "dimensitypcam" => {key => "ZTcB4o", label => "Dimensity Automatch (PC)"},
+ "dimensitypcd" => {key => "ZTcB4o", label => "Dimensity Demo (PC)"},
+ "dinerdashwii" => {key => "4rTdD2", label => "Diner Dash (WiiWare)"},
+ "dinokingEUds" => {key => "0E0awE", label => "Ancient Ruler Dinosaur King (EU) (DS)"},
+ "dinokingUSds" => {key => "8DgStx", label => "Dinosaur King (US) (DS)"},
+ "diplomacy" => {key => "2p7zgs", label => "Diplomacy"},
+ "dirt2onlive" => {key => "sBl3VQ", label => "DIRT 2 (OnLive)"},
+ "dirt2onliveam" => {key => "sBl3VQ", label => "DIRT 2 Automatch (OnLive)"},
+ "dirtdemo" => {key => "Twesup", label => "DiRT Demo"},
+ "disciples" => {key => "hPV0uK", label => "Disciples"},
+ "disciples" => {key => "hPV0uK", label => "Disciples: Sacred Lands"},
+ "disciples2" => {key => "tKnYBL", label => "Disciples 2"},
+ "disfriendsds" => {key => "VNTp6E", label => "Disney Friends DS (DS)"},
+ "disneydev" => {key => "ZpO4Dp", label => "Disney Development/Testing"},
+ "disneydevam" => {key => "ZpO4Dp", label => "Disney Development/Testing Automatch"},
+ "djangosabds" => {key => "xtWbUN", label => "Bokura No Taiyou: Django & Sabata (DS)"},
+ "dkracingds" => {key => "VBr5Sm", label => "Diddy Kong Racing DS (DS)"},
+ "dmania" => {key => "Dn3H2v", label => "DMania"},
+ "dmhand" => {key => "YJxLbV", label => "Dead Man Hand"},
+ "dod" => {key => "Hm31yd", label => "Day of Defeat"},
+ "dogalo" => {key => "MZIr0w", label => "MechWarrior 3"},
+ "dogsofwar" => {key => "Mbe3if", label => "Dogs of War"},
+ "dogsrunamock" => {key => "p2vPkJ", label => "name"},
+ "dominion" => {key => "1zdybo", label => "Dominion"},
+ "dominos" => {key => "VFHX8a", label => "Hasbro's Dominos"},
+ "doom3" => {key => "kbeafe", label => "Doom 3"},
+ "doraemonds" => {key => "P6nKJz", label => "Doraemon Nobita no Shinmakai Daiboken DS (DS)"},
+ "Doragureidods" => {key => "x10zDJ", label => "Doragureido (DS)"},
+ "dow" => {key => "VLxgwe", label => "Dawn of War"},
+ "dow_dc" => {key => "RUgBVL", label => "Dawn of War: Dark Crusade"},
+ "dqmonjkr2plds" => {key => "NhsIqO", label => "Dragon Quest Monsters Joker 2 Plus version (D"},
+ "dqmonjoker2ds" => {key => "MXsuQS", label => "Dragon Quest Monsters: Joker 2 (DS)"},
+ "dqmonjokerds" => {key => "5dOqvD", label => "Dragon Quest Monsters: Joker (DS)"},
+ "draculagolds" => {key => "1VyHxN", label => "Akumajou Dracula: Gallery of Labyrinth (DS)"},
+ "draglade2ds" => {key => "cTbHQV", label => "Custom Beat Battle: Draglade 2 (DS)"},
+ "dragladeds" => {key => "wPb9aW", label => "Draglade (DS)"},
+ "dragladeEUds" => {key => "fpEnOg", label => "Draglade (EU) (DS)"},
+ "dragonbzUSwii" => {key => "5tRJqr", label => "Dragonball Z: Tenkaichi 3 (US) (Wii)"},
+ "dragonbzwii" => {key => "oHk248", label => "Dragonball Z (Wii)"},
+ "dragoncrwnwii" => {key => "y4QTvo", label => "Dragon's Crown (Wii)"},
+ "dragonthrone" => {key => "p5jAGh", label => "Dragon Throne"},
+ "dragquestsds" => {key => "r6ToyA", label => "Dragon Quest S (DSiWare)"},
+ "drainworks" => {key => "E2quA4", label => "Drainworks (iPhone)"},
+ "drainworksam" => {key => "E2quA4", label => "Drainworks Automatch (iPhone)"},
+ "drakan" => {key => "zCt4De", label => "Drakan"},
+ "dreamchronwii" => {key => "2Q2ePF", label => "Dream Chronicle (Wii)"},
+ "drmariowii" => {key => "BvQyb2", label => "Dr. Mario (WiiWare)"},
+ "DrnWrk(iphon)am" => {key => "C0RtRF", label => "DrainWorks Automatch (iphone)"},
+ "druidking" => {key => "p5kGg7", label => "Druid King"},
+ "ds9dominion" => {key => "BkAg3a", label => "DS9: Dominion Wars"},
+ "dsakurads" => {key => "Sw2t7F", label => "Dragon Sakura DS (DS)"},
+ "dshard" => {key => "g3D8Sc", label => "The Dragonshard Wars"},
+ "dshardam" => {key => "g3D8Sc", label => "The Dragonshard Wars (Automatch)"},
+ "dsiege2" => {key => "tE42u7", label => "Dungeon Siege 2"},
+ "dsiege2" => {key => "tE42u7", label => "Dungeon Siege 2 The Azunite Prophecies"},
+ "dsiege2am" => {key => "tE42u7", label => "Dungeon Siege 2 The Azunite Prophecies Automa"},
+ "dsiege2bw" => {key => "A3GXsW", label => "Dungeon Siege II: Broken World"},
+ "dsnattest" => {key => "L74dSk", label => "ds nat test"},
+ "dsnattest2" => {key => "L74dSk", label => "ds nat test 2"},
+ "dstallionds" => {key => "1fNr6d", label => "Derby Stallion DS (DS)"},
+ "DSwars2ds" => {key => "fF4Wtd", label => "DS Wars 2 (DS)"},
+ "dtr" => {key => "h7nLfZ", label => "Dirt Track Racing"},
+ "dtr2" => {key => "MIq1wW", label => "Dirt Track Racing II"},
+ "dtr2d" => {key => "U4iX9e", label => "Dirt Track Racing 2 Demo"},
+ "dtracing" => {key => "ipC912", label => "Dirt Track Racing"},
+ "dtrsc" => {key => "HnRa41", label => "Dirt Track Racing: Sprint Cars"},
+ "dtrscdmo" => {key => "p2vPkJ", label => "Dirt Track Racing: Sprint"},
+ "ducatimotods" => {key => "i9Duh0", label => "Ducati Moto (DS)"},
+ "duelfield" => {key => "8mELiP", label => "Duelfield"},
+ "duke4" => {key => "8n2Hge", label => "Duke Nukem Forever"},
+ "dukes" => {key => "dvRTOR", label => "Dukes Of Hazzard: Racing"},
+ "dundefndpc" => {key => "ZNrGzP", label => "Dungeon Defenders (PC)"},
+ "dundefndpcam" => {key => "ZNrGzP", label => "Dungeon Defenders Automatch (PC)"},
+ "dundefndps3" => {key => "B1UcDx", label => "Dungeon Defenders (PS3)"},
+ "dundefndps3am" => {key => "B1UcDx", label => "Dungeon Defenders Automatch (PS3)"},
+ "dundfniphone" => {key => "x8evHv", label => "Dungeon Defenders (iphone)"},
+ "dundfniphoneam" => {key => "x8evHv", label => "Dungeon Defenders Automatch (iphone)"},
+ "dungeonlords" => {key => "74dBl9", label => "Dungeon Lords"},
+ "dungeonr" => {key => "RibMFo", label => "Dungeon Runners"},
+ "dungeonsiege" => {key => "H3t8Uw", label => "Dungeon Siege"},
+ "dv" => {key => "O1Vodm", label => "Dark Vengeance"},
+ "dwctest" => {key => "d4q9GZ", label => "DWC NintendoTest App"},
+ "dynamiczanwii" => {key => "JKoAWz", label => "Dynamic Zan (Wii)"},
+ "dynaztrialwii" => {key => "QyQTgC", label => "Dynamic Zan TRIAL (Wii)"},
+ "E3_2003" => {key => "jvaLXV", label => "E3_2003"},
+ "earth2150" => {key => "1wXEX3", label => "Earth 2150"},
+ "eawar" => {key => "MIq1wW", label => "European Air War"},
+ "echelon" => {key => "uPkKya", label => "Echelon"},
+ "echelonww" => {key => "uPkKya", label => "Echelon Wind Warriors"},
+ "echelonwwd" => {key => "ORp4jG", label => "Echelon Wind Warriors Dem"},
+ "ecocreatureds" => {key => "61JwLu", label => "Eco-Creatures: Save the Forest (DS)"},
+ "ecolisEUds" => {key => "uCaiU4", label => "Ecolis (EU) (DS)"},
+ "ecorisds" => {key => "dL9zd8", label => "Ecoris (DS)"},
+ "ee3" => {key => "dObLWQ", label => "Empire Earth 3"},
+ "ee3alpha" => {key => "VQibCm", label => "Empire Earth III Alpha"},
+ "ee3beta" => {key => "tvbRKD", label => "Empire Earth III Beta"},
+ "eearth2" => {key => "h3C2jU", label => "Empire Earth 2"},
+ "eearth2d" => {key => "h3C2jU", label => "Empire Earth 2 demo"},
+ "eearth2xp1" => {key => "h3C2jU", label => "Empire Earth II: The Art of Supremacy"},
+ "eearth3" => {key => "Fk6hTz", label => "Empire Earth III"},
+ "eearth3am" => {key => "Fk6hTz", label => "Empire Earth III Automatch"},
+ "eearth3b" => {key => "Fk6hTz", label => "Empire Earth III Beta"},
+ "eearth3bam" => {key => "Fk6hTz", label => "Empire Earth III Beta Automatch"},
+ "eearth3d" => {key => "Fk6hTz", label => "Empire Earth III Demo"},
+ "eearth3dam" => {key => "Fk6hTz", label => "Empire Earth III Demo Automatch"},
+ "eforcesr" => {key => "xQEvFD", label => "Eternal Forces"},
+ "ejammingmac" => {key => "Sd7a9p", label => "eJamming Jamming Station MAC (engine)"},
+ "ejammingpc" => {key => "Sd7a9p", label => "eJamming Jamming Station PC"},
+ "ekorisu2ds" => {key => "FzODdr", label => "Ekorisu 2 (DS)"},
+ "elebitsds" => {key => "bVEhC3", label => "Elebits DS - Kai to Zero no Fushigi na Bus (D"},
+ "elecrailds" => {key => "MTT5av", label => "Momotaro Electric Railway World (DS)"},
+ "elecraildsam" => {key => "MTT5av", label => "Momotaro Electric Railway World Automatch (D"},
+ "elemonsterds" => {key => "26pNrL", label => "Elemental Monster (DS)"},
+ "elevenkords" => {key => "qiM82O", label => "World Soccer Winning Eleven DS (KOR) (DS)"},
+ "ellipticpc" => {key => "dmuAnq", label => "Elliptic Twist (PC)"},
+ "ellipticpcam" => {key => "dmuAnq", label => "Elliptic Twist Automatch (PC)"},
+ "emperorbfd" => {key => "X3rAIt", label => "Emperor: Battle For Dune"},
+ "empireearth" => {key => "ybneQW", label => "Empire Earth"},
+ "empires" => {key => "GknAbg", label => "Empires: Dawn of the Modern World"},
+ "empiresam" => {key => "GknAbg", label => "Empires Dawn of the Modern World (AM)"},
+ "empiresd" => {key => "GknAbg", label => "Empires: Dawn of the Modern World Demo"},
+ "empiresdam" => {key => "GknAbg", label => "Empires: Dawn of the Modern World"},
+ "entente" => {key => "LqrTlG", label => "The Entente"},
+ "epochwarspc" => {key => "Dfd5DE", label => "Epoch Wars (PC)"},
+ "epochwarspcam" => {key => "Dfd5DE", label => "Epoch Wars Automatch (PC)"},
+ "eq" => {key => "AnoMKT", label => "Everquest"},
+ "escviruswii" => {key => "gWke73", label => "Escape Virus (WiiWare)"},
+ "eternalforces" => {key => "xQEvFD", label => "Eternal Forces Demo"},
+ "eternalforcesam" => {key => "xQEvFD", label => "Eternal Forces Automatch"},
+ "etforces" => {key => "GKPQiB", label => "Eternal Forces"},
+ "etherlords" => {key => "6ajiOV", label => "Etherlords"},
+ "etherlordsbeta" => {key => "6ajiOV", label => "Etherlords Patch Beta"},
+ "etherlordsd" => {key => "6ajiOV", label => "Etherlords Demo"},
+ "evaspacewii" => {key => "m5yEnm", label => "Evasive Space (WiiWare)"},
+ "everquest2" => {key => "vPmJGO", label => "EverQuest II"},
+ "evolva" => {key => "DV24p2", label => "Evolva"},
+ "evosoc08EUwii" => {key => "de5f31", label => "Pro Evolution Soccer 2008 (EU) (Wii)"},
+ "evosoc08USds" => {key => "nV87bl", label => "Pro Evolution Soccer 2008 (US) (DS)"},
+ "evosoc08USwii" => {key => "94lupD", label => "Pro Evolution Soccer 2008 (US) (Wii)"},
+ "evosoccer08ds" => {key => "fI2bz5", label => "Pro Evolution Soccer 2008 (DS)"},
+ "excessive" => {key => "Gn3aY9", label => "Excessive Q3"},
+ "exciteracewii" => {key => "WLrMtU", label => "Excite Racing (Wii)"},
+ "exigo" => {key => "mPBHcI", label => "Armies of Exigo"},
+ "exigoam" => {key => "mPBHcI", label => "Armies of Exigo (Automatch)"},
+ "exigob" => {key => "mPBHcI", label => "Armies of Exigo Beta"},
+ "exigobam" => {key => "mPBHcI", label => "Armies of Exigo Beta (Automatch)"},
+ "exigor" => {key => "mPBHcI", label => "Armies of Exigo Retail"},
+ "exigoram" => {key => "mPBHcI", label => "Armies of Exigo (Automatch)"},
+ "exitds" => {key => "Ip6JF2", label => "Hijyoguchi: EXIT DS (DS)"},
+ "expertpool" => {key => "cRu7vE", label => "Expert Pool"},
+ "f12002" => {key => "DXBOFd", label => "F1 2002"},
+ "f1comp" => {key => "g7W1P8", label => "F1 1999-2000 Compilation"},
+ "f1teamdriver" => {key => "QwZFex", label => "Williams F1 Team: Team Dr"},
+ "facesofwar" => {key => "Shp95z", label => "Faces of War"},
+ "facesofwaram" => {key => "Shp95z", label => "Faces of War Automatch"},
+ "facesofward" => {key => "Shp95z", label => "Faces of War Demo"},
+ "facesofwarxp1" => {key => "QQxWKm", label => "Faces of War Standalone (XP1)"},
+ "facesofwarxp1am" => {key => "QQxWKm", label => "Faces of War Standalone Automatch (XP1)"},
+ "facesow" => {key => "qgiNRG", label => "Faces of War"},
+ "fairstrike" => {key => "y4Ks2n", label => "Fair Strike"},
+ "fairstriked" => {key => "y4Ks2n", label => "Fair Strike Demo"},
+ "fairyfightpc" => {key => "R6JnVy", label => "Fairytale Fights (PC)"},
+ "fairyfightpcam" => {key => "R6JnVy", label => "Fairytale Fights Automatch (PC)"},
+ "fairyfightpcd" => {key => "R6JnVy", label => "Fairytale Fights Demo (PC)"},
+ "fairyfightps3" => {key => "qTLu9D", label => "Fairytale Fights (PS3)"},
+ "fairyfightps3am" => {key => "qTLu9D", label => "Fairytale Fights Automatch (PS3)"},
+ "fairyfightps3d" => {key => "qTLu9D", label => "Fairytale Fights Demo (PS3)"},
+ "fairyfightspc" => {key => "BqQzb9", label => "Fairytale Fights (PC)"},
+ "fairyfightspcam" => {key => "BqQzb9", label => "Fairytale Fights Automatch (PC)"},
+ "fairyfightspcd" => {key => "BqQzb9", label => "Fairytale Fights Demo (PC)"},
+ "fakk2" => {key => "YDYBNE", label => "F.A.K.K. 2"},
+ "fakk2" => {key => "YDYBNE", label => "Heavy Metal: F.A.K.K. 2 Arena"},
+ "fallout3" => {key => "iFYnef", label => "Fallout 3"},
+ "falloutbos" => {key => "fQW78d", label => "Fallout Tactics"},
+ "falloutbosd" => {key => "JwUhCT", label => "Fallout Tactics"},
+ "famfishwii" => {key => "oG4QPH", label => "Family Fishing (Wii)"},
+ "famista09ds" => {key => "OkJhLi", label => "Pro Yakyu Famista DS 2009 (DS)"},
+ "famista2010ds" => {key => "bdhXZm", label => "Famista 2010 (DS)"},
+ "famstadiumwii" => {key => "s75Uvn", label => "Family Stadium Wii (Wii)"},
+ "fantcubewii" => {key => "2wDUcM", label => "Fantastic Cube (WiiWare)"},
+ "farcry" => {key => "HkXyNJ", label => "Far Cry"},
+ "fargate" => {key => "nhwchs", label => "Far Gate"},
+ "fatedragon" => {key => "sCV34o", label => "Fate of the Dragon"},
+ "fatedragond" => {key => "6UN9ag", label => "Fate of the Dragon Demo 2"},
+ "fbackgammon" => {key => "Un3apK", label => "Fiendish Backgammon"},
+ "fbackgammon" => {key => "Un3apK", label => "Small Rockets Backgammon"},
+ "fblackjack" => {key => "NeVbEa", label => "Fiendish Blackjack"},
+ "fear" => {key => "n3V8cj", label => "FEAR: First Encounter Assault Recon"},
+ "fear2ol" => {key => "dDPDXC", label => "Fear 2: Project Origin (onlive)"},
+ "fear2ol" => {key => "dDPDXC", label => "woir3wijfw9er3jwjfsldkjewijfs"},
+ "fear2olam" => {key => "dDPDXC", label => "woir3wijfw9er3jwjfsldkjewijfs Automatch"},
+ "fearcb" => {key => "n3VBcj", label => "FEAR: First Encounter Assault Recon (Closed B"},
+ "feard" => {key => "n3V8cj", label => "FEAR: First Encounter Assault Recon Demo"},
+ "fearob" => {key => "n3VBcj", label => "FEAR: First Encounter Assault Recon (Open Bet"},
+ "fearobsc" => {key => "n3VBcj", label => "FEAR: First Encounter Assault Recon (Open Bet"},
+ "fearxp1" => {key => "n3V8cj", label => "FEAR: Extraction Point"},
+ "fearxp2" => {key => "rDAg9r", label => "FEAR Perseus Mandate (PC)"},
+ "ffantasy3ds" => {key => "6cidXe", label => "Final Fantasy III (DS)"},
+ "ffantasy3euds" => {key => "9zRsJF", label => "Final Fantasy III - EU (DS)"},
+ "ffantasy3usds" => {key => "6Ta8ww", label => "Final Fantasy III - US (DS)"},
+ "ffccechods" => {key => "qO9rGZ", label => "Final Fantasy Crystal Chronicles: Echos of Ti"},
+ "ffcryschronds" => {key => "z9WMZJ", label => "Final Fantasy: Crystal Chronicles - Ring of F"},
+ "ffowbeta" => {key => "wqhcSQ", label => "Frontlines: Fuel of War Beta"},
+ "ffurtdriftps2" => {key => "Bso8LK", label => "The Fast and the Furious: Tokyo Drift (PS2)"},
+ "ffurtdriftps2am" => {key => "Bso8LK", label => "The Fast and the Furious: Tokyo Drift Automa"},
+ "ffvsttr" => {key => "5tQqw9", label => "Freedom Force vs. The Third Reich"},
+ "ffvsttrd" => {key => "5tQqw9", label => "Freedom Force vs. The Third Reich MP Demo"},
+ "ffwcbeta" => {key => "oZTTQy", label => "Frontlines: Fuel of War Beta"},
+ "fherjwkk" => {key => "RADpDr", label => "Namco Test"},
+ "FieldOps" => {key => "AK8zHT", label => "Field Ops"},
+ "fifa08ds" => {key => "zLTgc4", label => "FIFA 08 Soccer (DS)"},
+ "fifa09ds" => {key => "5VxqMN", label => "FIFA 09 Soccer (DS)"},
+ "fifasoc10ds" => {key => "ZULq4H", label => "FIFA Soccer 10 (DS)"},
+ "fifasoc11ds" => {key => "7NLfQN", label => "FIFA Soccer 11 (DS)"},
+ "fightclubps2" => {key => "t3d8cK", label => "Fight Club (PS2)"},
+ "fightclubps2" => {key => "t3d8cK", label => "Fight Club PS2"},
+ "figlandds" => {key => "eIDvPq", label => "Figland (DS)"},
+ "fileplanet" => {key => "fZDYBN", label => "FilePlanet.com"},
+ "finertiaps3" => {key => "3vEcPe", label => "Fatal Inertia (PS3)"},
+ "finertiaps3am" => {key => "3vEcPe", label => "Fatal Inertia Automatch (PS3)"},
+ "firearmsevopc" => {key => "WrgNsZ", label => "Firearms Evolution (PC)"},
+ "firearmsevopcam" => {key => "WrgNsZ", label => "Firearms Evolution Automatch (PC)"},
+ "firecapbay" => {key => "VJMdlD", label => "Fire Captain: Bay Area Inferno"},
+ "fireemblemds" => {key => "pTLtHq", label => "Fire Emblem DS (DS)"},
+ "flashanzands" => {key => "61pARy", label => "Flash Anzan Doujou (DS)"},
+ "flatout" => {key => "SxdJel", label => "FlatOut"},
+ "flatout2pc" => {key => "GtGLyx", label => "FlatOut 2"},
+ "flatout2pc" => {key => "GtGLyx", label => "FlatOut 2 (PC)"},
+ "flatout2ps2" => {key => "VL6s2n", label => "FlatOut 2 (PS2)"},
+ "flatoutps2" => {key => "ms83Ha", label => "Flat Out (PS2)"},
+ "FlockPC" => {key => "84z6J4", label => "Flock (PC)"},
+ "FlockPCam" => {key => "84z6J4", label => "Flock Automatch (PC)"},
+ "FlockPCd" => {key => "84z6J4", label => "Flock Demo (PC)"},
+ "FlockPSN" => {key => "84z6J4", label => "Flock (PSN)"},
+ "FlockPSNam" => {key => "84z6J4", label => "Flock Automatch (PSN)"},
+ "FlockPSNd" => {key => "84z6J4", label => "Flock Demo (PSN)"},
+ "fltsim2002" => {key => "uKnYBL", label => "Flight Simulator 2002"},
+ "fltsim2k" => {key => "TKuE2P", label => "Flight Simulator 2000"},
+ "fltsim98" => {key => "OU0uKn", label => "FlightSimulator 98"},
+ "flyinghero" => {key => "9mELiP", label => "Flying Heroes"},
+ "fmasterwtwii" => {key => "07pDGe", label => "Fishing Master: World Tour (Wii)"},
+ "fordvchevyps2" => {key => "i79DwE", label => "Ford Versus Chevy (PS2)"},
+ "foreverbl2wii" => {key => "Ly8iAL", label => "Forever Blue 2 (Wii)"},
+ "foreverbwii" => {key => "K7bZgf", label => "Forever Blue (Wii)"},
+ "forsaken" => {key => "znoJ6k", label => "Forsaken"},
+ "foxtrotpc" => {key => "lTvP98", label => "Blacklight: Tango Down (PC)"},
+ "foxtrotpcam" => {key => "lTvP98", label => "Blacklight: Tango Down Automatch (PC)"},
+ "foxtrotpcd" => {key => "lTvP98", label => "Blacklight: Tango Down Demo (PC)"},
+ "foxtrotps3" => {key => "b7MJTP", label => "Blacklight: Tango down (PS3)"},
+ "foxtrotps3am" => {key => "b7MJTP", label => "Blacklight: Tango Down Automatch (PS3)"},
+ "foxtrotps3d" => {key => "b7MJTP", label => "Blacklight: Tango Down Demo (PS3)"},
+ "freedomforce" => {key => "lHjuMc", label => "Freedom Force"},
+ "freepark" => {key => "alVRIq", label => "Hasbro's Free Parking"},
+ "freessbalpha" => {key => "qXtSmt", label => "Freestyle Street Basketball Client Alpha"},
+ "Frogger" => {key => "ZIq0wX", label => "frogger"},
+ "frontlinesfow" => {key => "ZEmOuj", label => "Frontlines: Fuel of War"},
+ "fstarzerods" => {key => "knJOIz", label => "Fantasy Star ZERO (DS)"},
+ "fstreetv3ds" => {key => "d46hQk", label => "FIFA Street v3 (DS)"},
+ "fsw10hpc" => {key => "6w2X9m", label => "Full Spectrum Warrior: Ten Hammers (PC)"},
+ "fsw10hps2" => {key => "6w2X9m", label => "Full Spectrum Warrior: Ten Hammers (PS2)"},
+ "fsw10hps2kor" => {key => "6w2X9m", label => "Full Spectrum Warrior: Ten Hammers (Korea, PS"},
+ "fsw10hps2pal" => {key => "6w2X9m", label => "Full Spectrum Warrior: Ten Hammers (PAL, PS2)"},
+ "fswpc" => {key => "R5pZ29", label => "Full Spectrum Warrior"},
+ "fswps2" => {key => "6w2X9m", label => "Full Spectrum Warrior PS2"},
+ "fswps2jp" => {key => "6w2X9m", label => "Full Spectrum Warrior (PS2, Japanese)"},
+ "fswps2kor" => {key => "6w2X9m", label => "Full Spectrum Warrior Korean (PS2)"},
+ "fswps2pal" => {key => "6w2X9m", label => "Full Spectrum Warrior PAL PS2"},
+ "fsx" => {key => "y3Fd8H", label => "Flight Simulator 2006"},
+ "fsxa" => {key => "edkTBp", label => "Flight Simulator X: Acceleration"},
+ "fsxaam" => {key => "edkTBp", label => "Flight Simulator X: Acceleration Automatch"},
+ "fuelpc" => {key => "UOXvsa", label => "FUEL (PC)"},
+ "fuelpcam" => {key => "UOXvsa", label => "FUEL Automatch (PC)"},
+ "fuelpcd" => {key => "UOXvsa", label => "FUEL Demo (PC)"},
+ "fuelps3" => {key => "T8IuLe", label => "FUEL (PS3)"},
+ "fuelps3am" => {key => "T8IuLe", label => "FUEL Automatch (PS3)"},
+ "fuelps3d" => {key => "T8IuLe", label => "FUEL Demo (PS3)"},
+ "fuelps3ptchd" => {key => "T8IuLe", label => "FUEL (PS3) Patched version"},
+ "fuelps3ptchdam" => {key => "T8IuLe", label => "FUEL Automatch (PS3) Patched version"},
+ "fullautops3" => {key => "kC5tJA", label => "Full Auto 2: Battlelines (PS3)"},
+ "fullautops3d" => {key => "kC5tJA", label => "Full Auto 2: Battlelines Demo (PS3)"},
+ "fullmatcgds" => {key => "fGRd5f", label => "Fullmetal Alchemist Trading Card Game (DS)"},
+ "furaishi3wii" => {key => "xK58W8", label => "Furai no Shiren 3 Karakuri Yashiki no Nemuri"},
+ "furdemo" => {key => "3rAJtH", label => "Fur Fighters Demo"},
+ "furfighters" => {key => "JwUhCT", label => "Fur Fighters"},
+ "furfiighters" => {key => "JwUhCT", label => "Fur Fighters"},
+ "fury" => {key => "KOMenT", label => "Fury"},
+ "fushigidun5ds" => {key => "T3uWSz", label => "Fushigi no Dungeon Furai no Shiren 5 Fortune"},
+ "fushigidunds" => {key => "VVNqVT", label => "Fushigi no Dungeon Furai no Shiren 4 Kami no"},
+ "fuusuibands" => {key => "Gu3FCH", label => "Fuusuiban (DS)"},
+ "fwarriorpc" => {key => "n2X8ft", label => "Fire Warrior"},
+ "fwarriorps2" => {key => "r3D7s9", label => "Fire Warrior (PS2)"},
+ "fwarriorps2" => {key => "r3D7s9", label => "Warhammer 40,000: Fire Warrior PS2"},
+ "fxtrainingds" => {key => "tXkDai", label => "FX Training DS (DS)"},
+ "fxtrainlvds" => {key => "N543Aq", label => "FX TRAINING DS-LV (DS)"},
+ "gamebot" => {key => "G4mBo7", label => "GameBot Test"},
+ "gamepopulator" => {key => "h3Ks61", label => "Game Populator"},
+ "gamepopulatoram" => {key => "h3Ks61", label => "Game Populator (AM)"},
+ "GameSpy.com" => {key => "xbofQW", label => "GameSpy.com"},
+ "gamespy1pc" => {key => "ato4Lc", label => "Gamespy Game 1 (PC)"},
+ "gamespy2" => {key => "d4kZca", label => "Gamespy 2"},
+ "gamespy2pc" => {key => "3PIv0T", label => "Gamespy Game 2 (PC)"},
+ "gamespy2pcam" => {key => "3PIv0T", label => "Gamespy Game 2 Automatch (PC)"},
+ "gamevoice" => {key => "Agm3a1", label => "MS Game Voice"},
+ "gangland" => {key => "y6F39x", label => "Gangland"},
+ "ganglandd" => {key => "y6F39x", label => "Gangland demo"},
+ "ganglandd" => {key => "y6F39x", label => "Gangland Demo"},
+ "gangsters2" => {key => "NEek2p", label => "Gansters II: Vendetta"},
+ "gauntletds" => {key => "wUq7fL", label => "Gauntlet (DS)"},
+ "gauntletps2" => {key => "y2Fg39", label => "Gauntlet (PS2)"},
+ "gc2demo" => {key => "L3f2X8", label => "Ground Control 2 Demo"},
+ "gcracing" => {key => "LziPwZ", label => "Great Clips Racing"},
+ "genesisr" => {key => "sbCDkj", label => "Genesis Rising"},
+ "genesisrbeta" => {key => "tZRxNP", label => "Genesis Rising Beta"},
+ "genetrooperpc" => {key => "eK4Xh7", label => "Gene Trooper (PC)"},
+ "genetrooperps2" => {key => "eK4Xh7", label => "Gene Troopers (PS2)"},
+ "getmede" => {key => "3MHCZ8", label => "Get Medieval"},
+ "gettysburg" => {key => "PwZFex", label => "Gettysburg!"},
+ "gh4ghitswii" => {key => "lUHbE5", label => "Guitar Hero 4: Greatest Hits (Wii)"},
+ "gh4metalwii" => {key => "m8snqf", label => "Guitar Hero 4: Metallica (Wii)"},
+ "gh4vhalenwii" => {key => "yDGso1", label => "Guitar Hero 4: Van Halen (Wii)"},
+ "gh4vhalenwiiam" => {key => "yDGso1", label => "Guitar Hero 4: Van Halen Automatch (Wii)"},
+ "ghero4wii" => {key => "xcJsPA", label => "Guitar Hero 4 (Wii)"},
+ "ghostraw" => {key => "Cybhqm", label => "Ghost Recon Advanced Warfighter"},
+ "ghostrecon" => {key => "p5jAGh", label => "Ghost Recon"},
+ "ghostrecond" => {key => "KyblGj", label => "Ghost Recon Demo"},
+ "ghostreconds" => {key => "EX3rAI", label => "Ghost Recon: Desert Siege"},
+ "ghostsquadwii" => {key => "lq8to9", label => "Ghost Squad (Wii)"},
+ "ghpballps2" => {key => "9tcGVE", label => "Greg Hastings Paintball (PS2)"},
+ "giants" => {key => "z8erKA", label => "Giants"},
+ "gicombat1" => {key => "JyblGj", label => "G.I. Combat"},
+ "ginrummy" => {key => "9rIEUi", label => "Hasbro's Gin Rummy"},
+ "girlsds" => {key => "hKe82J", label => "Girls (DS)"},
+ "girlskoreads" => {key => "QiFGmi", label => "Girls_Korea (DS)"},
+ "girlssecEUds" => {key => "nySkKx", label => "Winx Club Secret Diary 2009 (EU) (DS)"},
+ "girlssecretds" => {key => "kNcVft", label => "Girls Secret Diary (DS)"},
+ "globalops" => {key => "AdN3L9", label => "Global Operations"},
+ "globalopsd" => {key => "u3Pa87", label => "Global Ops Demo"},
+ "gloftpokerwii" => {key => "NtKG3P", label => "Gameloft Poker (WiiWare)"},
+ "glracerwii" => {key => "kAM5wF", label => "GameLoft's Racer (WiiWare)"},
+ "gmtest" => {key => "HA6zkS", label => "Test / demo / temporary"},
+ "gmtestam" => {key => "HA6zkS", label => "test (Auto-Matchmaking)"},
+ "gmtestcd" => {key => "HA6zkS", label => "Test (Chat CD Key validation)"},
+ "gmtestcdam" => {key => "HA6zkS", label => "Test Automatch (Chat CD Key validation)"},
+ "godzilla2ps2" => {key => "bi9Wz4", label => "Godzilla: Save the Earth (PS2)"},
+ "gokuidsi" => {key => "yQLxLL", label => "Gokui (DSiWare)"},
+ "gopetsvids" => {key => "DQ5xwk", label => "GoPets: Vacation Island (DS)"},
+ "gore" => {key => "Mbz942", label => "Gore"},
+ "gore" => {key => "NYZEAK", label => "Gore Special Edition"},
+ "goreAV" => {key => "oKOLBm", label => "Gore (Ad version)"},
+ "goreAVam" => {key => "oKOLBm", label => "Gore Automatch (Ad version)"},
+ "goreAVd" => {key => "oKOLBm", label => "Gore Demo (Ad version)"},
+ "gored" => {key => "k2X9tQ", label => "Gore Retail Demo"},
+ "goredemo" => {key => "uW0xp1", label => "Gore Demo"},
+ "gorese" => {key => "NYZEAK", label => "Gore Special Edition"},
+ "gotcha" => {key => "9s34Pz", label => "Gotcha!"},
+ "gotchad" => {key => "9s34Pz", label => "Gotcha! Demo"},
+ "gp500" => {key => "cvSTOR", label => "GP500"},
+ "gp500" => {key => "cvSTOR", label => "Grand Prix 500"},
+ "gradiusrbwii" => {key => "ZXCd6z", label => "Gradius ReBirth (WiiWare)"},
+ "gravitronwii" => {key => "V9q1aK", label => "Gravitronix (WiiWare)"},
+ "greconawf" => {key => "Fn5GLL", label => "Ghost Recon: Advanced Warfighter"},
+ "greconawf2" => {key => "qvOwuX", label => "Ghost Recon Advanced Warfighter 2"},
+ "greconawf2" => {key => "qvOwuX", label => "Ghost Recon: Advanced Warfighter 2"},
+ "greconawf2am" => {key => "qvOwuX", label => "Ghost Recon: Advanced Warfighter 2 Automatch"},
+ "greconawf2b" => {key => "qvOwuX", label => "Ghost Recon: Advanced Warfighter 2 Beta"},
+ "greconawf2bam" => {key => "qvOwuX", label => "Ghost Recon: Advanced Warfighter 2 Beta Autom"},
+ "greconawf2d" => {key => "qvOwuX", label => "Ghost Recon: Advanced Warfighter 2 Demo"},
+ "greconawf2g" => {key => "pdhHKC", label => "Ghost Recon Advanced Warfighter 2"},
+ "greconawfd" => {key => "Fn5GLL", label => "Ghost Recon: Advanced Warfighter Demo"},
+ "greconfswii" => {key => "pGGdAd", label => "Ghost Recon Future Soldier (Wii)"},
+ "groundcontrol2" => {key => "L3f2X8", label => "Ground Control 2"},
+ "group" => {key => "72Ha31", label => "Group Room"},
+ "gruntz" => {key => "alVRIq", label => "Gruntz"},
+ "gsbgammon" => {key => "PbZ35N", label => "GameSpy Backgammon"},
+ "gscheckers" => {key => "PbZ35N", label => "GameSpy Checkers"},
+ "gschess" => {key => "BQMZIq", label => "GameSpy Chess"},
+ "gshearts" => {key => "PbZ35N", label => "GameSpy Hearts"},
+ "gsiphonefw" => {key => "FaI3pa", label => "GameSpy iPhone Framework"},
+ "gslive" => {key => "Xn221z", label => "GameSpy Arcade"},
+ "gspoker" => {key => "PbZ35N", label => "GameSpy Poker"},
+ "gspylite" => {key => "mgNUaC", label => "GameSpy Lite"},
+ "gspylite" => {key => "mgNUaC", label => "GamespyLite"},
+ "gspyweb" => {key => "08NHv5", label => "GameSpy Web"},
+ "gsreversi" => {key => "ItHo0r", label => "GameSpy Reversi"},
+ "gsspades" => {key => "PbZ35N", label => "GameSpy Spades"},
+ "gsTiaKreisDS" => {key => "p4oT53", label => "Genso Suikokuden TiaKreis (DS)"},
+ "gsttestgame" => {key => "bHngAu", label => "GST test game name"},
+ "gsyarn" => {key => "m31ydy", label => "GameSpy Y.A.R.N."},
+ "gta3pc" => {key => "Hu3P1h", label => "Grand Theft Auto 3 (PC)"},
+ "gta4pc" => {key => "t3nTru", label => "Grand Theft Auto 4 (PC)"},
+ "gta4pcam" => {key => "t3nTru", label => "Grand Theft Auto 4 Automatch (PC)"},
+ "gta4pcdev" => {key => "t3nTru", label => "Grand Theft Auto 4 Dev (PC)"},
+ "gta4pcdevam" => {key => "t3nTru", label => "Grand Theft Auto 4 Dev Automatch (PC)"},
+ "gta4ps3" => {key => "t3nTru", label => "Grand Theft Auto 4 (PS3)"},
+ "gta4ps3am" => {key => "t3nTru", label => "Grand Theft Auto 4 Automatch (PS3)"},
+ "gta4ps3dev" => {key => "t3nTru", label => "Grand Theft Auto 4 Dev (PS3)"},
+ "gta4ps3devam" => {key => "t3nTru", label => "Grand Theft Auto 4 Dev Automatch (PS3)"},
+ "gta4ps3grm" => {key => "t3nTru", label => "Grand Theft Auto 4 German (PS3)"},
+ "gta4ps3grmam" => {key => "t3nTru", label => "Grand Theft Auto 4 German Automatch (PS3)"},
+ "gta4ps3test" => {key => "t3nTru", label => "Grand Theft Auto 4 Test (PS3)"},
+ "gta4x" => {key => "t3nTru", label => "Grand Theft Auto 4 (Xbox 360)"},
+ "gta4xam" => {key => "t3nTru", label => "Grand Theft Auto 4 Automatch (Xbox 360)"},
+ "gta4xgrm" => {key => "t3nTru", label => "Grand Theft Auto 4 German (Xbox 360)"},
+ "gta4xgrmam" => {key => "t3nTru", label => "Grand Theft Auto 4 German Automatch (Xbox 36"},
+ "gtacwarsds" => {key => "nm4V4b", label => "Grand Theft Auto: Chinatown Wars (DS)"},
+ "gtacwarspsp" => {key => "UXrDJm", label => "Grand Theft Auto: Chinatown Wars (PSP)"},
+ "gtacwarspspam" => {key => "UXrDJm", label => "Grand Theft Auto: Chinatown Wars Automatch ("},
+ "gtacwarspspd" => {key => "UXrDJm", label => "Grand Theft Auto: Chinatown Wars Demo (PSP)"},
+ "gtacwiphone" => {key => "3NQ6vh", label => "Grand Theft Auto: Chinatown Wars (iPhone)"},
+ "gtacwiphoneam" => {key => "3NQ6vh", label => "Grand Theft Auto: Chinatown Wars Automatch ("},
+ "gtacwiphoned" => {key => "3NQ6vh", label => "Grand Theft Auto: Chinatown Wars Demo (iPhon"},
+ "gtasaps2" => {key => "Bn73c9", label => "Grand Theft Auto San Andreas (PS2)"},
+ "gticsfestwii" => {key => "DN9tTG", label => "GTI Club Supermini Festa (Wii)"},
+ "gts4xdev" => {key => "t3nTru", label => "Grand Theft Auto 4 Dev (Xbox 360)"},
+ "gts4xdevam" => {key => "t3nTru", label => "Grand Theft Auto 4 Dev Automatch (Xbox 360)"},
+ "guinnesswrds" => {key => "iwTBGk", label => "Guinness World Records: The Video Game (DS)"},
+ "guinnesswriph" => {key => "euFh7c", label => "Guinness World Records: The Video Game (iPhon"},
+ "guinnesswripham" => {key => "euFh7c", label => "Guinness World Records: The Video Game Autom"},
+ "guinnesswriphd" => {key => "euFh7c", label => "Guinness World Records: The Video Game Demo"},
+ "guinnesswrwii" => {key => "x0oPvh", label => "Guinness World Records: The Video Game (Wii)"},
+ "guitarh3wii" => {key => "O5imMd", label => "Guitar Hero 3 (Wii)"},
+ "guitarh3xpwii" => {key => "xkrTOa", label => "Guitar Hero 3 Expansion Pack (Wii)"},
+ "gulfwarham" => {key => "YDXBOF", label => "Gulf War: Operatin Desert"},
+ "GunMahjongZds" => {key => "XL3iSh", label => "Kidou Gekidan Haro Ichiza Gundam Mah-jong+Z ("},
+ "gunman" => {key => "W78dvR", label => "Gunman Chronicles"},
+ "gunnylamacwii" => {key => "CeF2yx", label => "GUNBLADE NY & L.A. MACHINEGUNS (Wii)"},
+ "gwgalaxiesds" => {key => "85buOw", label => "Geometry Wars Galaxies (DS)"},
+ "gwgalaxieswii" => {key => "o3G7J2", label => "Geometry Wars Galaxies (Wii)"},
+ "h2cdigitalps3" => {key => "HlgicF", label => "Hail to the Chimp (PSN)"},
+ "h2cdigitalps3d" => {key => "HlgicF", label => "Hail to the Chimp Demo (PSN)"},
+ "haegemonia" => {key => "LiQwZF", label => "Haegemonia"},
+ "haegemoniaxp" => {key => "LiQwZF", label => "Hegemonia Expansion"},
+ "hail2chimps3" => {key => "mDeBg3", label => "Hail to the Chimp (PS3)"},
+ "hail2chimps3am" => {key => "mDeBg3", label => "Hail to the Chimp Automatch (PS3)"},
+ "hail2chimps3d" => {key => "mDeBg3", label => "Hail to the Chimp Demo (PS3)"},
+ "hail2chimps3r" => {key => "mDeBg3", label => "Hail to the Chimp Retail (PS3)"},
+ "hail2chimps3ram" => {key => "mDeBg3", label => "Hail to the Chimp Retail Automatch (PS3)"},
+ "halflife" => {key => "yZlc70", label => "Half Life"},
+ "halflife" => {key => "V0tKnY", label => "Team Fortress 1.5"},
+ "halo" => {key => "QW88cv", label => "Halo Beta"},
+ "halod" => {key => "yG3d9w", label => "Halo Demo"},
+ "halom" => {key => "e4Rd9J", label => "Halo Multiplayer Expansion"},
+ "halomac" => {key => "e4Rd9J", label => "Halo Mac"},
+ "halomac" => {key => "e4Rd9J", label => "Halo MAC"},
+ "halomacd" => {key => "e4Rd9J", label => "Halo Demo (Mac)"},
+ "halor" => {key => "e4Rd9J", label => "Halo: Combat Evolved"},
+ "Happinuds" => {key => "DqO198", label => "Happinuvectorone! (DS)"},
+ "harbunkods" => {key => "renLKS", label => "Harlequin Bunko (DS)"},
+ "hardtruck" => {key => "PGWCwm", label => "Hard Truck Tycoon"},
+ "harley3" => {key => "KdF35z", label => "Harley Davidson III"},
+ "harleywof" => {key => "bofRW8", label => "Harley Davidson: Wheels of Freedom"},
+ "harmoon2ds" => {key => "5rNkAv", label => "Harvest Moon DS 2 (EU) (DS)"},
+ "harmoon2kords" => {key => "Gn1cxG", label => "Harvest Moon 2 Korea (DS)"},
+ "harmoon2kordsam" => {key => "Gn1cxG", label => "Harvest Moon 2 Korea Automatch (DS)"},
+ "harmooniohds" => {key => "iCyIlW", label => "Harvest Moon : Island of Happiness (US) (DS)"},
+ "harvfishEUds" => {key => "ZGwLfc", label => "Harvest Fishing (EU) (DS)"},
+ "hastpaint2wii" => {key => "yt6N8J", label => "Greg Hastings Paintball 2 (Wii)"},
+ "hawxpc" => {key => "h6dGAg", label => "Tom Clancy's HAWX"},
+ "hd" => {key => "MIq1wX", label => "Hidden & Dangerous Enhanc"},
+ "hd2" => {key => "sK8pQ9", label => "Hidden and Dangerous 2"},
+ "hd2b" => {key => "T1sU7v", label => "Hidden and Dangerous 2 Beta"},
+ "hd2d" => {key => "sT3p2k", label => "Hidden and Dangerous 2 Demo"},
+ "hd2ss" => {key => "k3Ljf9", label => "Hidden & Dangerous 2 - Sabre Squadron"},
+ "hearts" => {key => "9SKI3t", label => "Hasbro's Hearts"},
+ "heavygear2" => {key => "hCTBQM", label => "Heavy Gear 2"},
+ "heiseikyods" => {key => "4zBVda", label => "Heisei Kyoiku Iinkai DS Zenkoku Touitsu Moshi"},
+ "heistpc" => {key => "BLhZD9", label => "Heist (PC)"},
+ "heistpcam" => {key => "BLhZD9", label => "Heist Automatch (PC)"},
+ "heistpcd" => {key => "BLhZD9", label => "Heist Demo (PC)"},
+ "heistps3" => {key => "BLhZD9", label => "Heist (PS3)"},
+ "heistps3am" => {key => "BLhZD9", label => "Heist Automatch (PS3)"},
+ "heretic2" => {key => "2iuCAS", label => "Heretic II"},
+ "heroes3" => {key => "5Un7pR", label => "Heroes of Might and Magic III"},
+ "heroes3" => {key => "5Un7pR", label => "Heroes Of Might And Magic III"},
+ "heroes3arm" => {key => "vPkKya", label => "Heroes of Might and Magic"},
+ "heroesmanads" => {key => "8lrZB5", label => "Seiken Densetsu: Heroes of Mana (DS)"},
+ "heroeswii" => {key => "vaKmz5", label => "Heroes (Wii)"},
+ "hexenworld" => {key => "6SeXQB", label => "Hexenworld"},
+ "hhball2003" => {key => "cvSTOR", label => "High Heat Baseball 2003"},
+ "hhbball2000" => {key => "zfsDV2", label => "High Heat Baseball 2000"},
+ "hhbball2001" => {key => "5TN9ag", label => "High Heat Baseball 2001"},
+ "hhbball2002" => {key => "YBNEdl", label => "High Heat Baseball 2002"},
+ "hinterland" => {key => "FZNxKf", label => "Hinterland"},
+ "hitz2004ps2" => {key => "t3E8Fc", label => "NHL Hitz 2004 PS2"},
+ "hlwarriors" => {key => "H5rW9v", label => "Highland Warriors"},
+ "hobbitds" => {key => "mfcBBz", label => "Hobbit (DS)"},
+ "hobbitdsam" => {key => "mfcBBz", label => "Hobbit Automatch (DS)"},
+ "hokutokenwii" => {key => "dRn94f", label => "Hokuto no Ken (WiiWare)"},
+ "homeworld2" => {key => "t38kc9", label => "Homeworld 2"},
+ "homeworld2b" => {key => "t3Fd7j", label => "Homeworld 2 Beta"},
+ "homeworld2d" => {key => "t38kc9", label => "Homeworld 2 (Demo)"},
+ "homeworld2d" => {key => "t38kc9", label => "Homeworld 2 demo"},
+ "homm4" => {key => "6ajhPU", label => "Heroes of Might and Magic"},
+ "hoodzps2" => {key => "f6eP9w", label => "Hoodz (PS2)"},
+ "hookagainwii" => {key => "7LR7m6", label => "Hooked Again! (Wii)"},
+ "hookedEUwii" => {key => "qLaV1p", label => "Hooked! Real Motion Fishing (EU) (Wii)"},
+ "hookedfishwii" => {key => "q7ghtd", label => "Hooked! Real Motion Fishing (Wii)"},
+ "hookedJPNwii" => {key => "m4JMgN", label => "Hooked! Real Motion Fishing (JPN) (Wii)"},
+ "hooploopwii" => {key => "4b2QnG", label => "HooperLooper (WiiWare)"},
+ "hoopworldwii" => {key => "mZSW86", label => "Hoopworld (Wii)"},
+ "horserace" => {key => "y4fR91", label => "HorseRace"},
+ "hotncoldds" => {key => "ngPcan", label => "Hot 'n' Cold (DS)"},
+ "hotpaceudps2" => {key => "yB7qfv", label => "Heroes of the Pacific EU Demo (PS2)"},
+ "hotpacificpc" => {key => "yB7qfv", label => "Heroes of the pacific"},
+ "hotpacificpc" => {key => "yB7qfv", label => "Heroes of the Pacific PC"},
+ "hotpacificpcd" => {key => "yB7qfv", label => "Heroes of the pacific demo"},
+ "hotpacificpcd" => {key => "yB7qfv", label => "Heroes of the Pacific PC Demo"},
+ "hotpacificps2" => {key => "yB7qfv", label => "Heroes of the Pacific (PS2)"},
+ "hotpacificps2" => {key => "yB7qfv", label => "Heroes of the pacific PS2"},
+ "hotpacnadps2" => {key => "yB7qfv", label => "Heroes of the Pacific NA Demo (PS2)"},
+ "hotrod" => {key => "Tg4so9", label => "Hot Rod, American Street Drag"},
+ "hotrod2" => {key => "AaP95r", label => "Hot Rod 2: Garage to Glory"},
+ "hotrodwii" => {key => "L0kIVL", label => "High Voltage Hod Rod Show (WiiWare)"},
+ "hotrodwiiam" => {key => "L0kIVL", label => "High Voltage Hod Rod Show Automatch (WiiWare"},
+ "hotwheels2pc" => {key => "u3Fx9h", label => "Hot Wheels 2 (PC)"},
+ "hotwheels2pcd" => {key => "u3Fx9h", label => "Hot Wheels 2 Demo (PC)"},
+ "hotwheels2ps2" => {key => "u3Fx9h", label => "Hot Wheels 2 (PS2)"},
+ "hotwheels2ps2" => {key => "u3Fx9h", label => "Hot Wheels: Stunt Track Challenge PS2"},
+ "hrollerzds" => {key => "ih5ZOl", label => "Homies Rollerz (DS)"},
+ "hsmusicalds" => {key => "Em72Cr", label => "High School Musical (DS)"},
+ "hunterdanwii" => {key => "55Fqd5", label => "Hunter Dan's Triple Crown Tournament Fishing"},
+ "hustleps2" => {key => "ni9hdV", label => "Hustle: Detroit Streets (PS2)"},
+ "hustleps2am" => {key => "ni9hdV", label => "Hustle: Detroit Streets Automatch (PS2)"},
+ "hwbasharena" => {key => "CSBQMI", label => "Hot Wheels Bash Arena"},
+ "idolmasterds" => {key => "oIRn8T", label => "The Idolmaster DS (DS)"},
+ "idraculawii" => {key => "v1xcTU", label => "iDracula (WiiWare)"},
+ "igowii" => {key => "ikN1qM", label => "Igo (Wii) (WiiWare)"},
+ "ihraracing" => {key => "Zbmu4a", label => "IHRA Drag Racing"},
+ "ikaropc" => {key => "kG5bEO", label => "Ikaro (PC)"},
+ "ikaropcam" => {key => "kG5bEO", label => "Ikaro Automatch (PC)"},
+ "ikaropcd" => {key => "kG5bEO", label => "Ikaro Demo (PC)"},
+ "il2sturmovik" => {key => "ajiPU0", label => "IL-2 Sturmovik"},
+ "il2sturmovikd" => {key => "zfsDV2", label => "IL-2 Sturmovik Demo"},
+ "il2sturmovikfb" => {key => "h53Ew8", label => "IL-2 Sturmovik Forgotten Battles"},
+ "ilrosso" => {key => "Y3f9Jn", label => "Il Rosso e il Nero"},
+ "im1pc" => {key => "uRd8zg", label => "Interstellar Marines (PC)"},
+ "im1pcam" => {key => "uRd8zg", label => "Interstellar Marines Automatch (PC)"},
+ "im1pcd" => {key => "uRd8zg", label => "Interstellar Marines Demo (PC)"},
+ "imagineartds" => {key => "Jb87QW", label => "Imagine: Artist (DS)"},
+ "imaginejdds" => {key => "Co6Ih6", label => "Imagine: Jewelry Designer (DS)"},
+ "impglory" => {key => "eCYHgP", label => "Imperial Glory"},
+ "incomingforces" => {key => "MIr0wW", label => "Incoming Forces"},
+ "indycarps2" => {key => "L4H7f9", label => "Indycar Series (PS2)"},
+ "infectedpsp" => {key => "eRq49L", label => "Infected (PSP)"},
+ "infectedpspam" => {key => "eRq49L", label => "Infected (PSP) Automatch"},
+ "influencepc" => {key => "r3fiCS", label => "Influence (PC)"},
+ "influencepcam" => {key => "r3fiCS", label => "Influence Automatch (PC)"},
+ "ingenious" => {key => "HiBpaV", label => "Ingenious"},
+ "insane" => {key => "QxZFex", label => "Insane"},
+ "insanedmo" => {key => "3rAJtI", label => "Insane Demo"},
+ "ioftheenemy" => {key => "uPkKya", label => "I of the Enemy"},
+ "irl2000" => {key => "U7tb4Z", label => "Indy Racing League 2000"},
+ "ironstorm" => {key => "y5Ei7C", label => "Iron Storm"},
+ "ironstormd" => {key => "h9D3Li", label => "Iron Storm Demo"},
+ "ironstrategy" => {key => "ZDYBNF", label => "Iron Strategy"},
+ "itadakistds" => {key => "5AesfG", label => "Itadaki Street DS (DS)"},
+ "itadakistwii" => {key => "vr0klL", label => "Itadaki Street (Wii)"},
+ "itycoon2" => {key => "JeW3oV", label => "Industry Tycoon 2"},
+ "iwar2" => {key => "Bk3a13", label => "Independance War 2"},
+ "iwd2" => {key => "Q3yu7R", label => "Icewind Dale 2"},
+ "iwdale" => {key => "LfZDYB", label => "Icewind Dale"},
+ "iwdalehow" => {key => "h3U3Kz", label => "Icewind Dale: Heart of Winter"},
+ "jacknick6" => {key => "q7zgsC", label => "Jack Nicklaus Golden Bear"},
+ "janefightpc" => {key => "OkkoMA", label => "Jane's Advanced Strike Fighters (PC)"},
+ "janefightpcam" => {key => "OkkoMA", label => "Jane's Advanced Strike Fighters Automatch ("},
+ "janefightps3" => {key => "dLDgtJ", label => "Jane's Advanced Strike Fighters (PS3)"},
+ "janefightps3am" => {key => "dLDgtJ", label => "Jane's Advanced Strike Fighters Automatch (P"},
+ "janesattack" => {key => "dvSTOR", label => "Janes Attack Squadron"},
+ "janesf15" => {key => "XEX3rA", label => "Janes F-15"},
+ "janesf18" => {key => "hPV0uK", label => "Janes F/A-18"},
+ "janesfa" => {key => "OFek1p", label => "Janes Fighters Anthology"},
+ "janesusaf" => {key => "6aiiPU", label => "Janes USAF"},
+ "janesww2" => {key => "wUhCTB", label => "Janes WWII Fighters"},
+ "jbnightfire" => {key => "S9j3L2", label => "James Bond: Nightfire"},
+ "jbond08wii" => {key => "50hs18", label => "James Bond 2008 (Wii)"},
+ "jbond2009ds" => {key => "asL1Wh", label => "James Bond 2009 (DS)"},
+ "jbondmv2ds" => {key => "4AiRCn", label => "James Bond Non Movie 2 (2010) (DS)"},
+ "jbondmv2dsam" => {key => "4AiRCn", label => "James Bond Non Movie 2 Automatch (2010) (DS)"},
+ "jefftest" => {key => "f6Ylm1", label => "Test for Jeffs Games"},
+ "jeopardyps2" => {key => "t9iK4V", label => "Jeopardy (PS2)"},
+ "jetfighter4" => {key => "M3pL73", label => "Jet Fighter 4"},
+ "jetfighter4" => {key => "M3pL73", label => "Jet Fighter 4: Fortress America"},
+ "jikkyonextwii" => {key => "6WH0CV", label => "Jikkyo Powerful Pro Yakyu NEXT (Wii)"},
+ "jikkyopprowii" => {key => "FVeCbl", label => "Jikkyo Powerful Pro Yakyu Wii Kettei ban (Wii"},
+ "jikkyoprowii" => {key => "TKmp3m", label => "Jikkyo Powerful Pro Yakyu Wii (Wii)"},
+ "jissenpachwii" => {key => "5tc98w", label => "Jissen Pachinko Slot (Wii)"},
+ "jk" => {key => "9nUz45", label => "Jedi Knight"},
+ "jk2" => {key => "6ajhOV", label => "Jedi Knight II: Jedi Outcast"},
+ "jk3" => {key => "e4F2N7", label => "Star Wars Jedi Knight: Jedi Academy"},
+ "jkmosith1" => {key => "kD072v", label => "Jedi K:Mystery of Sith1"},
+ "jkmots" => {key => "6ajiPU", label => "Jedi Knight - Mysteries o"},
+ "jnglspeedwii" => {key => "sPCqp8", label => "Jungle Speed (WiiWare)"},
+ "judgedredddi" => {key => "t3D7Bz", label => "Judge Dredd (disabled)"},
+ "jumpsstars2ds" => {key => "VXkOdX", label => "Jump Super Stars 2 (DS)"},
+ "justsingds" => {key => "hwg1XV", label => "Just Sing! (DS)"},
+ "jyankenparwii" => {key => "t2ge59", label => "Jyanken (rock-paper-scissors) Party Paradise"},
+ "Jyotrainwii" => {key => "bRtr3p", label => "Minna de Jyoshiki Training Wii (Wii)"},
+ "kacademy" => {key => "blGjuN", label => "Klingon Academy"},
+ "kaihatsuds" => {key => "gW0gp9", label => "Kaihatsushitsu (DS)"},
+ "kaiwanowads" => {key => "NelyD3", label => "KAIWANOWA (DS)"},
+ "kaosmpr" => {key => "6cQWlD", label => "Kaos MPR"},
+ "kaosmpram" => {key => "6cQWlD", label => "Kaos MPR Automatch"},
+ "kaosmprd" => {key => "6cQWlD", label => "Kaos MPR Demo"},
+ "karajoy3wii" => {key => "D4B7zM", label => "Karaoke JOYSOUND Wii Ver3.0 (Wii)"},
+ "kateifestds" => {key => "kJcEq8", label => "Katei Kyoshi Hitman Reborn DS Vongole Festiva"},
+ "katekyohitds" => {key => "9kXaZG", label => "katekyo hitman REBORN! DS FLAME RUMBLE XX (DS"},
+ "keenracerswii" => {key => "9McTZh", label => "Keen Racers (WiiWare)"},
+ "kenteitvwii" => {key => "uGRdPx", label => "Kentei! TV Wii (Wii)"},
+ "kentomashods" => {key => "feZytn", label => "Ide Yohei no Kento Masho DS (DS)"},
+ "keuthendev" => {key => "TtEZQR", label => "Keuthen.net Development"},
+ "keuthendevam" => {key => "TtEZQR", label => "Keuthen.net Development Automatch"},
+ "kidslearnwii" => {key => "ws94sA", label => "Kids Learning Desk (WiiWare)"},
+ "kingbeetlesds" => {key => "9mTZtW", label => "The King of Beetles Mushiking Super Collectio"},
+ "kingclubsds" => {key => "rL9dOy", label => "King of Clubs (DS)"},
+ "kingpin" => {key => "QFWxY2", label => "Kingpin"},
+ "kingtigerspc" => {key => "E4hD2t", label => "King Tigers (PC)"},
+ "kingtigerspcam" => {key => "E4hD2t", label => "King Tigers Automatch (PC)"},
+ "kingtigerspcd" => {key => "E4hD2t", label => "King Tigers Demo (PC)"},
+ "kiss" => {key => "9tFALe", label => "KISS: Psycho Circus"},
+ "kissdc" => {key => "6EwAbh", label => "Kiss: Dreamcast"},
+ "kissdc" => {key => "9tFALe", label => "KISS: Psycho Circus DC"},
+ "kkhrebornwii" => {key => "76Trpf", label => "Katei Kyoshi Hitman REBORN! Kindan no Yami no"},
+ "knelynch2ddol" => {key => "iSF88P", label => "Kane & Lynch 2: Dog Days (OnLive)"},
+ "knelynch2ddolam" => {key => "iSF88P", label => "Kane & Lynch 2: Dog Days Automatch (OnLive)"},
+ "knightsoh" => {key => "9f5MaL", label => "Knights of Honor"},
+ "knightsohd" => {key => "9f5MaL", label => "Knights of Honor Demo"},
+ "kodawar2010ds" => {key => "dXZiwq", label => "Kodawari Saihai Simulation Ochanoma Pro Yakyu"},
+ "kohan" => {key => "Kbao3a", label => "Kohan: Immortal Sovereigns"},
+ "kohanag" => {key => "dl1p7z", label => "Kohan: Ahrimans Gift"},
+ "kohanagdemo" => {key => "Kbao3a", label => "Kohan: Ahrimans Gift Demo"},
+ "kohandemo" => {key => "Kbao3a", label => "Kohan Demo"},
+ "kohanexp" => {key => "Kbao3a", label => "Kohan Expansion"},
+ "kohankow" => {key => "uE4gJ7", label => "Kohan: Kings of War"},
+ "kohankowd" => {key => "uE4gJ7", label => "Kohan: Kings of War Demo"},
+ "koinudewii" => {key => "GyW0xG", label => "Koinu de Kururin Wii (WiiWare)"},
+ "konductrads" => {key => "odc8Ps", label => "Konductra (DS)"},
+ "konsportswii" => {key => "sJEymO", label => "Konami Sports Club @ Home (WiiWare)"},
+ "kororinpa2wii" => {key => "aWybXG", label => "Kororinpa 2 (Wii)"},
+ "koshien2ds" => {key => "UKdPFf", label => "PowerPro Pocket Koshien 2 (DS)"},
+ "kott2pc" => {key => "p3iWmL", label => "Knights of the Temple 2 (PC)"},
+ "kott2ps2" => {key => "p3iWmL", label => "Knights of the Temple 2 (PS2)"},
+ "kott2ps2" => {key => "p3iWmL", label => "Knights of the Temple 2 PS2"},
+ "kqmateDS" => {key => "8dEm7s", label => "KaitoranmaQ Mate! (DS)"},
+ "krabbitpcmac" => {key => "Jf9OhT", label => "KrabbitWorld Origins (PC/Mac)"},
+ "krabbitpcmacam" => {key => "Jf9OhT", label => "KrabbitWorld Origins Automatch (PC/Mac)"},
+ "krabbitpcmacd" => {key => "Jf9OhT", label => "KrabbitWorld Origins Demo (PC/Mac)"},
+ "krissxpc" => {key => "T8dDn4", label => "KrissX (PC)"},
+ "krissxpcam" => {key => "T8dDn4", label => "KrissX Automatch (PC)"},
+ "kumawar" => {key => "y3G9dE", label => "Kuma War"},
+ "kurikinds" => {key => "2ZaR1q", label => "Kurikin (DS)"},
+ "kurikurimixds" => {key => "Q25SLf", label => "Kuri Kuri Mix DS (DS)"},
+ "lanoirepc" => {key => "sx37ex", label => "L.A. Noire (PC)"},
+ "lanoirepcam" => {key => "sx37ex", label => "L.A. Noire Automatch (PC)"},
+ "lanoirepcd" => {key => "sx37ex", label => "L.A. Noire Demo (PC)"},
+ "lanoireps3" => {key => "yPpSqe", label => "L.A. Noire (PS3)"},
+ "lanoireps3am" => {key => "yPpSqe", label => "L.A. Noire Automatch (PS3)"},
+ "lanoireps3d" => {key => "yPpSqe", label => "L.A. Noire Demo (PS3)"},
+ "lanoirex360" => {key => "fKw37T", label => "L.A. Noire (x360)"},
+ "lanoirex360am" => {key => "fKw37T", label => "L.A. Noire Automatch (x360)"},
+ "lanoirex360d" => {key => "fKw37T", label => "L.A. Noire Demo (x360)"},
+ "laserarena" => {key => "JbEb3a", label => "Laser Arena (2015)"},
+ "laserarena" => {key => "TBQMIr", label => "Laser Arena Demo"},
+ "laserarenad" => {key => "TBQMIr", label => "Laser Arena Demo"},
+ "laststorywii" => {key => "2sapf3", label => "The Last Story (Wii)"},
+ "lazgo2demo" => {key => "MIq0wW", label => "Lazgo 2 Demo"},
+ "lbookofbigsds" => {key => "zTtFaT", label => "Little Book of Big Secrets (DS)"},
+ "le_projectx" => {key => "t3F9vY", label => "Legend Entertainment Project X"},
+ "leadfoot" => {key => "n8J20Y", label => "Leadfoot"},
+ "leadfootd" => {key => "uNctFb", label => "Leadfoot Demo"},
+ "legendarypc" => {key => "WUp2J6", label => "Legendary (PC)"},
+ "legendarypcam" => {key => "WUp2J6", label => "Legendary Automatch (PC)"},
+ "legendarypcd" => {key => "WUp2J6", label => "Legendary Demo (PC)"},
+ "legendaryps3" => {key => "9HaHVD", label => "Legendary (PS3)"},
+ "legendaryps3am" => {key => "9HaHVD", label => "Legendary Automatch (PS3)"},
+ "legendsmm" => {key => "5Kbawl", label => "Legends of Might and Magic"},
+ "legendsmmbeta" => {key => "5Kbawl", label => "Legends of Might and Magic Beta"},
+ "legendsmmbeta" => {key => "5Kbawl", label => "Legends of Might and Magic First Look"},
+ "legendsmmbeta2" => {key => "5Kbawl", label => "Legends of Might and Magic First Look 2"},
+ "legionarena" => {key => "Gd4v8j", label => "Legion Arena"},
+ "legofwreps3" => {key => "PyTirM", label => "WWE Legends of Wrestlemania (PS3)"},
+ "legofwreps3am" => {key => "PyTirM", label => "WWE Legends of Wrestlemania Automatch (PS3)"},
+ "legofwrex360" => {key => "VuPdJX", label => "WWE Legends of Wrestlemania (Xbox 360)"},
+ "legofwrex360am" => {key => "VuPdJX", label => "Legends of Wrestlemania Automatch (Xbox 360)"},
+ "legouniverse" => {key => "HPaWTu", label => "LEGO Universe"},
+ "liightwii" => {key => "VveRkG", label => "Liight (WiiWare)"},
+ "links2000" => {key => "MIr1wW", label => "Links LS 2000"},
+ "links2001" => {key => "8cvSTO", label => "Links 2001"},
+ "links2001dmo" => {key => "xZGexS", label => "Links 2001 Demo"},
+ "links2004" => {key => "jG3d9Y", label => "Links 2004"},
+ "links98" => {key => "J8yc5z", label => "Links LS 1998"},
+ "links99" => {key => "iQxZFe", label => "Links LS 1999"},
+ "linksds" => {key => "9TKvyS", label => "Links (DS)"},
+ "linksext" => {key => "Fdk2q7", label => "Links Extreme"},
+ "lionheart" => {key => "h5R3cp", label => "Lionheart"},
+ "lithdev" => {key => "vFQNfR", label => "Monolith Development"},
+ "lithdevam" => {key => "vFQNfR", label => "Monolith Development Automatch"},
+ "livewire" => {key => "wuyvAa", label => "GameSpy Livewire"},
+ "locksquestds" => {key => "30bDMu", label => "Construction Combat: Lock's Quest"},
+ "locomotion" => {key => "uTAGyB", label => "Chris Sawyer's Locomotion"},
+ "lonposUSwii" => {key => "AtQIeu", label => "Lonpos (US) (WiiWare)"},
+ "lonposwii" => {key => "L08ik8", label => "Lonpos (WiiWare)"},
+ "lostmagicds" => {key => "eI0Rml", label => "Lost Magic (DS)"},
+ "lostmagicwii" => {key => "hQrVFm", label => "Lost Magic Wii (Wii)"},
+ "lotr3" => {key => "y2Sc6h", label => "Lords of the Realm III"},
+ "lotr3b" => {key => "y2Sc6h", label => "Lords of the Realm III Beta"},
+ "lotrbfme2" => {key => "PvzwZF", label => "The Rise of The Witch-king"},
+ "lotrbme" => {key => "h3D7Lc", label => "Lord of the Rings: The Battle For Middle-Eart"},
+ "lotrbme2" => {key => "g3Fd9z", label => "Lord of the Rings: The Battle for Middle-eart"},
+ "lotrbme2r" => {key => "g3Fd9x", label => "Lord of the Rings: Battle for Middle-earth 2"},
+ "lotrbme2r" => {key => "g3Fd9z", label => "Lord of the Rings: The Battle for Middle-eart"},
+ "lotrbme2wk" => {key => "g3Fd9z", label => "Lord of the Rings: The Battle for Middle-eart"},
+ "lovegolfwii" => {key => "mToBwA", label => "Wii Love Golf (Wii)"},
+ "lozphourds" => {key => "t8RsDb", label => "The Legend of Zelda: Phantom Hourglass (DS)"},
+ "luchalibrepc" => {key => "dGu4VZ", label => "Lucha Libre AAA 2010 (PC)"},
+ "luchalibrepcam" => {key => "dGu4VZ", label => "Lucha Libre AAA 2010 Automatch (PC)"},
+ "luchalibrepcd" => {key => "dGu4VZ", label => "Lucha Libre AAA 2010 Demo (PC)"},
+ "luchalibreps3" => {key => "DNbubV", label => "Lucha Libre AAA 2010 (PS3)"},
+ "luchalibreps3am" => {key => "DNbubV", label => "Lucha Libre AAA 2010 Automatch (PS3)"},
+ "luchalibreps3d" => {key => "DNbubV", label => "Lucha Libre AAA 2010 Demo (PS3)"},
+ "luchalibrewii" => {key => "56nk2f", label => "Lucha Libre AAA 2010 (Wii)"},
+ "luchalibrewiiam" => {key => "56nk2f", label => "Lucha Libre AAA 2010 Automatch (Wii)"},
+ "luckystar2ds" => {key => "BFxkaz", label => "Lucky Star 2 (DS)"},
+ "ludicrousmac" => {key => "P99WDn", label => "Ludicrous (MAC)"},
+ "ludicrousmacam" => {key => "P99WDn", label => "Ludicrous Automatch (MAC)"},
+ "ludicrousmacd" => {key => "P99WDn", label => "Ludicrous Demo (MAC)"},
+ "ludicrouspc" => {key => "JH70r6", label => "Ludicrous (PC)"},
+ "ludicrouspcam" => {key => "JH70r6", label => "Ludicrous Automatch (PC)"},
+ "ludicrouspcd" => {key => "JH70r6", label => "Ludicrous Demo (PC)"},
+ "lumark3eyesds" => {key => "65yvsC", label => "Luminous Ark 3 Eyes (DS)"},
+ "luminarc2ds" => {key => "e8O5aA", label => "Luminous Arc 2 Will (DS)"},
+ "luminarc2EUds" => {key => "lJsN7I", label => "Luminous Arc 2 Will (EU) (DS)"},
+ "luminarc2USds" => {key => "9kIcv6", label => "Luminous Arc 2 Will (US) (DS)"},
+ "luminarcUSds" => {key => "aI8FCJ", label => "Luminous Arc (US) (DS)"},
+ "machines" => {key => "xS6aii", label => "Machines"},
+ "madden08ds" => {key => "wFuf7q", label => "Madden NFL 08 (DS)"},
+ "madden09ds" => {key => "yOuECC", label => "Madden NFL 09 (DS)"},
+ "madeinoreds" => {key => "6vwCT1", label => "Made in Ore (DS)"},
+ "mafia" => {key => "dxboeR", label => "Mafia"},
+ "mafia" => {key => "dxboeR", label => "Mafia: City of Lost Heaven"},
+ "mafia2pc" => {key => "HgPhRC", label => "Mafia 2 (PC)"},
+ "mafia2pcam" => {key => "HgPhRC", label => "Mafia 2 Automatch (PC)"},
+ "mafia2ps3" => {key => "cn3EpM", label => "Mafia 2 (PS3)"},
+ "mafia2ps3am" => {key => "cn3EpM", label => "Mafia 2 Automatch (PS3)"},
+ "mageknight" => {key => "IZNkpb", label => "Mage Knight Apocalypse"},
+ "mageknightd" => {key => "IZNkpb", label => "Mage Knight Apocalypse Demo"},
+ "magmay2" => {key => "QW88dv", label => "Magic & Mayhem 2"},
+ "magmay2d" => {key => "ORp4kG", label => "The Art of War"},
+ "mahjongkcds" => {key => "eBtrQN", label => "Mah-Jong Kakuto Club (DS)"},
+ "majesty" => {key => "qik37G", label => "Majesty"},
+ "majesty" => {key => "qik37G", label => "Majesty: The Fantasy Kingdom Sim"},
+ "Majesty2PC" => {key => "aKwmX5", label => "Majesty 2 (PC)"},
+ "Majesty2PCam" => {key => "aKwmX5", label => "Majesty 2 Automatch (PC)"},
+ "Majesty2PCd" => {key => "aKwmX5", label => "Majesty 2 Demo (PC)"},
+ "majestyx" => {key => "wUhCTC", label => "Majesty Expansion"},
+ "mariokartds" => {key => "yeJ3x8", label => "Mario Kart (DS)"},
+ "mariokartdsam" => {key => "yeJ3x8", label => "Mario Kart (DS, Automatch )"},
+ "mariokartkods" => {key => "Uu2GJ4", label => "Mario Kart DS (DS) (KOR)"},
+ "mariokartwii" => {key => "9r3Rmy", label => "Mario Kart Wii (Wii)"},
+ "mariosprtwii" => {key => "TpMQw7", label => "Mario Sports MIX (Wii)"},
+ "marveltcard" => {key => "GkWfL7", label => "Marvel Trading Card Game (PC & PSP)"},
+ "marveltcardds" => {key => "GkWfL7", label => "Marvel Trading Card Game (DS)"},
+ "marveltcardps" => {key => "GkWfL7", label => "Marvel Trading Card Game (PSP)"},
+ "marvlegjpps3" => {key => "eAMh9M", label => "Marvel Legends (PS3, Japan)"},
+ "marvlegjpps3am" => {key => "eAMh9M", label => "Marvel Legends Automatch (PS3, Japan)"},
+ "marvlegnpsp" => {key => "eAMh9M", label => "Marvel Legends (PSP, NTSC)"},
+ "marvlegnpspam" => {key => "eAMh9M", label => "Marvel Legends Automatch (PSP, NTSC)"},
+ "marvlegpc" => {key => "eAMh9M", label => "Marvel Legends (PC)"},
+ "marvlegpcam" => {key => "eAMh9M", label => "Marvel Legends Automatch (PC)"},
+ "marvlegpcd" => {key => "eAMh9M", label => "Marvel Legends Demo (PC)"},
+ "marvlegpcdam" => {key => "eAMh9M", label => "Marvel Legends Demo Automatch (PC)"},
+ "marvlegps2" => {key => "eAMh9M", label => "Marvel Legends (PS2)"},
+ "marvlegps2am" => {key => "eAMh9M", label => "Marvel Legends Automatch (PS2)"},
+ "marvlegps2p" => {key => "eAMh9M", label => "Marvel Legends PAL (PS2)"},
+ "marvlegps2pam" => {key => "eAMh9M", label => "Marvel Legends Automatch PAL (PS2)"},
+ "marvlegps3" => {key => "eAMh9M", label => "Marvel Legends (PS3)"},
+ "marvlegps3am" => {key => "eAMh9M", label => "Marvel Legends Automatch (PS3)"},
+ "marvlegps3p" => {key => "eAMh9M", label => "Marvel Legends PAL (PS3)"},
+ "marvlegps3pam" => {key => "eAMh9M", label => "Marvel Legends PAL Automatch (PS3)"},
+ "marvlegpsp" => {key => "eAMh9M", label => "Marvel Legends (PSP, PAL)"},
+ "marvlegpspam" => {key => "eAMh9M", label => "Marvel Legends Automatch (PSP, PAL)"},
+ "masterrally" => {key => "p5jGg6", label => "Master Rally"},
+ "matrixproxy" => {key => "m6NwA2", label => "Matrix Proxy"},
+ "maxpayne3pc" => {key => "qyAD44", label => "Max Payne 3 (PC)"},
+ "maxpayne3pcam" => {key => "qyAD44", label => "Max Payne 3 Automatch (PC)"},
+ "maxpayne3pcd" => {key => "qyAD44", label => "Max Payne 3 Demo (PC)"},
+ "maxpayne3ps3" => {key => "QN8v5P", label => "Max Payne 3 (PS3)"},
+ "maxpayne3ps3am" => {key => "QN8v5P", label => "Max Payne 3 Automatch (PS3)"},
+ "maxpayne3ps3d" => {key => "QN8v5P", label => "Max Payne 3 Demo (PS3)"},
+ "maxpayne3x360" => {key => "28xd4T", label => "Max Payne 3 (360)"},
+ "maxpayne3x360am" => {key => "28xd4T", label => "Max Payne 3 Automatch (360)"},
+ "maxpayne3x360d" => {key => "28xd4T", label => "Max Payne 3 Demo (360)"},
+ "mcdcrewds" => {key => "8qTI8b", label => "McDonald's DS Crew Development Program (DS)"},
+ "mclub2pc" => {key => "y6E3c9", label => "Midnight Club 2"},
+ "mclub2pc" => {key => "y6E3c9", label => "Midnight Club 2 (PC)"},
+ "mclub2ps2" => {key => "h4Rx9d", label => "Midnight Club 2 (PS2)"},
+ "mclub3ps2" => {key => "g7J2cX", label => "Midnight Club 3 DUB Edition (PS2)"},
+ "mclub4ps3" => {key => "GQ8VXR", label => "Midnight Club 4 (PS3)"},
+ "mclub4ps3am" => {key => "GQ8VXR", label => "Midnight Club 4 Automatch (PS3)"},
+ "mclub4ps3dev" => {key => "GQ8VXR", label => "Midnight Club 4 Dev (PS3)"},
+ "mclub4ps3devam" => {key => "GQ8VXR", label => "Midnight Club 4 Dev Automatch (PS3)"},
+ "mclub4xbox" => {key => "GQ8VXR", label => "Midnight Club 4 (Xbox360)"},
+ "mclub4xboxam" => {key => "GQ8VXR", label => "Midnight Club 4 Automatch (Xbox360)"},
+ "mclub4xboxdev" => {key => "GQ8VXR", label => "Midnight Club 4 Dev (Xbox360)"},
+ "mclub4xboxdevam" => {key => "GQ8VXR", label => "Midnight Club 4 Dev Automatch (Xbox360)"},
+ "mcm2demo" => {key => "ajhOU0", label => "Motocross Madness 2 Trial"},
+ "mcmad" => {key => "aW7c9n", label => "Motocross Madness"},
+ "mcmaddemo" => {key => "3MHCZ8", label => "Motocross Madness Trial"},
+ "mcmania" => {key => "BAbas9", label => "Motocross Mania"},
+ "mcmaniadmo" => {key => "TCQMIr", label => "Motocross Mania Demo"},
+ "mcomm2" => {key => "7JsQ0t", label => "MechCommander 2"},
+ "mcommgold" => {key => "xS6aji", label => "MechCommander Gold"},
+ "mdamiiwalkds" => {key => "8c2EoW", label => "Minna de Aruku! Mii Walk (DS)"},
+ "mdungeonds" => {key => "KqfKOx", label => "Mysterious Dungeon: Shiren the Wanderer DS (D"},
+ "mebiuswii" => {key => "T0zyn9", label => "Mebius Drive (WiiWare)"},
+ "mech3" => {key => "z8vRn7", label => "Mech Warrior 3"},
+ "mech3" => {key => "z8vRn7", label => "MechWarrior 3"},
+ "mech3pm" => {key => "TORp4k", label => "Pirates Moon"},
+ "mech4" => {key => "uNbXef", label => "Mechwarrior 4"},
+ "mech4bkexp" => {key => "csFbq9", label => "MechWarrior Black Knight"},
+ "mech4bwexpd" => {key => "Fel1q7", label => "MechWarrior Black Knight"},
+ "mech4merc" => {key => "q7zgsC", label => "MechWarrior 4: Mercenarie"},
+ "mech4st" => {key => "tFcq8m", label => "MechWarrior 4: Vengeance"},
+ "mechamotedsi" => {key => "Wws1g2", label => "Mechamote Iincho 4 (DSi)"},
+ "mechamotedsiam" => {key => "Wws1g2", label => "Mechamote Iincho 4 Automatch (DSi)"},
+ "mechcomm" => {key => "Ir0wXE", label => "MechCommander"},
+ "mechcomm2" => {key => "6ajiPV", label => "MechCommander 2"},
+ "medarotds" => {key => "n8UPyi", label => "MedaRot DS (DS)"},
+ "medarotkuds" => {key => "S7azQU", label => "Medarot DS kuwagata (DS)"},
+ "medarotkudsam" => {key => "S7azQU", label => "Medarot DS kuwagata Automatch (DS)"},
+ "medieval" => {key => "L3d8Sh", label => "Medieval: Total War"},
+ "medieval2" => {key => "G23p7l", label => "Medieval 2 Total War"},
+ "medieval2am" => {key => "G23p7l", label => "Medieval 2 Total War Automatch"},
+ "medieval2d" => {key => "yVjUSz", label => "Medieval II Demo"},
+ "medievalvi" => {key => "w5R39i", label => "Medieval Total War Viking Invasion"},
+ "megaman10wii" => {key => "th2moV", label => "Mega Man 10 (WiiWare)"},
+ "megaman9wii" => {key => "r6PBov", label => "Mega Man 9 (WiiWare)"},
+ "megamansfds" => {key => "r2zQPw", label => "Mega Man Star Force (US) (DS)"},
+ "megamansfeuds" => {key => "8wlN9C", label => "Mega Man Star Force (EU) (DS)"},
+ "mekurucawii" => {key => "fUq0HT", label => "Mekuruca (WiiWare)"},
+ "memansf2EUDS" => {key => "ZqlkTy", label => "Mega Man Star Force 2: Zerker x Shinobi / Sau"},
+ "memansf2USDS" => {key => "ZAO34c", label => "Mega Man Star Force 2: Zerker x Shinobi / Sau"},
+ "menofvalor" => {key => "h3Fs9c", label => "Men of Valor"},
+ "menofvalord" => {key => "kJm48s", label => "Men of Valor Demo"},
+ "MenofWar" => {key => "AkxMQE", label => "Men of War"},
+ "menofwar:as" => {key => "aGkHH7", label => "Men of War: UNUSED"},
+ "menofwar:asam" => {key => "aGkHH7", label => "Men of War: UNUSED"},
+ "menofwar:nam" => {key => "Wa621Q", label => "Men of War: UNUSED"},
+ "menofwar:namam" => {key => "Wa621Q", label => "Men of War: UNUSED"},
+ "menofwaras" => {key => "aGkHH7", label => "Men of War: Assault Squad (Demo)"},
+ "menofwarasam" => {key => "aGkHH7", label => "Men of War: Assault Squad Automatch"},
+ "menofwarasr" => {key => "2zcgZn", label => "Men of War: Assault Squad (Retail)"},
+ "menofwarnam" => {key => "Wa621Q", label => "Men of War: Vietnam"},
+ "menofwarnamam" => {key => "Wa621Q", label => "Men of War: Vietnam Automatch"},
+ "menofwarpc" => {key => "KrMW4d", label => "Men of War"},
+ "menofwarpc" => {key => "KrMW4d", label => "Men of War (PC)"},
+ "menofwarpcam" => {key => "KrMW4d", label => "Men of War Automatch (PC)"},
+ "menofwarpcb" => {key => "mER2kk", label => "Men of War (PC) BETA"},
+ "menofwarpcbam" => {key => "mER2kk", label => "Men of War Automatch (PC) BETA"},
+ "menofwarpcd" => {key => "z4L7mK", label => "Men of War MP DEMO (PC)"},
+ "menofwarpcdam" => {key => "z4L7mK", label => "Men of War MP DEMO Automatch (PC)"},
+ "merchant2" => {key => "zdybne", label => "Merchant Prince II"},
+ "metalcrush3" => {key => "KvE2Pk", label => "Metal Crush 3"},
+ "metalfight3ds" => {key => "2zAHRT", label => "Metal Fight Bay Blade DS3 (DS)"},
+ "metalfight3dsam" => {key => "2zAHRT", label => "Metal Fight Bay Blade DS3 Automatch (DS)"},
+ "metalfightds" => {key => "noSUQC", label => "Metal Fight Bayblade (DS)"},
+ "metalmax3ds" => {key => "wpDayd", label => "Metal Max 3 (DS)"},
+ "metalmax3dsam" => {key => "wpDayd", label => "Metal Max 3 Automatch (DS)"},
+ "metprime3wii" => {key => "i8sP5E", label => "Metroid Prime 3 (Wii)"},
+ "mezasetm2wii" => {key => "hfBxDP", label => "Mezase!! Tsuri Master 2 (Wii)"},
+ "mfatigue" => {key => "nfRW88", label => "Metal Fatigue"},
+ "mfcoachwii" => {key => "9q49yB", label => "My Fitness Coach (Wii)"},
+ "mfightbbueuds" => {key => "3wN0b2", label => "Metal Fight Bay Blade ULTIMATE Europe (DS)"},
+ "mfightbbukds" => {key => "tmVmhR", label => "Metal Fight Bay Blade ULTIMATE Korea (DS)"},
+ "mfightbbukdsam" => {key => "tmVmhR", label => "Metal Fight Bay Blade ULTIMATE Korea Automat"},
+ "mfightbbultds" => {key => "v2cC6e", label => "Metal Fight Bay Blade ULTIMATE (DS)"},
+ "mfightbbunads" => {key => "XN3D12", label => "Metal Fight Bay Blade ULTIMATE North America"},
+ "mh3uswii" => {key => "IwkoVF", label => "Monster Hunter 3 (US/EU) (Wii)"},
+ "micchannelwii" => {key => "wkvBfX", label => "Mic Chat Channel (Wii)"},
+ "midmad" => {key => "8gEaZv", label => "Midtown Madness"},
+ "midmad2" => {key => "7nLfZD", label => "Midtown Madness 2"},
+ "midmad2dmo" => {key => "sAJtHo", label => "Midtown Madness 2 Trial"},
+ "midmaddemo" => {key => "3MHCZ8", label => "Midtown Madness Demo"},
+ "midmaddemo" => {key => "3MHCZ8", label => "Midtown Madness Trial"},
+ "migalley" => {key => "wUhCSC", label => "Mig Alley"},
+ "millebourn" => {key => "kD072v", label => "Hasbro's Mille Borne"},
+ "millebourn" => {key => "kD072v", label => "Hasbro's Mille Bournes"},
+ "mini4wdds" => {key => "XMGZia", label => "Mini 4WD DS (DS)"},
+ "mk9ps3" => {key => "Holr4e", label => "Mortal Kombat 9 (PS3)"},
+ "mk9ps3am" => {key => "Holr4e", label => "Mortal Kombat 9 Automatch (PS3)"},
+ "mk9test" => {key => "a0GZNV", label => "Midway MK9 Test"},
+ "mk9testam" => {key => "a0GZNV", label => "Midway MK9 Test Automatch"},
+ "mk9testd" => {key => "a0GZNV", label => "Midway MK9 Test Demo"},
+ "mkarmpalps2" => {key => "VZvp7J", label => "Mortal Kombat: Armageddon PAL (PS2)"},
+ "mkarmps2" => {key => "VZvp7J", label => "Mortal Kombat: Armageddon (PS2)"},
+ "mkdeceppalps2" => {key => "2s9Jc4", label => "Mortal Kombat Deception PAL (PS2)"},
+ "mkdeceptionps2" => {key => "2s9Jc4", label => "Mortal Kombat Deceptions (PS2)"},
+ "mkdeceptionps2" => {key => "2s9Jc4", label => "Mortal Kombat: Deception PS2"},
+ "mkvsdcEUps3" => {key => "r7TauG", label => "Mortal Kombat vs. DC Universe (EU) (PS3)"},
+ "mkvsdcEUps3am" => {key => "r7TauG", label => "Mortal Kombat vs. DC Universe Automatch (EU)"},
+ "mkvsdcEUps3b" => {key => "r7TauG", label => "Mortal Kombat vs. DC Universe Beta (EU) (PS3"},
+ "mkvsdcps3" => {key => "XqrAqV", label => "Mortal Kombat vs. DC Universe (PS3)"},
+ "mkvsdcps3am" => {key => "XqrAqV", label => "Mortal Kombat vs. DC Universe Automatch (PS3"},
+ "mkvsdcps3b" => {key => "XqrAqV", label => "Mortal Kombat vs. DC Universe Beta (PS3)"},
+ "mkvsdcps3bam" => {key => "XqrAqV", label => "Mortal Kombat vs. DC Universe Beta Automatch"},
+ "mkvsdcxbox" => {key => "XqrAqV", label => "Mortal Kombat vs. DC Universe (Xbox)"},
+ "mkvsdcxboxam" => {key => "XqrAqV", label => "Mortal Kombat vs. DC Universe Automatch (Xbo"},
+ "mlb2k11wii" => {key => "2RHvyx", label => "Major League Baseball 2K11"},
+ "mlb2k9ds" => {key => "8Z34m5", label => "Major League Baseball 2K9 Fantasy All-Stars ("},
+ "MLBallstarsds" => {key => "KT8yGE", label => "Major League Baseball Fantasy All-Stars (DS)"},
+ "mleatingJPwii" => {key => "4T0Tcg", label => "Major League Eating: The Game (JPN) (WiiWare)"},
+ "mleatingJPwiiam" => {key => "4T0Tcg", label => "Major League Eating: The Game Automatch (JPN"},
+ "mleatingwii" => {key => "lcUrQg", label => "Major League Eating: The Game (EU/US) (WiiWar"},
+ "mmadexps3d" => {key => "M2ydAr", label => "Monster Madness EX Demo (PS3)"},
+ "mmadness2" => {key => "MZIq1w", label => "Motocross Madness 2"},
+ "mmadnessexps3" => {key => "M2ydAr", label => "Monster Madness EX (PS3)"},
+ "mmadnessexps3am" => {key => "M2ydAr", label => "Monster Madness EX Automatch (PS3)"},
+ "mmadnesswii" => {key => "Ok1Lrl", label => "Military Madness (WiiWare)"},
+ "mmartracewii" => {key => "NCAq3G", label => "Mega Mart Race (WiiWare)"},
+ "mmessagesds" => {key => "5wFQve", label => "Mixed Messages (DS)"},
+ "mmtest" => {key => "F24ooQ", label => "Matchmaking Backend Test"},
+ "mmtestam" => {key => "F24ooQ", label => "Matchmaking Backend Test Automatch"},
+ "mmvdkds" => {key => "d8Wm37", label => "Mini Mario vs Donkey Kong (DS)"},
+ "mobileforces" => {key => "g3H6eR", label => "Mobile Forces"},
+ "mobileforcesd" => {key => "g3H6eR", label => "Mobile Forces Demo"},
+ "mogumonwii" => {key => "yKTavT", label => "Tataite! Mogumon (WiiWare)"},
+ "mohaa" => {key => "M5Fdwc", label => "Medal of Honor Allied Assault"},
+ "mohaab" => {key => "y32FDc", label => "Medal of Honor: Allied Assault Breakthrough"},
+ "mohaabd" => {key => "y32FDc", label => "Medal of Honor: Allied Assault Breakthrough D"},
+ "mohaabdm" => {key => "y32FDc", label => "Medal of Honor: Allied Assault Breakthrough ("},
+ "mohaabmac" => {key => "y32FDc", label => "Medal of Honor: Breakthrough (Mac)"},
+ "mohaad" => {key => "M5Fdwc", label => "Medal of Honor: Allied Assault Demo"},
+ "mohaamac" => {key => "M5Fdwc", label => "Medal of Honor: Allied Assault (Mac)"},
+ "mohaas" => {key => "h2P1c9", label => "Medal of Honor: Allied Assault Spearhead"},
+ "mohaasd" => {key => "2vPkJy", label => "Medal of Honor: Allied As"},
+ "mohaasmac" => {key => "h2P1c9", label => "Medal of Honor: Allied Assault Spearhead (Mac"},
+ "MOHADemo" => {key => "rcLGZj", label => "Medal of Honor Airborne Demo"},
+ "mohairborne" => {key => "TjNJcy", label => "Medal of Honor: Airborne"},
+ "mohpa" => {key => "S6v8Lm", label => "Medal of Honor: Pacific Assault"},
+ "mohpad" => {key => "S6v8Lm", label => "Medal of Honor: Pacific Assault Demo"},
+ "molecontrolpc" => {key => "LqpHUN", label => "Mole Control (PC)"},
+ "molecontrolpcam" => {key => "LqpHUN", label => "Mole Control Automatch (PC)"},
+ "momo2010wii" => {key => "2lbGXb", label => "Momotaro Dentetsu 2010 Nendoban (Wii)"},
+ "momoden16wii" => {key => "TuDtif", label => "Momotaro Dentetsu 16 - Hokkaido Daiido no Mak"},
+ "momotaro20ds" => {key => "gPy2cd", label => "Momotaro Dentetsu 20 Shuunen (DS)"},
+ "momotarodends" => {key => "gro5rK", label => "Momotaro Dentetsu 16 ~ Hokkaido Daiido no Mak"},
+ "monfarm2ds" => {key => "IvFJw0", label => "Monster Farm DS 2 (DS)"},
+ "monhunter3wii" => {key => "mO984l", label => "Monster Hunter 3 (JPN) (Wii)"},
+ "monhuntergwii" => {key => "hyCk2c", label => "Monster Hunter G (Wii)"},
+ "monkmayhemwii" => {key => "wMe9tQ", label => "Maniac Monkey Mayhem (WiiWare)"},
+ "monlabwii" => {key => "8Lypy2", label => "Monster Lab (Wii)"},
+ "monopoly" => {key => "alVRIq", label => "Monopoly"},
+ "monopoly" => {key => "alVRIq", label => "Monopoly 2000"},
+ "monopoly3" => {key => "vPkKya", label => "Monopoly 3"},
+ "monopolyty" => {key => "YDXBNE", label => "Monopoly Tycoon"},
+ "monracersds" => {key => "Uo295H", label => "Monster Racers (DS)"},
+ "monsterfarmds" => {key => "Qhcw9n", label => "Monster Farm DS (DS)"},
+ "moo3" => {key => "g4J72d", label => "Master of Orion III"},
+ "moo3a" => {key => "g4J72d", label => "Master of Orion III"},
+ "mooncommander" => {key => "ziQwZF", label => "Moon Commander"},
+ "moonproject" => {key => "YDXBNE", label => "Earth 2150: The Moon Project"},
+ "moonproject" => {key => "YDXBNE", label => "Moon Project"},
+ "moritashogids" => {key => "rqz1dU", label => "Morita Shogi DS (DS)"},
+ "mostwanted" => {key => "H3kEn7", label => "Most Wanted"},
+ "motogp08pc" => {key => "ZvH4b3", label => "MotoGP 2008"},
+ "MotoGP08PC" => {key => "ZvH4b3", label => "MotoGP08 (PC)"},
+ "MotoGP08PCam" => {key => "ZvH4b3", label => "MotoGP08 Automatch (PC)"},
+ "motogp08ps3" => {key => "ZvH4b3", label => "MotoGP 2008 PS3"},
+ "MotoGP08PS3" => {key => "ZvH4b3", label => "MotoGP08 (PS3)"},
+ "MotoGP08PS3am" => {key => "ZvH4b3", label => "MotoGP08 Automatch (PS3)"},
+ "motogp09pc" => {key => "qOspfz", label => "Moto GP 09 (PC)"},
+ "motogp09pcam" => {key => "qOspfz", label => "Moto GP 09 Automatch (PC)"},
+ "motogp09pcd" => {key => "qOspfz", label => "Moto GP 09 Demo (PC)"},
+ "motogp09ps3" => {key => "nQF5x3", label => "Moto GP 09 (PS3)"},
+ "motogp09ps3am" => {key => "nQF5x3", label => "Moto GP 09 Automatch (PS3)"},
+ "motogp09ps3d" => {key => "nQF5x3", label => "Moto GP 09 Demo (PS3)"},
+ "motogp2" => {key => "y3R2j7", label => "MotoGP 2"},
+ "motogp2007" => {key => "oXCZxz", label => "MotoGP 2007"},
+ "motogp2007am" => {key => "oXCZxz", label => "MotoGP 2007 Automatch"},
+ "motogp2d" => {key => "y3R5d1", label => "MotoGP 2 Demo"},
+ "motogp3" => {key => "lelcPr", label => "MotoGP 3"},
+ "motogp3d" => {key => "U3ld8j", label => "MotoGP 3 Demo"},
+ "motogp4ps2" => {key => "OCNxy3", label => "MotoGP 4 (PS2)"},
+ "motoracer3" => {key => "rAItHo", label => "Motoracer 3"},
+ "mototrax" => {key => "T2g9dX", label => "Moto Trax"},
+ "mototrax" => {key => "T2g9dX", label => "MTX MotoTrax PS2"},
+ "moutlawne" => {key => "4o2uPk", label => "Midnight Outlaw Nitro"},
+ "moutlawned" => {key => "OwQcZv", label => "Midnight Outlaw Illegal Street Drag Nitro Edi"},
+ "mparty1ds" => {key => "rUpE9b", label => "Mario Party (DS)"},
+ "mphearts" => {key => "vStJNr", label => "mphearts"},
+ "mplayer" => {key => "3xYjaU", label => "MPlayer"},
+ "mprimeds" => {key => "Dh1PpC", label => "Metroid Prime Hunters (DS)"},
+ "mrpantsqm" => {key => "g3R2ii", label => "Mr. Pants QuickMatch"},
+ "mrwtour" => {key => "W78cvR", label => "Motoracer World Tour"},
+ "ms2012wii" => {key => "Obdwap", label => "Mario & Sonic at the London 2012 Olympic Game"},
+ "mschargedwii" => {key => "B4LdGW", label => "Mario Strikers Charged (Wii)"},
+ "msecurity" => {key => "j9Ew2L", label => "Alcatraz: Prison Escape"},
+ "msgolf99" => {key => "alVRIq", label => "Microsoft Golf '99"},
+ "msgolf99" => {key => "alVRIq", label => "MS Golf '99"},
+ "MSolympicds" => {key => "kK9ibq", label => "Mario & Sonic at the Olympic Games (DS)"},
+ "MSolympicwii" => {key => "i6lEcz", label => "Mario & Sonic at the Olympic Games (Wii)"},
+ "mswinterds" => {key => "uyEG4g", label => "Mario & Sonic at the Olympic Winter Games (DS"},
+ "mswinterwii" => {key => "O53Z7t", label => "Mario & Sonic at the Olympic Winter Games (Wi"},
+ "mt2003" => {key => "TORp4j", label => "Monopoly 2003"},
+ "mta" => {key => "Y4f9Jb", label => "Multitheft Auto"},
+ "mtgbgrounds" => {key => "y3Fs8K", label => "Magic The Gathering: Battlegrounds"},
+ "mtgbgrounds" => {key => "y3Fs8K", label => "Magic: The Gathering - Battlegrounds"},
+ "mtmdemo" => {key => "6I2vIO", label => "MonsterTruckMadnessTrial"},
+ "mtruckm2" => {key => "TKuE2P", label => "Monster Truck Madness 2"},
+ "mtxmototrax" => {key => "VKQslt", label => "MTX MotoTrax"},
+ "mua2wii" => {key => "QizM3A", label => "Marvel Ultimate Alliance 2: Fusion (Wii)"},
+ "mukoubuchids" => {key => "2yK3lC", label => "Mukoubuchi - Goburei, Shuryoudesune (DS)"},
+ "musicmakerwii" => {key => "wDFJt2", label => "Music Maker (Wii)"},
+ "mvsdk25ds" => {key => "ko7R42", label => "Mario vs Donkey Kong 2.5 (DS)"},
+ "mxravenpsp" => {key => "FPpfou", label => "MX Reflex (Raven) (PSP)"},
+ "mxravenpspam" => {key => "FPpfou", label => "MX Raven Automatch (PSP)"},
+ "mxun05pc" => {key => "v8XaWc", label => "MX vs. ATV Unleashed"},
+ "mxun05pc" => {key => "v8XaWc", label => "MX vs. ATV Unleashed (PC)"},
+ "mxun05pcam" => {key => "v8XaWc", label => "MX vs. ATV Unleashed Automatch (PC)"},
+ "mxun05ps2" => {key => "u3Fs9n", label => "MX Unleashed 05 (PS2)"},
+ "mxun05ps2" => {key => "u3Fs9n", label => "MX vs. ATV Unleashed PS2"},
+ "mxun05ps2am" => {key => "u3Fs9n", label => "MX Unleashed 05 (PS2) Automatch"},
+ "mxvatvuPALps2" => {key => "cps6m8", label => "MX vs ATV Untamed PAL (PS2)"},
+ "mxvatvuPALps2am" => {key => "cps6m8", label => "MX vs ATV Untamed PAL Automatch (PS2)"},
+ "mxvatvutEUwii" => {key => "9vF1oO", label => "MX vs ATV Untamed (EU) (Wii)"},
+ "mxvsatvutps2" => {key => "8GnBeH", label => "MX vs ATV Untamed (PS2)"},
+ "mxvsatvutps2am" => {key => "8GnBeH", label => "MX vs ATV Untamed Automatch (PS2)"},
+ "mxvsatvutwii" => {key => "fuA9hK", label => "MX vs ATV Untamed (Wii)"},
+ "mysecretsds" => {key => "Cz5NpG", label => "My Secrets (DS)"},
+ "mysimsflyerds" => {key => "intJay", label => "MySims Flyers (DS)"},
+ "mysimsflyEUds" => {key => "AhABRa", label => "MySims Flyers EU (DS)"},
+ "myth3" => {key => "W7LHE8", label => "Myth 3"},
+ "myth3demo" => {key => "rAItIo", label => "Myth 3 Demo"},
+ "na2rowpc" => {key => "mxw6bp", label => "NAT2 Row (PC)"},
+ "na2rowpcam" => {key => "mxw6bp", label => "NAT2 Row Automatch (PC)"},
+ "na2runpc" => {key => "eDCC2L", label => "NAT2 Run (PC)"},
+ "na2runpcam" => {key => "eDCC2L", label => "NAT2 Run Automatch (PC)"},
+ "nakedbrbndds" => {key => "d5ZTKM", label => "Naked Brothers Band World of Music Tour (DS)"},
+ "namcotest" => {key => "hNdo7u", label => "Namco SDK Test"},
+ "namcotestam" => {key => "hNdo7u", label => "Namco SDK Test Automatch"},
+ "namcotestd" => {key => "hNdo7u", label => "Namco SDK Test Demo"},
+ "nameneverds" => {key => "oL7dO2", label => "Nameless Neverland (DS)"},
+ "nanost2EUds" => {key => "Soz92T", label => "Nanostray 2 (EU) (DS)"},
+ "nanostray2ds" => {key => "grOpw9", label => "Nanostray 2 (DS)"},
+ "naruto5ds" => {key => "TZlbyZ", label => "NARUTO: Saikyou Ninja Daikesshuu 5 (DS)"},
+ "narutoex4wii" => {key => "t1galt", label => "NARUTO SHIPPUDEN GEKITOU NINJATAISEN ! EX4 (W"},
+ "Narutonin2ds" => {key => "c0DRrn", label => "Naruto: Path of the Ninja 2 (DS)"},
+ "narutor3euwii" => {key => "64ncJ9", label => "Naruto Shippuden: Clash of Ninja Revolution 3"},
+ "narutorev3wii" => {key => "2bLXrL", label => "Naruto Shippuden: Clash of Ninja Revolution 3"},
+ "narutorpg3ds" => {key => "bBPaXO", label => "Naruto RPG 3 (DS)"},
+ "nba2k10wii" => {key => "qWpDTI", label => "NBA 2K10 (Wii)"},
+ "nba2k11wii" => {key => "LX3m8L", label => "NBA 2K11 (Wii)"},
+ "nba2k11wiiam" => {key => "LX3m8L", label => "NBA 2K11 Automatch (Wii)"},
+ "necrolcpc" => {key => "JFKyCM", label => "NecroVisioN: Lost Company (PC)"},
+ "necrolcpcam" => {key => "JFKyCM", label => "NecroVisioN: Lost Company Automatch (PC)"},
+ "necrolcpcd" => {key => "JFKyCM", label => "NecroVisioN: Lost Company Demo (PC)"},
+ "necrovision" => {key => "sgcRRY", label => "NecroVision"},
+ "necrovisionpc" => {key => "Rn3Ptn", label => "NecroVision (PC)"},
+ "necrovisionpcam" => {key => "Rn3Ptn", label => "NecroVision Automatch (PC)"},
+ "necrovisionpcd" => {key => "Rn3Ptn", label => "NecroVision Demo (PC)"},
+ "necrovisionpd" => {key => "Rn3Ptn", label => "NecroVision (PC) Demo"},
+ "necrovisionpdam" => {key => "Rn3Ptn", label => "NecroVision Automatch (PC) Demo"},
+ "neopetspapc" => {key => "MOEXUs", label => "Neopets Puzzle Adventure (PC)"},
+ "neopetspapcam" => {key => "MOEXUs", label => "Neopets Puzzle Adventure Automatch (PC)"},
+ "neopetspapcd" => {key => "MOEXUs", label => "Neopets Puzzle Adventure Demo (PC)"},
+ "nerfarena" => {key => "zEh7ir", label => "Nerf Arena"},
+ "netathlon" => {key => "nYALJv", label => "NetAthlon"},
+ "netathlon2" => {key => "RW88dv", label => "NetAthlon"},
+ "newgamename" => {key => "3I7iFz", label => "dhdh"},
+ "newgamenameam" => {key => "3I7iFz", label => "dhdh Automatch"},
+ "nexttetris" => {key => "KVWE12", label => "The Next Tetris"},
+ "nexttetris" => {key => "KVWE12", label => "The Next Tetris DC"},
+ "nfs6" => {key => "ZIr1wX", label => "Need For Speed: Hot Pursuit 2"},
+ "nfsmwucoverds" => {key => "qxwQMf", label => "Need for Speed Most Wanted: Undercover (DS)"},
+ "nfsprostds" => {key => "1Xq6Ru", label => "Need for Speed Pro Street (DS)"},
+ "nhl2k10wii" => {key => "UzhSDM", label => "NHL 2K10 (Wii)"},
+ "nhl2k11wii" => {key => "iBcCbU", label => "NHL 2K11 (Wii)"},
+ "nhl2k11wiiam" => {key => "iBcCbU", label => "NHL 2K11 Automatch (Wii)"},
+ "nights2wii" => {key => "Wo9FKJ", label => "NiGHTS: Journey of Dreams (Wii)"},
+ "nindev" => {key => "EdD7Ve", label => "Nintendo Network Development Testing"},
+ "ninjagaidends" => {key => "4VMtoU", label => "Ninja Gaiden: Dragon Sword (DS)"},
+ "ninsake" => {key => "TpSP5q", label => "Nintendo Sake Test"},
+ "nitrobikeps2" => {key => "ApD3DN", label => "Nitrobike (PS2)"},
+ "nitrobikeps2am" => {key => "ApD3DN", label => "Nitrobike Automatch (PS2)"},
+ "nitrobikewii" => {key => "viBXma", label => "Nitrobike (Wii)"},
+ "nitrofamily" => {key => "t3Jw2c", label => "Nitro Family"},
+ "nitrosample" => {key => "abcdef", label => "Nitro Sample"},
+ "NN2Simple" => {key => "FTmNOH", label => "NatNeg2 Simple Test"},
+ "noahprods" => {key => "aP8x4A", label => "Noah's Prophecy (DS)"},
+ "nobunagapktds" => {key => "t8SaPD", label => "Nobunaga no Yabou DS Pocket Senshi (DS)"},
+ "nobuyabou2ds" => {key => "izfHO0", label => "Nobunaga no Yabou DS 2 (DS)"},
+ "nolf" => {key => "Jn3Ab4", label => "No One Lives Forever"},
+ "nolf2" => {key => "g3Fo6x", label => "No One Lives Forever 2"},
+ "nolf2d" => {key => "dHg7w3", label => "No One Lives Forever: The Operative 2 Demo"},
+ "nomansland" => {key => "DLziQw", label => "No Mans Land"},
+ "nplusds" => {key => "qX9Muy", label => "N+ (DS)"},
+ "nrs2003" => {key => "f3RdU7", label => "NASCAR Racing Season 2003"},
+ "nsr0405" => {key => "Q6vu91", label => "NASCAR Sim Racing (2005)"},
+ "nthunder2003" => {key => "Ld5C9w", label => "NASCAR Thunder 2003"},
+ "nthunder2004" => {key => "g3J7sp", label => "NASCAR Thunder 2004"},
+ "nthunder2004d" => {key => "g3J7sp", label => "NASCAR Thunder 2004 Demo"},
+ "Nushizurids" => {key => "nKShDp", label => "Nushizuri DS Yama no megumi Kawa no seseragi"},
+ "nvchess" => {key => "YDXBOF", label => "nvChess"},
+ "nwn" => {key => "Adv39k", label => "Neverwinter Nights"},
+ "nwn2" => {key => "wstKNe", label => "NeverWinter Nights 2"},
+ "nwn2mac" => {key => "m8NeTP", label => "NeverWinter Nights 2 (MAC)"},
+ "nwn2macam" => {key => "m8NeTP", label => "NeverWinter Nights 2 Automatch (MAC)"},
+ "nwnlinux" => {key => "Adv39k", label => "Neverwinter Nights (Linux)"},
+ "nwnlinux" => {key => "Adv39k", label => "Neverwinter Nights for Linux"},
+ "nwnmac" => {key => "Adv39k", label => "Neverwinter Nights (Mac)"},
+ "nwnmac" => {key => "Adv39k", label => "Neverwinter Nights MAC"},
+ "nwnxp1" => {key => "ZIq1wW", label => "Neverwinter Nights: Shado"},
+ "nwnxp2" => {key => "ZIq1wW", label => "Neverwinter Nights: Hordes of Underdark"},
+ "obiwon" => {key => "UnEhYr", label => "Obi-Wan"},
+ "octoEUwii" => {key => "vRdiaE", label => "Octomania (EU) (Wii)"},
+ "officersgwupc" => {key => "xSK6e5", label => "Officers: God With Us"},
+ "officersgwupcam" => {key => "xSK6e5", label => "Officers: God With Us Automatch"},
+ "oishiids" => {key => "mpmTyO", label => "Oishii Recipe (DS)"},
+ "okirakuwii" => {key => "LdIyFm", label => "Okiraku Daihugou Wii (WiiWare)"},
+ "oldscrabble" => {key => "Pz4Veb", label => "Hasbro Scrabble 1.0"},
+ "oldscrabble" => {key => "Pz4Veb", label => "Scrabble 1.0"},
+ "olg2ps2" => {key => "Yb3pP2", label => "Outlaw Golf 2 PS2"},
+ "olg2PS2" => {key => "Yb3pP2", label => "Outlaw Golf 2 PS2"},
+ "oltps2" => {key => "cH92pQ", label => "Outlaw Tennis PS2"},
+ "olvps2" => {key => "7w2pP3", label => "Outlaw Volleyball PS2"},
+ "olvps2" => {key => "7w2pP3", label => "Outlaw Volleyball Remix PS2"},
+ "omfbattle" => {key => "Abm93d", label => "One Must Fall Battlegrounds"},
+ "omfbattleb" => {key => "Abm93d", label => "One Must Fall Battlegrounds"},
+ "omfbattlecp" => {key => "Abm93d", label => "One Must Fall Battlegrounds (GMX)"},
+ "omfbattled" => {key => "Abm93d", label => "One Must Fall Battlergounds Demo"},
+ "onslaughtpc" => {key => "8pLvHm", label => "Onslaught: War of the Immortals"},
+ "onslaughtpcam" => {key => "8pLvHm", label => "Onslaught: War of the Immortals Automatch"},
+ "onslaughtpcd" => {key => "8pLvHm", label => "Onslaught: War of the Immortals Demo"},
+ "opblitz" => {key => "gOlcku", label => "Operation Blitzsturm"},
+ "openseasonds" => {key => "MpxbPX", label => "OpenSeason DS (DS)"},
+ "opflash" => {key => "h28Doi", label => "Operation Flashpoint"},
+ "opflashd" => {key => "DV24o2", label => "Operation Flashpoint Demo"},
+ "opflashr" => {key => "Y3k7x1", label => "Operation Flashpoint: Resistance"},
+ "opfor" => {key => "YDYBNE", label => "Opposing Force"},
+ "orb" => {key => "Ykd2D3", label => "O.R.B."},
+ "orbb" => {key => "Ykd2D3", label => "O.R.B. Beta"},
+ "orderofwarpc" => {key => "P8pcV7", label => "Order of War (PC)"},
+ "orderofwarpcam" => {key => "P8pcV7", label => "Order of War Automatch (PC)"},
+ "orderofwarpcd" => {key => "P8pcV7", label => "Order of War Demo (PC)"},
+ "originalwar" => {key => "CV34p2", label => "Original War"},
+ "othellods" => {key => "VrRUK1", label => "Othello de Othello DS"},
+ "othellowii" => {key => "uV8aBd", label => "Othello (WiiWare)"},
+ "otonatrainds" => {key => "G8skCH", label => "Imasara hitoniwa kikenai Otona no Jyoshikiryo"},
+ "otonazenshuds" => {key => "nWsT7z", label => "Otona no DS Bungaku Zenshu (DS)"},
+ "outlaws" => {key => "TKuE2P", label => "Outlaws"},
+ "outlawsdem" => {key => "k37G3M", label => "Outlaw Multiplay Demo"},
+ "overturnwii" => {key => "GLXJR8", label => "Overturn (WiiWare)"},
+ "owar" => {key => "xS6aii", label => "Original War"},
+ "pachgundamwii" => {key => "w101rF", label => "Pachisuro Kido Senshi Gundam Aisenshi Hen (Wi"},
+ "painkiller" => {key => "k7F4d2", label => "Painkiller"},
+ "painkillerd" => {key => "k7F4d2", label => "Painkiller Demo"},
+ "painkillerod" => {key => "zW4TsZ", label => "Painkiller Overdose"},
+ "painkillerodam" => {key => "zW4TsZ", label => "Painkiller Overdose Automatch"},
+ "painkillerodd" => {key => "zW4TsZ", label => "Painkiller Overdose Demo"},
+ "painkilleroddam" => {key => "zW4TsZ", label => "Painkiller Overdose Demo Automatch"},
+ "painkillert" => {key => "k7F4d2", label => "Painkiller Multiplayer Test"},
+ "painkresurrpc" => {key => "tmQ4wN", label => "Painkiller Resurrection (PC)"},
+ "painkresurrpcam" => {key => "tmQ4wN", label => "Painkiller Resurrection Automatch (PC)"},
+ "painkresurrpcd" => {key => "tmQ4wN", label => "Painkiller Resurrection Demo (PC)"},
+ "paintball" => {key => "kCVbAZ", label => "Paintball"},
+ "pandeponds" => {key => "y0zg9C", label => "Panel De Pon DS (DS)"},
+ "pangmagmichds" => {key => "ccXnxb", label => "Pang: Magical Michael (DS)"},
+ "panzergen2" => {key => "DLiPwZ", label => "Panzer General"},
+ "parabellumpc" => {key => "CXabGK", label => "Parabellum (PC)"},
+ "parabellumpcam" => {key => "CXabGK", label => "Parabellum Automatch (PC)"},
+ "parabellumpcd" => {key => "CXabGK", label => "Parabellum Demo (PC)"},
+ "parabellumpcdam" => {key => "CXabGK", label => "Parabellum Demo Automatch (PC)"},
+ "parabellumps3" => {key => "CXabGK", label => "Parabellum (PS3)"},
+ "parabellumps3am" => {key => "CXabGK", label => "Parabellum Automatch (PS3)"},
+ "paradisecity" => {key => "TCD6mz", label => "Paradise City"},
+ "paraworld" => {key => "EUZpQF", label => "ParaWorld"},
+ "paraworldam" => {key => "EUZpQF", label => "ParaWorld Automatch"},
+ "paraworldd" => {key => "EUZpQF", label => "ParaWorld Demo"},
+ "parcheesi" => {key => "PHCviG", label => "Hasbro's Parcheesi"},
+ "pariahpc" => {key => "D3Kcm4", label => "Pariah (PC)"},
+ "pariahpcd" => {key => "D3Kcm4", label => "Pariah Demo (PC)"},
+ "patchtest" => {key => "BlIpIG", label => "Patching Test"},
+ "pb4" => {key => "s82J1p", label => "Extreme Paintbrawl 4"},
+ "pba2001" => {key => "Kbay43", label => "PBA Bowling 2001"},
+ "pba2001" => {key => "Kbay43", label => "PBA Bowling 2001 PC & DC"},
+ "pbellumr1" => {key => "CXabGK", label => "Parabellum Region 1 (PC)"},
+ "pbellumr2" => {key => "CXabGK", label => "Parabellum Region 2 (PC)"},
+ "pbellumr3" => {key => "CXabGK", label => "Parabellum Region 3 (PC)"},
+ "pbfqm" => {key => "g3R2ii", label => "PlanetBattlefield QuickMatch"},
+ "pbfqm2" => {key => "P7RTY8", label => "PlanetBattlefield QuickMatch 2"},
+ "pbfqmv" => {key => "9wk3Lo", label => "PlanetBattlefield QuickMatch Vietnam"},
+ "penginhimids" => {key => "cAA9Kl", label => "Pengin himitsu oukoku (DS)"},
+ "penginhimidsam" => {key => "cAA9Kl", label => "Pengin himitsu oukoku Automatch (DS)"},
+ "pente" => {key => "NeB26l", label => "Hasbro's Pente"},
+ "peoplesgen" => {key => "el1q7z", label => "Peoples General"},
+ "perimeter" => {key => "FRYbdA", label => "Perimeter"},
+ "perimeterd" => {key => "FRYbdA", label => "Perimeter Demo"},
+ "petz09ds" => {key => "kLg8PL", label => "Petz Catz/Dogz/Hamsterz/Babiez 2009 (DS)"},
+ "phoenix" => {key => "GknAbg", label => "Phoenix (Stainless Steel)"},
+ "phybaltraiwii" => {key => "nb1GZR", label => "Physiofun Balance Trainer (WiiWare)"},
+ "phylon" => {key => "rbKTOq", label => "Phylon"},
+ "picrossds" => {key => "5TLWnF", label => "Picross (DS)"},
+ "picrossEUds" => {key => "1rAhgD", label => "Picross (EU) (DS)"},
+ "pitcrewwii" => {key => "M2FFnb", label => "Pit Crew Panic (WiiWare)"},
+ "pkodgerman" => {key => "wK54dt", label => "Painkiller Overdose (German)"},
+ "pkodgermanam" => {key => "wK54dt", label => "Painkiller Overdose Automatch (German)"},
+ "pkodgermand" => {key => "wK54dt", label => "Painkiller Overdose Demo (German)"},
+ "plandmajinds" => {key => "BThDbL", label => "Professor Layton and Majin no Fue (DS)"},
+ "planecrazy" => {key => "p5jGh6", label => "Plane Crazy"},
+ "planetside" => {key => "yQzrrQ", label => "PlanetSide"},
+ "playgroundds" => {key => "o6JWLk", label => "Playground (DS)"},
+ "playgrounddsam" => {key => "o6JWLk", label => "Playground Automatch (DS)"},
+ "plunderpc" => {key => "NmLqNN", label => "Age of Booty (PC)"},
+ "plunderpcam" => {key => "NmLqNN", label => "Plunder Automatch (PC)"},
+ "plunderpcd" => {key => "NmLqNN", label => "Plunder Demo (PC)"},
+ "plunderps3" => {key => "RbMD9p", label => "Age of Booty (PS3)"},
+ "plunderps3am" => {key => "RbMD9p", label => "Plunder Automatch (PS3)"},
+ "plunderps3d" => {key => "RbMD9p", label => "Plunder Demo (PS3)"},
+ "pnomads" => {key => "FexS6a", label => "Project Nomads"},
+ "pocketwrldds" => {key => "7Lx2fU", label => "My Pocket World (DS)"},
+ "pokebattlewii" => {key => "TzRgSc", label => "Pokemon Battle Revolution (Wii)"},
+ "pokedngnwii" => {key => "AKikuw", label => "Pokemon Dungeon (Wii)"},
+ "pokedungeonds" => {key => "SVbm3x", label => "Pokemon Fushigi no Dungeon (DS)"},
+ "pokemondpds" => {key => "1vTlwb", label => "Pokemon Diamond-Pearl (DS)"},
+ "pokemonplatds" => {key => "IIup73", label => "Pokemon Platinum (DS)"},
+ "pokerangerds" => {key => "v4yMCT", label => "Pokemon Ranger 2 (DS)"},
+ "poolshark2pc" => {key => "teH26Z", label => "Pool Shark 2 (PC)"},
+ "poolshark2ps2" => {key => "teH26Z", label => "Pool Shark 2 (PS2)"},
+ "populoustb" => {key => "qik37G", label => "Populous: The Beginning"},
+ "popwii" => {key => "cQbQkV", label => "Pop (WiiWare)"},
+ "por2" => {key => "9agW5H", label => "Pool of Radiance 2"},
+ "poriginpc" => {key => "yAnB97", label => "Fear 2: Project Origin (PC)"},
+ "poriginpcam" => {key => "yAnB97", label => "Fear 2: Project Origin Automatch (PC)"},
+ "poriginpcd" => {key => "yAnB97", label => "Fear 2: Project Origin Demo (PC)"},
+ "poriginpcjp" => {key => "w2OQ5I", label => "Fear 2: Project Origin (JP) (PC)"},
+ "poriginpcjpam" => {key => "w2OQ5I", label => "Fear 2: Project Origin Automatch (JP) (PC)"},
+ "poriginpcjpd" => {key => "w2OQ5I", label => "Fear 2: Project Origin Demo (JP) (PC)"},
+ "poriginps3" => {key => "Rl6qAT", label => "Fear 2: Project Origin (PS3)"},
+ "poriginps3am" => {key => "Rl6qAT", label => "Fear 2: Project Origin Automatch (PS3)"},
+ "poriginps3d" => {key => "Rl6qAT", label => "Fear 2: Project Origin Demo (PS3)"},
+ "poriginps3jp" => {key => "MF2kB1", label => "Fear 2: Project Origin (JP) (PS3)"},
+ "poriginps3jpam" => {key => "MF2kB1", label => "Fear 2: Project Origin Automatch (JP) (PS3)"},
+ "poriginps3jpd" => {key => "MF2kB1", label => "Fear 2: Project Origin Demo (JP) (PS3)"},
+ "postal2" => {key => "yw3R9c", label => "Postal 2"},
+ "postal2d" => {key => "yw3R9c", label => "Postal 2 Demo"},
+ "postpetds" => {key => "126D8H", label => "PostPetDS Yumemiru Momo to Fushigi no Pen (DS"},
+ "potbs" => {key => "GIMHzf", label => "Pirates of the Burning Sea"},
+ "potco" => {key => "wnYrOe", label => "Pirates of the Caribbean Online"},
+ "PowaPPocketds" => {key => "Mz5dau", label => "PowaProkun Pocket10 (DS)"},
+ "powerkoushds" => {key => "nTHkC7", label => "Powerful Koushien (DS)"},
+ "powerpinconds" => {key => "za0kET", label => "Powershot Pinball Constructor (DS)"},
+ "powerslide" => {key => "nx6I2v", label => "Powerslide"},
+ "powerslide" => {key => "nx6I2v", label => "Powerslide v1.01"},
+ "powprokundsi" => {key => "ntDCsp", label => "PowerPro-kun Pocket 13 (DSi)"},
+ "powprokundsiam" => {key => "ntDCsp", label => "PowerPro-kun Pocket 13 Automatch (DSi)"},
+ "ppirates" => {key => "VGFzVf", label => "Puzzle Pirates"},
+ "ppkpocket11ds" => {key => "cstLhz", label => "PowerPro-kun Pocket 11 (DS)"},
+ "praetorians" => {key => "m31zdx", label => "Praetorians"},
+ "praetoriansd" => {key => "EX3rAJ", label => "Praetorians Demo"},
+ "prey" => {key => "znghVS", label => "Prey"},
+ "preyd" => {key => "75rDsD", label => "Prey Demo"},
+ "preystarsds" => {key => "NrSO9m", label => "Prey The Stars (DS)"},
+ "prismgs" => {key => "3Zxgne", label => "PRISM Guard Shield"},
+ "prismgs" => {key => "3Zxgne", label => "PRISM: Guard Shield"},
+ "prismgsd" => {key => "3Zxgne", label => "PRISM: Guard Shield Demo"},
+ "projecteden" => {key => "TORp5k", label => "Project Eden"},
+ "projectigi2" => {key => "j4F9cY", label => "IGI 2: Covert Strike Demo"},
+ "projectigi2d" => {key => "j4F9cY", label => "IGI 2: Covert Strike Demo (depreciated)"},
+ "projectigi2r" => {key => "j4F9cY", label => "IGI 2 Covert Strike", port => 26001},
+ "propocket12ds" => {key => "98gFV2", label => "PowerPro-kun Pocket 12 (DS)"},
+ "protocolwii" => {key => "Hd4g3T", label => "Protocol (WiiWare)"},
+ "proyakyuds" => {key => "Nv5Em6", label => "Pro Yakyu Famisute DS (DS)"},
+ "pssake" => {key => "H8s0Pw", label => "Professional Services Sake Test"},
+ "psyintdevpc" => {key => "u6vgFK", label => "Psyonix Internal Development (PC)"},
+ "psyintdevpcam" => {key => "u6vgFK", label => "Psyonix Internal Development Automatch (PC)"},
+ "psyintdevpcd" => {key => "u6vgFK", label => "Psyonix Internal Development Demo (PC)"},
+ "ptacticsds" => {key => "Wcs0GP", label => "Panzer Tactics (DS)"},
+ "pubdartswii" => {key => "nzFWQs", label => "Pub Darts (WiiWare)"},
+ "puffinsds" => {key => "ckiZ8C", label => "Puffins: Island Adventures (DS)"},
+ "punchoutwii" => {key => "yJz8h0", label => "Punch-Out!! (Wii)"},
+ "puyobomberds" => {key => "rU1vT5", label => "Puyo Puyo Bomber (DS)"},
+ "puyopuyo7ds" => {key => "1SeVl7", label => "PuyoPuyo 7 (DS/Wii)"},
+ "puyopuyo7wii" => {key => "h9HtSg", label => "Puyopuyo 7 (Wii)"},
+ "puyopuyods" => {key => "9bx1UP", label => "Puyo Puyo! (DS)"},
+ "puzquestds" => {key => "nW1e6h", label => "Puzzle Quest: Challenge of the Warlords (DS)"},
+ "puzzlemojiwii" => {key => "0Um7ap", label => "Kotoba no Puzzle Moji Pittan Wii (WiiWare)"},
+ "puzzleqt2ds" => {key => "hMqc5z", label => "Puzzle Quest 2 (DS)"},
+ "puzzlernumds" => {key => "JpBkl8", label => "Puzzler Number Placing Fun & Oekaki Logic 2 ("},
+ "puzzshangwii" => {key => "33NTu6", label => "Puzzle Games Shanghai Wii (WiiWare)"},
+ "q3tademo" => {key => "ek2p7z", label => "Team Arena Demo"},
+ "q3tafull" => {key => "Ah3mb4", label => "Team Arena Retail"},
+ "qlione" => {key => "pNClNp", label => "Qlione"},
+ "qsolace" => {key => "MjcwlP", label => "Quantum of Solace"},
+ "quake1" => {key => "7W7yZz", label => "Quake"},
+ "quake2" => {key => "rtW0xg", label => "Quake II"},
+ "quake3" => {key => "paYVJ7", label => "Quake 3: Arena"},
+ "quake4" => {key => "ZuZ3hq", label => "Quake 4"},
+ "quakewarset" => {key => "i0hvyr", label => "Enemy Territory: Quake Wars"},
+ "quakewarsetb" => {key => "i0hvyr", label => "Enemy Territory: Quake Wars Beta"},
+ "quakewarsetd" => {key => "i0hvyr", label => "Enemy Territory: Quake Wars Demo"},
+ "quakeworld" => {key => "FU6Vqn", label => "Quakeworld"},
+ "quizmagic2ds" => {key => "JGqTW6", label => "Quiz Magic Academy DS2 (DS)"},
+ "quizmagicds" => {key => "zi1Kob", label => "Quiz Magic Academy DS (DS)"},
+ "ra2" => {key => "9z3312", label => "Rocket Arena 2"},
+ "ra3" => {key => "JnEfae", label => "Rocket Arena 3"},
+ "Rabgohomewii" => {key => "sngh8x", label => "Rabbids Go Home (Wii)"},
+ "racedriver" => {key => "Hl31zd", label => "TOCA Race Driver"},
+ "racedriver2" => {key => "UEzIlg", label => "Race Driver 2"},
+ "racedriver2d" => {key => "M29dF4", label => "Race Driver 2 Demo"},
+ "racedriver2ps2" => {key => "n5oS9f", label => "Race Driver 2 (PS2)"},
+ "racedriver2ps2" => {key => "n5oS9f", label => "Race Driver 2 PS2"},
+ "racedriver3pc" => {key => "BPAfNv", label => "Race Driver 3 (PC)"},
+ "racedriver3pcd" => {key => "BPAfNv", label => "Race Driver 3 Demo (PC)"},
+ "racedriverd" => {key => "P4f3Hw", label => "Race Driver Demo"},
+ "racedriverds" => {key => "AJQu6F", label => "Race Driver (DS)"},
+ "rachelwood" => {key => "L2muET", label => "Rachel Wood Test Game Name"},
+ "racko" => {key => "U8QYlf", label => "Hasbro's Rack-O"},
+ "racko" => {key => "U8QYlf", label => "Hasbro's Racko"},
+ "radiohitzwii" => {key => "NzBSQr", label => "Radiohitz: Guess That Song! (WiiWare)"},
+ "rafcivatwar" => {key => "h98Sqa", label => "Rise And Fall: Civilizations at War"},
+ "rafcivatwaram" => {key => "h98Sqa", label => "Rise And Fall: Civilizations at War (automatc"},
+ "rafcivatwart" => {key => "h98Sqa", label => "Rise And Fall: Civilizations at War Test"},
+ "rafcivatwartam" => {key => "h98Sqa", label => "Rise And Fall: Civilizations at War Test Auto"},
+ "ragonlineKRds" => {key => "fhZRmu", label => "Ragunaroku Online DS (KOR) (DS)"},
+ "ragonlinenads" => {key => "k6p7se", label => "Ragunaroku Online DS (NA) (DS)"},
+ "ragunonlineds" => {key => "DBDrfl", label => "Ragunaroku Online DS (DS)"},
+ "railsam" => {key => "sFcq99", label => "Rails Across America"},
+ "railsamd" => {key => "GjuMct", label => "Rails Across America Demo"},
+ "railty2" => {key => "T8nM3z", label => "Railroad Tycoon II"},
+ "railty3" => {key => "w4D2Ha", label => "Railroad Tycoon 3"},
+ "rainbowislwii" => {key => "TpzO6m", label => "Rainbow Island Tower! (WiiWare)"},
+ "rainbowsixv" => {key => "GUePbj", label => "Rainbow Six Vegas"},
+ "rally" => {key => "xdNbQZ", label => "Rally Masters"},
+ "rallychamp" => {key => "TKuE2P", label => "Mobil1 Rally Championship"},
+ "rallychampx" => {key => "h6nLfY", label => "Rally Championship Extrem"},
+ "rallytrophy" => {key => "CSCQMI", label => "Rally Trophy"},
+ "ras" => {key => "0r5UN9", label => "Red Ace Squadron"},
+ "ravenshield" => {key => "csFbq9", label => "Raven Shield"},
+ "ravenshieldas" => {key => "vMJRUd", label => "Raven Shield: Athena's Sword"},
+ "raw2009wii" => {key => "hCcmdR", label => "WWE Smackdown! vs RAW 2009 (Wii)"},
+ "raymanrr2wii" => {key => "Dd8tS2", label => "Rayman Raving Rabbids 2 (Wii)"},
+ "raymanRR3wii" => {key => "QDgvIN", label => "Rayman Raving Rabbids 3 (Wii)"},
+ "rb6" => {key => "49qmcl", label => "Rainbow Six"},
+ "rb6" => {key => "49qmcl", label => "Tom Clancy's Rainbow Six"},
+ "rbeaverdefwii" => {key => "6k1gxH", label => "Robocalypse - Beaver Defense (WiiWare)"},
+ "rdgridds" => {key => "81TpiD", label => "Race Driver: Grid (DS)"},
+ "rdpoker" => {key => "GjuMct", label => "Reel Deal Poker"},
+ "rdr2ps3" => {key => "5aL4Db", label => "Red Dead Redemption (PS3)"},
+ "rdr2ps3am" => {key => "5aL4Db", label => "Red Dead Redemption Automatch (PS3)"},
+ "rdr2x360" => {key => "H1Dgd3", label => "Red Dead Redemption (x360)"},
+ "rdr2x360am" => {key => "H1Dgd3", label => "Red Dead Redemption Automatch (x360)"},
+ "rdriver3ps2" => {key => "BPAfNv", label => "Race Driver 3 (PS2)"},
+ "rdriver3ps2d" => {key => "BPAfNv", label => "Race Driver 3 Demo (PS2)"},
+ "realwar" => {key => "78dvRT", label => "Real War"},
+ "realwarrs" => {key => "8cvSTO", label => "Real War: Rogue States"},
+ "realwarrsd" => {key => "5jAGh7", label => "Real War: Rogue States De"},
+ "rebellion" => {key => "TKuE2P", label => "Star Wars Rebellion"},
+ "redalert" => {key => "QwZGex", label => "Red Alert"},
+ "redalert2" => {key => "ajhOV0", label => "Red Alert 2"},
+ "redalert2exp" => {key => "eRW78c", label => "Red Alert 2: Yuris Reveng"},
+ "redalert3pc" => {key => "uBZwpf", label => "Command & Conquer Red Alert 3"},
+ "redalert3pc" => {key => "uBZwpf", label => "Red Alert 3 (PC)"},
+ "redalert3pcam" => {key => "uBZwpf", label => "Red Alert 3 Automatch (PC)"},
+ "redalert3pcb" => {key => "uBZwpf", label => "Command & Conquer Red Alert 3 Beta"},
+ "redalert3pcb" => {key => "uBZwpf", label => "Red Alert 3 Beta (PC)"},
+ "redalert3pcbam" => {key => "uBZwpf", label => "Red Alert 3 Beta (PC) Automatch"},
+ "redalert3pcbmb" => {key => "uBZwpf", label => "Red Alert 3 Beta (PC) Match Broadcast"},
+ "redalert3pccd" => {key => "uBZwpf", label => "Red Alert 3 (PC, CDKey)"},
+ "redalert3pccdam" => {key => "uBZwpf", label => "Red Alert 3 Automatch (PC, CDKey)"},
+ "redalert3pcd" => {key => "uBZwpf", label => "Red Alert 3 Demo (PC)"},
+ "redalert3pcdam" => {key => "uBZwpf", label => "Red Alert 3 Demo Automatch (PC)"},
+ "redalert3pcdmb" => {key => "uBZwpf", label => "Red Alert 3 Demo (PC) Match Broadcast"},
+ "redalert3pcmb" => {key => "uBZwpf", label => "Red Alert 3 (PC) Match Broadcast"},
+ "redalert3ps3" => {key => "uBZwpf", label => "Red Alert 3 (PS3)"},
+ "redalert3ps3am" => {key => "uBZwpf", label => "Red Alert 3 Automatch (PS3)"},
+ "redbaronps3" => {key => "aMETX7", label => "Red Baron WWI (PS3)"},
+ "redbaronps3am" => {key => "aMETX7", label => "Red Baron WWI Automatch (PS3)"},
+ "redbaronww1" => {key => "aMETX7", label => "Red Baron"},
+ "redbaronww1" => {key => "aMETX7", label => "Red Baron WWI"},
+ "redfactionwii" => {key => "OyLhJI", label => "Red Faction Wii (Wii)"},
+ "redline" => {key => "2J5aV2", label => "Redline"},
+ "redlinenet" => {key => "OFek2p", label => "Redline Multi-Player Inst"},
+ "redorchestra" => {key => "6md8c4", label => "Red Orchestra Ostfront"},
+ "redsteel2wii" => {key => "eAmAH0", label => "Red Steel 2 (Wii)"},
+ "regimentpc" => {key => "u6qPE9", label => "The Regiment PC"},
+ "regimentps2" => {key => "u6qPE9", label => "The Regiment PS2"},
+ "reichpc" => {key => "bWwGZn", label => "Reich (PC)"},
+ "reichpcam" => {key => "bWwGZn", label => "Reich Automatch (PC)"},
+ "reichps3" => {key => "bWwGZn", label => "Reich (PS3)"},
+ "reichps3am" => {key => "bWwGZn", label => "Reich Automatch (PS3) Clone"},
+ "reloadpc" => {key => "cy4nky", label => "Reload PC"},
+ "reloadpcam" => {key => "cy4nky", label => "Reload PC Automatch"},
+ "reloadtdwii" => {key => "0Pto9s", label => "Reload: Target Down (Wii)"},
+ "reloadtdwiiam" => {key => "0Pto9s", label => "Reload: Target Down Automatch (Wii)"},
+ "renegadebf" => {key => "Rt7W9x", label => "Renegade Battlefield"},
+ "resevildrkwii" => {key => "qBhaV0", label => "Resident Evil: The Darkside Chronicles (Wii)"},
+ "revolt" => {key => "fa5lhE", label => "Re-Volt"},
+ "revolt" => {key => "fa5lhE", label => "Revolt"},
+ "revolution" => {key => "G1h3m2", label => "Revolution"},
+ "rfactory2ds" => {key => "lo8Vq8", label => "Rune Factory 2 (DS)"},
+ "rfactory3ds" => {key => "JpHDcA", label => "Rune Factory 3 (DS)"},
+ "rfactoryEUds" => {key => "CK8ylc", label => "Rune Factory: A Fantasy Harverst Moon (EU) (D"},
+ "rfactoryKRds" => {key => "dBJ0km", label => "Rune Factory: A Fantasy Harverst Moon (KOR) ("},
+ "rfberlin" => {key => "3vhvcH", label => "Rush for Berlin"},
+ "rfgrlaonlive" => {key => "DhQP9t", label => "Red Faction Guerrilla ONLIVE"},
+ "rfgrlaonliveam" => {key => "DhQP9t", label => "Red Faction Guerrilla ONLIVE Automatch"},
+ "rftbomb" => {key => "xpoRNK", label => "Rush for the Bomb"},
+ "rfts" => {key => "jiPV0u", label => "Reach For The Stars"},
+ "riseofnations" => {key => "H3kC6s", label => "Rise of Nations"},
+ "riseofnationsam" => {key => "H3kC6s", label => "Rise of Nations Auto-Matching"},
+ "risingeagleg" => {key => "qVcJOg", label => "Rising Eagle"},
+ "risingeaglepc" => {key => "9cy8vc", label => "Rising Eagle"},
+ "risk" => {key => "nx6I2v", label => "Risk"},
+ "risk" => {key => "nx6I2v", label => "Risk C.1997"},
+ "risk2" => {key => "xboeRW", label => "Risk II"},
+ "riskingdoms" => {key => "K3x9vc", label => "Rising Kingdoms"},
+ "riskingdomsam" => {key => "K3x9vc", label => "Rising Kingdoms Automatch"},
+ "riskingdomsd" => {key => "K3x9vc", label => "Rising Kingdoms demo"},
+ "riskingdomsd" => {key => "K3x9vc", label => "Rising KIngdoms Demo"},
+ "riskps2dis" => {key => "Hg3u2X", label => "Risk (PS2)"},
+ "ritesofwar" => {key => "2p7zgs", label => "Warhammer: Rites of War"},
+ "RKMvalleyds" => {key => "3lwaZW", label => "River King: Mystic Valley (DS)"},
+ "rman2blkredds" => {key => "c2ZOsn", label => "Ryusei no Rockman 3: Black Ace / Red Joker (J"},
+ "rmth2003" => {key => "Y4kC7S", label => "Trophy Hunter 2003"},
+ "rmth3" => {key => "EvBDAc", label => "Rocky Mountain Trophy Hunter 3"},
+ "rnconsole" => {key => "Jba3n1", label => "Real Networks Console"},
+ "rnconsole" => {key => "Jba3n1", label => "RealArcade"},
+ "roadwars" => {key => "ORp5kG", label => "Road Wars"},
+ "robolypsewii" => {key => "qy0bIP", label => "Robocalypse (WiiWare)"},
+ "robotarena2" => {key => "h4Yc9D", label => "Robot Arena 2"},
+ "robotech2" => {key => "w3D2Yb", label => "Robotech 2 (PS2)"},
+ "rock" => {key => "HnVZ1u", label => "Rock"},
+ "rockmanBSDds" => {key => "bNM3ah", label => "Rockman 2 - Berserk: Shinobi / Dinosaur (DS)"},
+ "rockmanwds" => {key => "sdJvVk", label => "Rockman WAVES (DS)"},
+ "rockstardev" => {key => "1a8bBi", label => "Rockstar Development"},
+ "rockstardevam" => {key => "1a8bBi", label => "Rockstar Development Automatch"},
+ "rockstarsclub" => {key => "2MJPhH", label => "Rockstar Social Club"},
+ "rockstarsclubam" => {key => "2MJPhH", label => "Rockstar Social Club Automatch"},
+ "rof" => {key => "t5LqW4", label => "Rise of Legends"},
+ "rofam" => {key => "t5LqW4", label => "Rise of Legends Automatching"},
+ "rogerwilco" => {key => "rW17Ko", label => "Roger Wilco"},
+ "roguespear" => {key => "kqeEcz", label => "Rogue Spear"},
+ "roguespeard" => {key => "S6ajhP", label => "Rogue Spear Demo"},
+ "roguewarpc" => {key => "ey8w3N", label => "Rogue Warrior (PC)"},
+ "roguewarpcam" => {key => "ey8w3N", label => "Rogue Warrior Automatch (PC)"},
+ "roguewarpcd" => {key => "ey8w3N", label => "Rogue Warrior Demo (PC)"},
+ "roguewarps3" => {key => "bHtwt6", label => "Rogue Warrior (PS3)"},
+ "roguewarps3am" => {key => "bHtwt6", label => "Rogue Warrior Automatch (PS3)"},
+ "roguewarps3d" => {key => "bHtwt6", label => "Rogue Warrior Demo (PS3)"},
+ "rometw" => {key => "s8L3v0", label => "Rome: Total War"},
+ "ronb" => {key => "H3kC6s", label => "Rise of Nations Beta"},
+ "ronbam" => {key => "H3kC6s", label => "Rise of Nations Beta Automatching"},
+ "rontp" => {key => "H3kC6s", label => "Rise of Nations: Throne and Patriots"},
+ "rontpam" => {key => "H3kC6s", label => "Rise of Nations: Throne and Patriots"},
+ "rook" => {key => "Bc1Zmb", label => "Hasbro's Rook"},
+ "rpgtkooldsi" => {key => "NaGK7x", label => "RPG tkool DS (DSi)"},
+ "rrt2scnd" => {key => "fZDYBN", label => "Railroad Tycoon II - The"},
+ "rsblackthorn" => {key => "Gh2W6n", label => "Rogue Spear: Black Thorn"},
+ "rsblackthornd" => {key => "BLJvUh", label => "Black Thorn Demo"},
+ "rscovertops" => {key => "yK2A0x", label => "Rainbow Six: Covert Ops"},
+ "rsurbanops" => {key => "4nHpA3", label => "Rogue Spear: Urban Ops"},
+ "rtcw" => {key => "Gj3aV2", label => "Return to Castle Wolfenstein"},
+ "rtcwet" => {key => "jpvbuP", label => "Wolfenstein: Enemy Territory"},
+ "rtcwett" => {key => "t3R7dF", label => "Wolfenstein: Enemy Territory Test"},
+ "rtcwtest" => {key => "78dvST", label => "Wolfenstein MP Test"},
+ "rtlwspor11wii" => {key => "lGM9Xg", label => "RTL Winter Sports 2011 (Wii)"},
+ "rtlwspor11wiiam" => {key => "lGM9Xg", label => "RTL Winter Sports 2011 Automatch (Wii)"},
+ "rtlwsportswii" => {key => "flKPhR", label => "RTL Winter Sports 2010 (Wii)"},
+ "rtrooperpc" => {key => "jK7L92", label => "Rogue Trooper (PC)"},
+ "rtrooperpcam" => {key => "jK7L92", label => "Rogue Trooper Automatch (PC)"},
+ "rtrooperps2" => {key => "jK7L92", label => "Rogue Trooper (PS2)"},
+ "rubikguidewii" => {key => "nTLw4A", label => "Rubik's Puzzle World: Guide (WiiWare)"},
+ "rulesotg" => {key => "iQxZGe", label => "Rules of the Game"},
+ "rune" => {key => "BnA4a3", label => "Rune"},
+ "runedemo" => {key => "V5Hm41", label => "Rune Demo"},
+ "runefactoryds" => {key => "dBOUMT", label => "Rune Factory (DS)"},
+ "runefantasyds" => {key => "58Ae2N", label => "Rune Factory: A Fantasy Harvest Moon (DS)"},
+ "ryantest" => {key => "RakTQT", label => "Ryan'st test gamename"},
+ "ryantestam" => {key => "RakTQT", label => "Ryan'st test gamename Automatch"},
+ "s_cssource" => {key => "EEpacW", label => "Counter-Strike Source"},
+ "s_cstrikecz" => {key => "izVsOs", label => "Steam Counter-Strike Condition Zero"},
+ "s_darkmmm" => {key => "ggXhvY", label => "Dark Messiah of Might and Magic"},
+ "s_GalacticBowli" => {key => "gKjcjK", label => "Galactic Bowling"},
+ "s_hl2dm" => {key => "FqmlZJ", label => "s_hl2dm"},
+ "s_l4d" => {key => "sPEFlr", label => "Steam Left 4 Dead"},
+ "s_tf2" => {key => "AYcFzB", label => "Team Fortress 2"},
+ "saadtest" => {key => "1a2B3c", label => "SaadsTest"},
+ "saadtestam" => {key => "1a2B3c", label => "SaadsTest"},
+ "sacrifice" => {key => "sCV34o", label => "Sacrifice"},
+ "sakatsukuds" => {key => "OwGy5R", label => "Sakatsuku DS (DS)"},
+ "sakuraTDDds" => {key => "Kw2K7t", label => "Sakura Taisen Dramatic Dungeon - Kimiarugatam"},
+ "sakwcha2010ds" => {key => "a92bdC", label => "Sakatsuku DS WorldChallenge 2010 (DS)"},
+ "SampAppTest" => {key => "38u7Te", label => "Sample App Developement"},
+ "SampAppTestam" => {key => "38u7Te", label => "Sample App Developement Automatch"},
+ "sandbags" => {key => "wXEX3r", label => "Sandbags and Bunkers"},
+ "sangotends" => {key => "yln2Zs", label => "Sangokushitaisen Ten (DS)"},
+ "sanity" => {key => "7AeTyu", label => "Sanity"},
+ "sanitybeta" => {key => "7AeTyu", label => "Sanity public beta"},
+ "sanitydemo" => {key => "7AeTyu", label => "Sanity Demo"},
+ "santietam" => {key => "zfsCV2", label => "Sid Meiers Antietam"},
+ "saspc" => {key => "fewePZ", label => "SAS (PC)"},
+ "saspcam" => {key => "fewePZ", label => "SAS Automatch (PC)"},
+ "saturdayns" => {key => "psZhzd", label => "Saturday Night Speedway"},
+ "saturdaynsd" => {key => "psZhzd", label => "Saturday Night Speedway Demo"},
+ "sawpc" => {key => "ik9k6R", label => "SAW (PC)"},
+ "sawpcam" => {key => "ik9k6R", label => "SAW Automatch (PC)"},
+ "sawpcd" => {key => "ik9k6R", label => "SAW Demo (PC)"},
+ "sawps3" => {key => "HtiBX3", label => "SAW (PS3)"},
+ "sawps3am" => {key => "HtiBX3", label => "SAW Automatch (PS3)"},
+ "sawps3d" => {key => "HtiBX3", label => "SAW Demo (PS3)"},
+ "sballrevwii" => {key => "emMKr3", label => "Spaceball: Revolution (WiiWare)"},
+ "sbk08pc" => {key => "Xhg4AV", label => "SBK '08: Superbike World Championship (PC)"},
+ "sbk08pcam" => {key => "Xhg4AV", label => "SBK '08: Superbike World Championship Automa"},
+ "sbk08pcd" => {key => "Xhg4AV", label => "SBK '08: Superbike World Championship Demo ("},
+ "sbk08ps3" => {key => "Xhg4AV", label => "SBK '08: Superbike World Championship (PS3)"},
+ "sbk08ps3am" => {key => "Xhg4AV", label => "SBK '08: Superbike World Championship Automa"},
+ "sbk09pc" => {key => "pQAyX6", label => "SBK '09 (PC)"},
+ "sbk09pc" => {key => "pQAyX6", label => "SBK 09: Superbike World Championship"},
+ "sbk09pcam" => {key => "pQAyX6", label => "SBK '09 Automatch (PC)"},
+ "sbk09ps3" => {key => "hxVmss", label => "SBK '09 (PS3)"},
+ "sbk09ps3am" => {key => "hxVmss", label => "SBK '09 Automatch (PS3)"},
+ "sbk09usps3" => {key => "PGo4HU", label => "SBK '09 (US) (PS3)"},
+ "sbk09usps3am" => {key => "PGo4HU", label => "SBK '09 Automatch (US) (PS3)"},
+ "sbk09usps3d" => {key => "PGo4HU", label => "SBK '09 Demo (US) (PS3)"},
+ "sbkUSpc" => {key => "6Q9XqQ", label => "SBK '08 (US) (PC)"},
+ "sbkUSpcam" => {key => "6Q9XqQ", label => "SBK '08 Automatch (US) (PC)"},
+ "sbkUSpcd" => {key => "6Q9XqQ", label => "SBK '08 Demo (US) (PC)"},
+ "sbkUSps3" => {key => "q8Bupt", label => "SBK '08 (US) (PS3)"},
+ "sbkUSps3am" => {key => "q8Bupt", label => "SBK '08 Automatch (US) (PS3)"},
+ "sbkUSps3d" => {key => "q8Bupt", label => "SBK '08 Demo (US) (PS3)"},
+ "sbkxpc" => {key => "P8ThQm", label => "SBK X: Superbike World Championship (PC)"},
+ "sbkxpcam" => {key => "P8ThQm", label => "SBK X: Superbike World Championship Automatc"},
+ "sbkxpcd" => {key => "P8ThQm", label => "SBK X: Superbike World Championship Demo (UN"},
+ "sbkxpcdemo" => {key => "2MMChW", label => "SBK X: Superbike World Championship Demo (PC"},
+ "sbkxpcdemoam" => {key => "2MMChW", label => "SBK X: Superbike World Championship Demo Au"},
+ "sbkxps3" => {key => "BCvlzO", label => "SBK X: Superbike World Championship (PS3)"},
+ "sbkxps3am" => {key => "BCvlzO", label => "SBK X: Superbike World Championship Automatc"},
+ "sbkxps3d" => {key => "BCvlzO", label => "SBK X: Superbike World Championship Demo (UN"},
+ "sbkxps3demo" => {key => "ESDiC8", label => "SBK X: Superbike World Championship Demo (PS3"},
+ "sbkxps3demoam" => {key => "ESDiC8", label => "SBK X: Superbike World Championship Demo Aut"},
+ "sbkxusps3" => {key => "pvWq9y", label => "SBKX PS3 - USA"},
+ "sbkxusps3am" => {key => "pvWq9y", label => "SBKX PS3 - USA Automatch"},
+ "sbubpop" => {key => "u2K9p5", label => "Super Bubble Pop"},
+ "scompany" => {key => "EyzWAv", label => "Shadow Company"},
+ "scotttest" => {key => "RPzJL7", label => "Scott's test gamename"},
+ "scotttestam" => {key => "RPzJL7", label => "Scott's test gamename Automatch"},
+ "scourgepc" => {key => "NExdfn", label => "The Scourge Project (PC)"},
+ "scourgepcam" => {key => "NExdfn", label => "The Scourge Project Automatch (PC)"},
+ "scourgepcd" => {key => "NExdfn", label => "The Scourge Project Demo (PC)"},
+ "scourgeps3" => {key => "NExdfn", label => "The Scourge Project (PS3)"},
+ "scourgeps3am" => {key => "NExdfn", label => "The Scourge Project Automatch (PS3)"},
+ "scourgeps3d" => {key => "NExdfn", label => "The Scourge Project Demo (PS3)"},
+ "scourgerpc" => {key => "HXogqO", label => "The Scourge Project: Renaissance PC"},
+ "scourgerpcam" => {key => "HXogqO", label => "The Scourge Project: Renaissance PC Automatch"},
+ "scrabble" => {key => "Pz3Vea", label => "Scrabble"},
+ "scrabble3" => {key => "4o2vPk", label => "Scrabble 3"},
+ "scrabbledel" => {key => "mZfoBF", label => "Scrabble Deluxe"},
+ "scrabbleo" => {key => "t2Dfj8", label => "Scrabble Online"},
+ "scratchdjpc" => {key => "yE9lKE", label => "Scratch: The Ultimate DJ (PC)"},
+ "scratchdjpcam" => {key => "yE9lKE", label => "Scratch: The Ultimate DJ Automatch (PC)"},
+ "scrbnateu2ds" => {key => "sHp6mA", label => "Scribblenauts 2 (EU) (DS)"},
+ "scrbnatot2ds" => {key => "FypuGp", label => "Scribblenauts 2 (Other) (DS)"},
+ "scribnaut2ds" => {key => "17kV2E", label => "Scribblenauts 2 (DS)"},
+ "scribnaut2dsam" => {key => "17kV2E", label => "Scribblenauts 2 Automatch (DS)"},
+ "scribnaut2pc" => {key => "6P7Qdd", label => "Scribblenauts 2 (PC)"},
+ "scribnaut2pcam" => {key => "6P7Qdd", label => "Scribblenauts 2 Automatch (PC)"},
+ "scribnaut2wii" => {key => "bnh1ku", label => "Scribblenauts 2 (Wii)"},
+ "scribnauteuds" => {key => "5aGp82", label => "Scribblenauts (EU) (DS)"},
+ "scribnautjpds" => {key => "NKW4G3", label => "Scribblenauts (JP) (DS)"},
+ "scribnautsds" => {key => "d4dJKr", label => "Scribblenauts (DS)"},
+ "scsdw" => {key => "PohZyA", label => "S.C.S. Dangerous Waters"},
+ "scsdwd" => {key => "agGBzE", label => "S.C.S. Dangerous Waters Demo"},
+ "scsdws" => {key => "hmhQeA", label => "S.C.S. Dangerous Waters Steam"},
+ "sdamigowii" => {key => "gLq68v", label => "Samba de Amigo (Wii)"},
+ "seafarmwii" => {key => "tNQRr7", label => "Seafarm (WiiWare)"},
+ "secondlife" => {key => "wpIwVb", label => "Second Life"},
+ "section8pc" => {key => "2UMehS", label => "Section 8 (PC)"},
+ "section8pcam" => {key => "2UMehS", label => "Section 8 Automatch (PC)"},
+ "section8pcb" => {key => "2UMehS", label => "Section 8 Beta (PC)"},
+ "section8pcbam" => {key => "2UMehS", label => "Section 8 Beta Automatch (PC)"},
+ "section8pcbd" => {key => "2UMehS", label => "Section 8 Beta Demo (PC)"},
+ "section8pcd" => {key => "2UMehS", label => "Section 8 Demo (PC)"},
+ "section8ps3" => {key => "RGZq4i", label => "Section 8 (PS3)"},
+ "section8ps3am" => {key => "RGZq4i", label => "Section 8 Automatch (PS3)"},
+ "section8ps3d" => {key => "RGZq4i", label => "Section 8 Demo (PS3)"},
+ "section8x360" => {key => "fB8QDw", label => "Section 8 (Xbox360)"},
+ "section8x360am" => {key => "fB8QDw", label => "Section 8 Automatch (Xbox360)"},
+ "section8x360d" => {key => "fB8QDw", label => "Section 8 Demo (Xbox360)"},
+ "segaracingds" => {key => "HQKW0J", label => "Sega Superstars Racing (DS)"},
+ "segaracingwii" => {key => "4ue8Ke", label => "Sega Superstars Racing (Wii)"},
+ "segarally2" => {key => "ajiPV0", label => "Sega Rally 2"},
+ "segarally2" => {key => "ajiPV0", label => "Sega Rally Championship 2"},
+ "segatennisps3" => {key => "RvJsgM", label => "Sega SuperStars Tennis (PS3)"},
+ "segatennisps3am" => {key => "RvJsgM", label => "Sega SuperStars Tennis Automatch"},
+ "sekainodokods" => {key => "cS9uS9", label => "Sekai no Dokodemo Shaberu! DS Oryori Navi (DS"},
+ "sengo3wii" => {key => "Esqv7G", label => "Sengokumuso 3"},
+ "sengo3wiijp" => {key => "w2ZVnz", label => "Sengoku Musou3 Moushoden"},
+ "serioussam" => {key => "AKbna4", label => "Serious Sam"},
+ "serioussam2" => {key => "8dA9mN", label => "Serious Sam 2 PC"},
+ "serioussam2d" => {key => "8dA9mN", label => "Serious Sam 2 Demo"},
+ "serioussamps2" => {key => "yG3L9f", label => "Serious Sam (PS2)"},
+ "serioussamse" => {key => "AKbna4", label => "Serious Sam: Second Encounter"},
+ "serioussamsed" => {key => "AKbna4", label => "Serious Sam: Second Encounter Demo"},
+ "SF3PS3PSrv" => {key => "HtxcaM", label => "ProfServ - SF3 Test (PS3)"},
+ "SF3PS3PSrvam" => {key => "HtxcaM", label => "ProfServ - SF3 Test Automatch (PS3)"},
+ "SF3PS3PSrvmb" => {key => "HtxcaM", label => "ProfServ - SF3 Test Broadcast (PS3)"},
+ "SF3RemiXbox" => {key => "illWHA", label => "Street Fighter 3 Remix (Xbox360)"},
+ "SF3RemiXboxam" => {key => "illWHA", label => "Street Fighter 3 Remix Automatch (Xbox360)"},
+ "SF3RemiXboxmb" => {key => "illWHA", label => "Street Fighter 3 Remix Match Broadcast (Xbox3"},
+ "SF3RemixPS3" => {key => "illWHA", label => "Street Fighter 3 Remix (PS3)"},
+ "SF3RemixPS3am" => {key => "illWHA", label => "Street Fighter 3 Remix Automatch (PS3)"},
+ "SF3RemixPS3mb" => {key => "illWHA", label => "Street Fighter 3 Remix Match Broadcast (PS3)"},
+ "SF3RemixXbox" => {key => "Qvskuu", label => "Street Fighter 3 Remix (Xbox360)"},
+ "SF3RemixXboxam" => {key => "Qvskuu", label => "Street Fighter 3 Remix Automatch (Xbox360)"},
+ "SF3XboxPSrv" => {key => "HtxcaM", label => "ProfServ - SF3 Test"},
+ "SF3XboxPSrvam" => {key => "HtxcaM", label => "ProfServ - SF3 Test Automatch"},
+ "SF3XboxPSrvmb" => {key => "HtxcaM", label => "ProfServ - SF3 Test Broadcast (Xbox)"},
+ "sfc" => {key => "OV0tKn", label => "Starfleet Command"},
+ "sfc2dv" => {key => "k7tEH3", label => "Starfleet Command 2: Empires At War Dynaverse"},
+ "sfc2op" => {key => "EX3rAJ", label => "Starfleet Command: Orion"},
+ "sfc2opdv" => {key => "Gj2k7A", label => "Starfleet Command II: Orion Pirates (Dynavers"},
+ "sfc3" => {key => "q3k7xH", label => "Starfleet Command III"},
+ "sfc3dv" => {key => "Gi7C8s", label => "Starfleet Command III (Dynaverse)"},
+ "sfc3dv" => {key => "Gi7C8s", label => "Starfleet Command III Dynaverse"},
+ "sfcdemo" => {key => "MZIr1w", label => "Starfleet Command Demo"},
+ "sforces" => {key => "V4f02S", label => "Special Forces"},
+ "shadowforce" => {key => "A3p54Q", label => "Shadow Force: Razor Unit"},
+ "sharpshooter" => {key => "9gV5Hl", label => "Sharp Shooter"},
+ "shatteredunion" => {key => "t2Gx8g", label => "Shattered Union"},
+ "shikagariwii" => {key => "IrKIwG", label => "Shikagari (Wii)"},
+ "shirends2ds" => {key => "T5gnTX", label => "Fushigi no Dungeon: Furai no Shiren DS2 (DS)"},
+ "shirenUSEUds" => {key => "bo4NTp", label => "Mysterious Dungeon: Shiren the Wanderer DS (U"},
+ "shogiwii" => {key => "AtQf1n", label => "Shogi (Wii) (WiiWare)"},
+ "shogo" => {key => "MQMhRK", label => "Shogo"},
+ "shootantowii" => {key => "nsgl14", label => "Shootanto (Wii)"},
+ "siextremeds" => {key => "69EvKG", label => "Space Invaders Extreme"},
+ "silenthunter2" => {key => "bnfRW8", label => "Silent Hunter 2"},
+ "simcitywii" => {key => "tLpVr1", label => "SimCity Creator (Wii)"},
+ "simplejudowii" => {key => "t4wmAP", label => "Simple The Ju-Do (WiiWare)"},
+ "simsflyerswii" => {key => "d5wfc2", label => "MySims Flyers (Wii)"},
+ "simspartywii" => {key => "fZ3lCM", label => "MySims Party (Wii)"},
+ "simsportsds" => {key => "Qw1de8", label => "MySims Sports (DS)"},
+ "simsportswii" => {key => "T18tBM", label => "MySims Sports (Wii)"},
+ "simsraceEUds" => {key => "HmxBFc", label => "MySims Racing DS (EU) (DS)"},
+ "simsraceJPNds" => {key => "fN26Ba", label => "MySims Racing DS (JPN) (DS)"},
+ "simsracingds" => {key => "iRs4Ck", label => "MySims Racing DS (DS)"},
+ "sin" => {key => "Ij1uAB", label => "Sin"},
+ "sinmac" => {key => "3Ka5BN", label => "Sin (Mac)"},
+ "sinpun2NAwii" => {key => "cVXGtt", label => "Sin & Punishment 2 NA (Wii)"},
+ "sinpunish2wii" => {key => "B2Tcgk", label => "Sin & Punishment 2 (Wii)"},
+ "skateitds" => {key => "eOpDft", label => "Skate It (DS)"},
+ "slancerdc" => {key => "UbNea2", label => "Starlancer DC"},
+ "slancerdc" => {key => "UbNea2", label => "Starlancer: Dreamcast"},
+ "slavezero" => {key => "Xrv9zn", label => "Slave Zero"},
+ "slclothingds" => {key => "uab2ul", label => "Style Lab: Clothing (DS)"},
+ "slclothingdsam" => {key => "uab2ul", label => "Style Lab: Clothing Automatch (DS)"},
+ "slugfest06ps2" => {key => "e8Cs3L", label => "Slugfest '06 (PS2)"},
+ "slugfestps2" => {key => "e8Cs3L", label => "Slugfest Pro (PS2)"},
+ "smackdn2ps2" => {key => "JyWnL2", label => "WWE Smackdown vs RAW 2 (PS2)"},
+ "smackdn2ps2kor" => {key => "JyWnL2", label => "WWE Smackdown vs RAW 2 Korea (PS2)"},
+ "smackdn2ps2pal" => {key => "JyWnL2", label => "WWE Smackdown vs RAW 2 PAL (PS2)"},
+ "smackdnps2" => {key => "k7cL91", label => "WWE Smackdown vs RAW (PS2) Sony Beta"},
+ "smackdnps2kor" => {key => "k7cL91", label => "WWE Smackdown vs RAW (PS2) Korean"},
+ "smackdnps2pal" => {key => "k7cL91", label => "WWE Smackdown vs RAW (PS2) PAL"},
+ "smackdnps2palr" => {key => "k7cL91", label => "WWE Smackdown vs RAW (PS2) PAL Retail"},
+ "smackdnps2r" => {key => "k7cL91", label => "WWE Smackdown vs RAW (PS2) Retail"},
+ "smashbrosxwii" => {key => "3AxIg4", label => "Dairantou Smash Brothers X (Wii)"},
+ "smball2iph" => {key => "cqWhHg", label => "Super Monkey Ball 2 (iPhone)"},
+ "smball2ipham" => {key => "cqWhHg", label => "Super Monkey Ball 2 Automatch (iPhone)"},
+ "smball2iphd" => {key => "cqWhHg", label => "Super Monkey Ball 2 Demo (iPhone)"},
+ "smgettysbu" => {key => "3MHCZ8", label => "Sid Meier's Gettysburg"},
+ "smrailroads" => {key => "h32mq8", label => "Sid Meier's Railroads!"},
+ "smrailroadsjp" => {key => "h32mq8", label => "Sid Meier's Railroads! Japan"},
+ "smrailroadsjpam" => {key => "h32mq8", label => "Sid Meier's Railroads! Japan Automatch"},
+ "snackdsi" => {key => "zrSxhe", label => "Snack (DSiWare)"},
+ "sneeziesdsw" => {key => "fl2idL", label => "Sneezies (DSiWare)"},
+ "sneeziesdswam" => {key => "fl2idL", label => "Sneezies Automatch (DSiWare)"},
+ "sneezieswiiw" => {key => "mIvWS5", label => "Sneezies (WiiWare)"},
+ "snightxds" => {key => "sJZwCL", label => "Summon Night X (DS)"},
+ "sniperelpc" => {key => "hP58dm", label => "Sniper Elite"},
+ "sniperelpc" => {key => "hP58dm", label => "Sniper Elite (PC)"},
+ "sniperelps2" => {key => "f3Tk3s", label => "Sniper Elite (PS2)"},
+ "snooker2003" => {key => "ZIq1wX", label => "Snooker 2003"},
+ "soa" => {key => "H3pD7m", label => "Soldiers of Anarchy"},
+ "soad" => {key => "K3e8cT", label => "Soldiers of Anarchy Demo"},
+ "soccerjamds" => {key => "vTgXza", label => "Soccer Jam (DS)"},
+ "socelevends" => {key => "IwZXVX", label => "World Soccer Winning Eleven DS (DS)"},
+ "sof" => {key => "nJ0rZz", label => "Soldier of Fortune"},
+ "sof2" => {key => "F8vZed", label => "Soldier of Fortune 2"},
+ "sof2demo" => {key => "F8vZed", label => "Soldier of Fortune 2 Demo"},
+ "sofretail" => {key => "iVn3a3", label => "Soldier of Fortune: Retail"},
+ "soldiersww2" => {key => "qdSxsJ", label => "Soldiers: Heroes of World War II"},
+ "sonic2010ds" => {key => "63ckbN", label => "SONIC 2010 (DS)"},
+ "sonic2010dsam" => {key => "63ckbN", label => "SONIC 2010 Automatch (DS)"},
+ "sonic2010wii" => {key => "LhuHFv", label => "SONIC 2010 (Wii)"},
+ "sonic2010wiiam" => {key => "LhuHFv", label => "SONIC 2010 Automatch (Wii)"},
+ "sonicbkwii" => {key => "1SWPIm", label => "Sonic and the Black Knight (Wii)"},
+ "sonicdlwii" => {key => "DkJwkG", label => "Sonic DL (WiiWare)"},
+ "sonicrkords" => {key => "PrnrAp", label => "Sonic Rush Adventure (KOR) (DS)"},
+ "sonicrushads" => {key => "so70kL", label => "Sonic Rush Adventure (DS)"},
+ "sonoatest" => {key => "QkEwkn", label => "Sonoa Test Gamename"},
+ "sonoatestam" => {key => "QkEwkn", label => "Sonoa Test Gamename Automatch"},
+ "sonriders2wii" => {key => "m2F95I", label => "Sonic Riders 2 (Wii)"},
+ "source" => {key => "hba3av", label => "Half Life 2"},
+ "southpark" => {key => "yoI7mE", label => "South Park"},
+ "spacepod" => {key => "8cvRTO", label => "SpacePod"},
+ "spacepodd" => {key => "y3R2cD", label => "Space Pod Demo"},
+ "spaceremixds" => {key => "Gs1FlI", label => "Space Invaders Extreme Remix (DS)"},
+ "spades" => {key => "YvPBIM", label => "Hasbro's Spades"},
+ "sparta2pc" => {key => "JfHMee", label => "Sparta 2: The Conquest of Alexander the Great"},
+ "sparta2pcam" => {key => "JfHMee", label => "Sparta 2: The Conquest of Alexander the Great"},
+ "sparta2pcd" => {key => "JfHMee", label => "Sparta 2: The Conquest of Alexander the Great"},
+ "spartaaw" => {key => "09mczM", label => "Sparta: Ancient Wars"},
+ "spartaawd" => {key => "09mczM", label => "Sparta: Ancient Wars Demo"},
+ "spartan" => {key => "GjuMct", label => "Spartan & Spartan"},
+ "spartand" => {key => "JdQvnt", label => "Spartan Demo"},
+ "spbobbleds" => {key => "OFA2iI", label => "Space Puzzle Bobble (DS)"},
+ "spcell3coop" => {key => "QdVGhj", label => "Splinter Cell 3 CoOp"},
+ "specialforces" => {key => "V4f02S", label => "Special Forces"},
+ "specops" => {key => "adyYWv", label => "Spec Ops"},
+ "spectro2wii" => {key => "KgKm2x", label => "Spectrobes 2 (Wii)"},
+ "spectrobes2ds" => {key => "uBRc5a", label => "Kaseki Choshinka Spectrobes 2 (DS)"},
+ "spellforce" => {key => "T8g3Ck", label => "Spellforce"},
+ "spellforced" => {key => "T8g3Ck", label => "Spellforce Demo"},
+ "spinvgewii" => {key => "qbD03S", label => "Space Invaders: Get Even (WiiWare)"},
+ "splintcellchaos" => {key => "UgzOGy", label => "splintcellchaos"},
+ "spoilsofwar" => {key => "nZ2e4T", label => "Spoils of War"},
+ "spoilsofwaram" => {key => "nZ2e4T", label => "Spoils of War (Automatch)"},
+ "sporearenads" => {key => "mhxKle", label => "Spore Hero Arena (DS)"},
+ "sporeds" => {key => "5kq9Pf", label => "Spore (DS)"},
+ "springwidgets" => {key => "tQfwTW", label => "Spring Widgets"},
+ "springwidgetsam" => {key => "tQfwTW", label => "Spring Widgets Automatch"},
+ "sptouzokuds" => {key => "4TxC2h", label => "Steel Princess Touzoku Koujyo (DS)"},
+ "spyvsspyps2" => {key => "y3F7Gh", label => "Spy vs Spy PS2"},
+ "srally2dmo" => {key => "kD072v", label => "Sega Rally 2 PC Demo"},
+ "srgakuends" => {key => "cK86go", label => "Super Robot Gakuen (DS)"},
+ "srgakuendsam" => {key => "cK86go", label => "Super Robot Gakuen Automatch (DS)"},
+ "srow2pc" => {key => "odvimE", label => "Saint's Row 2 (PC)"},
+ "srow2pcam" => {key => "odvimE", label => "Saint's Row 2 Automatch (PC)"},
+ "srow2ps3" => {key => "iWKxFZ", label => "Saint's Row 2 (PS3)"},
+ "srow2ps3am" => {key => "iWKxFZ", label => "Saint's Row 2 Automatch"},
+ "srow2ps3d" => {key => "iWKxFZ", label => "Saint's Row 2 (PS3) Demo"},
+ "srow2ps3dam" => {key => "iWKxFZ", label => "Saint's Row 2 Automatch (PS3) Demo"},
+ "srow2xb360" => {key => "XfwkNR", label => "Saint's Row 2 (Xbox 360)"},
+ "srow2xb360am" => {key => "XfwkNR", label => "Saint's Row 2 Automatch (Xbox 360)"},
+ "srsyndpc" => {key => "A9Lkq1", label => "Street Racing Syndicate (PC)"},
+ "srsyndps2" => {key => "A9Lkq1", label => "Street Racing Syndicate (PS2)"},
+ "srsyndps2" => {key => "A9Lkq1", label => "Street Racing Syndicate PS2"},
+ "ssamdemo" => {key => "Gn3a12", label => "Serious Sam Demo"},
+ "sshafricawii" => {key => "9FVEkx", label => "Super Slam Hunting: Africa (NA)"},
+ "sshafricawii" => {key => "9FVEkx", label => "Super Slam Hunting: Africa (NA) (Wii)"},
+ "sshafricawiiam" => {key => "9FVEkx", label => "Super Slam Hunting: Africa Automatch (NA)"},
+ "ssmahjongwii" => {key => "r0AyOn", label => "Simple Series: The Mah-Jong (WiiWare)"},
+ "ssoldierrwii" => {key => "4w5JoH", label => "Star Soldier R (WiiWare)"},
+ "st_highscore" => {key => "KS3p2Q", label => "Stats and Tracking Sample"},
+ "st_ladder" => {key => "KwFJ2X", label => "Global Rankings Sample - Ladder"},
+ "st_rank" => {key => "53Jx7W", label => "Global Rankings Sample"},
+ "stalinsub" => {key => "HOqpUo", label => "The Stalin Subway"},
+ "stalkercoppc" => {key => "LTU2z2", label => "STALKER: Call of Pripyat (PC)"},
+ "stalkercoppcam" => {key => "LTU2z2", label => "STALKER: Call of Pripyat Automatch (PC)"},
+ "stalkercoppcd" => {key => "LTU2z2", label => "STALKER: Call of Pripyat Demo (PC)"},
+ "stalkercs" => {key => "PQ7tFU", label => "Stalker: Clear Sky (PC)"},
+ "stalkercsam" => {key => "PQ7tFU", label => "Stalker: Clear Sky Automatch (PC)"},
+ "stalkercsd" => {key => "PQ7tFU", label => "Stalker: Clear Sky Demo (PC)"},
+ "starcraft" => {key => "LfYDYB", label => "Starcraft"},
+ "starcraftdmo" => {key => "NFel1q", label => "Starcraft Demo"},
+ "starcraftexp" => {key => "DKiPxZ", label => "Starcraft: Brood Wars"},
+ "starfoxds" => {key => "RR7XGH", label => "Starfox DS (DS)"},
+ "starlancer" => {key => "qik37G", label => "StarLancer"},
+ "starpballwii" => {key => "oDN3tk", label => "Starship Pinball (WiiWare)"},
+ "starraiders" => {key => "n76Cde", label => "Star Raiders"},
+ "starsiege" => {key => "MZIq1w", label => "Starsiege"},
+ "startopia" => {key => "r5UN9g", label => "Startopia"},
+ "startreklegacy" => {key => "jMaWnz", label => "Star Trek: Legacy"},
+ "startrekmac" => {key => "nbxWDg", label => "Star Trek: D-A-C (MAC)"},
+ "startrekmacam" => {key => "nbxWDg", label => "Star Trek Automatch (MAC)"},
+ "starwrsfrc" => {key => "p4jGh6", label => "Star Wars Force Commander"},
+ "statesmen" => {key => "j8K3l0", label => "Statesmen"},
+ "stbotf" => {key => "aiiOU0", label => "Birth of the Federation"},
+ "steeltide" => {key => "zgsDV2", label => "Operation Steel Tide"},
+ "stef1" => {key => "N43A3a", label => "Star Trek: Elite Force Voyager"},
+ "stef1exp" => {key => "zgsCV2", label => "Elite Force Expansion"},
+ "stef2" => {key => "MIr1wX", label => "Elite Force II"},
+ "stefdemo" => {key => "H28D2r", label => "Star Trek: Elite Force Demo"},
+ "stella" => {key => "M8o1Qw", label => "Battlefield 2142"},
+ "stella" => {key => "M8o1Qw", label => "Battlefield 2142 (correct gamekey)"},
+ "stellad" => {key => "M8o1Qw", label => "Battlefield 2142 (Demo)"},
+ "stitandemo" => {key => "9mDKzi", label => "Submarine Titans Demo"},
+ "stitans" => {key => "V5Hl31", label => "Submarine Titans"},
+ "stlegacy" => {key => "x9qTsK", label => "Star Trek: Legacy"},
+ "stlprincessds" => {key => "M1LDrU", label => "Steal Princess (DS)"},
+ "stlprinEUds" => {key => "7SnIvW", label => "Steal Princess (EU) (DS)"},
+ "stlprinKORds" => {key => "fufc4q", label => "Steal Princess (KOR) (DS)"},
+ "stnw" => {key => "8cvRTO", label => "Star Trek: New Worlds"},
+ "stormrisepc" => {key => "6zyt4S", label => "Stormrise (PC)"},
+ "stormrisepcam" => {key => "6zyt4S", label => "Stormrise Automatch (PC)"},
+ "stormrisepcd" => {key => "6zyt4S", label => "Stormrise Demo (PC)"},
+ "strategistpc" => {key => "a3Nydp", label => "The Strategist (PC)"},
+ "strategistpcam" => {key => "a3Nydp", label => "The Strategist Automatch (PC)"},
+ "strategistpcd" => {key => "a3Nydp", label => "The Strategist Demo (PC)"},
+ "strategistpsn" => {key => "Ep4yXH", label => "The Strategist (PSN)"},
+ "strategistpsnam" => {key => "Ep4yXH", label => "The Strategist Automatch (PSN)"},
+ "strategistpsnd" => {key => "Ep4yXH", label => "The Strategist Demo (PSN)"},
+ "strategistwii" => {key => "sP7muH", label => "Strategist (Wii)"},
+ "streetjam" => {key => "jAGh7n", label => "UltraWheels StreetJam"},
+ "streetracer" => {key => "ydxboe", label => "Streetracer"},
+ "strfltcmd2" => {key => "8cvSTO", label => "Starfleet Command Volume"},
+ "strfltcmd2d" => {key => "gW5Hm4", label => "Empires at War Demo"},
+ "strifeshadow" => {key => "Abv3a9", label => "StrifeShadow"},
+ "strifeshadowd" => {key => "99mEKi", label => "Strifeshadow Demo"},
+ "strikefighters1" => {key => "PwZFex", label => "Strike Fighters: Project"},
+ "stronghold" => {key => "QwZFex", label => "Stronghold"},
+ "stronghold2" => {key => "Lc83Jm", label => "Stronghold 2"},
+ "strongholdc" => {key => "fYDXBO", label => "Stronghold: Crusaders"},
+ "strongholdcd" => {key => "kAGh6n", label => "Stronghold Crusaders Demo"},
+ "strongholdce" => {key => "UWmLcS", label => "Stronghold: Crusader Extreme"},
+ "strongholdd" => {key => "Rp5kGg", label => "Stronghold Demo"},
+ "strongholdl" => {key => "LXkm3b", label => "Stronghold Legends"},
+ "stylelabds" => {key => "t8C5o0", label => "Style Lab: Fashion Design (NOT USED)"},
+ "subcommand" => {key => "iPwZGe", label => "Sub Command"},
+ "suddenstrike" => {key => "vUhCSB", label => "Sudden Strike"},
+ "suddenstrike2" => {key => "Iq0wWE", label => "Sudden Strike II"},
+ "suddenstrike3" => {key => "QNiEOS", label => "Sudden Strike 3: Arms for Victory"},
+ "suitelifeds" => {key => "q3Vrvd", label => "Suite Life of Zack & Cody: Circle of Spies (D"},
+ "suitelifeEUds" => {key => "7AyK8d", label => "Suite Life of Zack & Cody: Circle of Spies (E"},
+ "sukashikds" => {key => "uk8Nda", label => "Sukashikashipanman DS (DS)"},
+ "sumofallfears" => {key => "4kGh6m", label => "The Sum of All Fears"},
+ "sumofallfearsd" => {key => "RW78cv", label => "The Sum of All Fears Demo"},
+ "suparobods" => {key => "fJgMKq", label => "Suparobo Gakuen (DS)"},
+ "supcomfabeta" => {key => "xvuHpR", label => "Supreme Commander: Forged Alliance beta"},
+ "supcomm" => {key => "UMEjry", label => "Supreme Commander"},
+ "supcommb" => {key => "pPhzeh", label => "Supreme Commander (Beta)"},
+ "supcommdemo" => {key => "plfinb", label => "Supreme Commander Demo"},
+ "superpower2" => {key => "yYw43B", label => "Super Power 2"},
+ "Superslamhapc" => {key => "g5idbh", label => "Super Slam Hunting PC"},
+ "Superslamhapcam" => {key => "g5idbh", label => "Super Slam Hunting PC Automatch"},
+ "superv8ncpc" => {key => "4fKWpe", label => "Superstars V8 Next Challenge (PC)"},
+ "superv8ncpcam" => {key => "4fKWpe", label => "Superstars V8 Next Challenge Automatch (PC)"},
+ "superv8ncpcd" => {key => "4fKWpe", label => "Superstars V8 Next Challenge Demo (PC)"},
+ "superv8ncps3" => {key => "eLgtAp", label => "Superstars V8 Next Challenge (PS3)"},
+ "superv8ncps3am" => {key => "eLgtAp", label => "Superstars V8 Next Challenge Automatch (PS3)"},
+ "superv8ncps3d" => {key => "eLgtAp", label => "Superstars V8 Next Challenge Demo (PS3)"},
+ "superv8pc" => {key => "GfQdlV", label => "Super V8 Racing"},
+ "superv8pc" => {key => "GfQdlV", label => "Superstars V8 Racing (PC)"},
+ "superv8pcam" => {key => "GfQdlV", label => "Superstars V8 Racing Automatch (PC)"},
+ "superv8pcd" => {key => "GfQdlV", label => "Superstars V8 Racing Demo (PC)"},
+ "superv8ps3" => {key => "0vzJCz", label => "Superstars V8 Racing (PS3)"},
+ "superv8ps3am" => {key => "0vzJCz", label => "Superstars V8 Racing Automatch (PS3)"},
+ "superv8ps3d" => {key => "0vzJCz", label => "Superstars V8 Racing Demo (PS3)"},
+ "superv8USpc" => {key => "MmEMpy", label => "Superstars V8 Racing US (PC)"},
+ "superv8USpcam" => {key => "MmEMpy", label => "Superstars V8 Racing US Automatch (PC)"},
+ "superv8usps3" => {key => "XUuoVH", label => "Superstars V8 Racing (US) (PS3)"},
+ "superv8usps3am" => {key => "XUuoVH", label => "Superstars V8 Racing Automatch (US) (PS3)"},
+ "superv8usps3d" => {key => "XUuoVH", label => "Superstars V8 Racing Demo (US) (PS3)"},
+ "supruler2010" => {key => "cEuCxb", label => "Supreme Ruler 2010"},
+ "supv8ncusps3" => {key => "CoGo8A", label => "Superstars V8 NC PS3 - USA"},
+ "supv8ncusps3am" => {key => "CoGo8A", label => "Superstars V8 NC PS3 - USA Automatch"},
+ "surfsupds" => {key => "vTS4gO", label => "Surf's Up (DS)"},
+ "surkatamarwii" => {key => "TgGSxT", label => "Surinukeru Katamari (WiiWare)"},
+ "survivor" => {key => "H2du2", label => "Survivor Ultimate"},
+ "survivorm" => {key => "ZDXBOF", label => "Survivor: Marquesas"},
+ "svsr09ps3" => {key => "Pzhfov", label => "WWE Smackdown vs. RAW 2009 (PS3)"},
+ "svsr09x360" => {key => "Pzhfov", label => "WWE Smackdown vs. RAW 2009 (Xbox 360)"},
+ "svsr10ps3" => {key => "XcUkIx", label => "WWE Smackdown vs. Raw 2010 (PS3)"},
+ "svsr10ps3am" => {key => "XcUkIx", label => "WWE Smackdown vs. Raw 2010 Automatch (PS3)"},
+ "svsr10ps3d" => {key => "XcUkIx", label => "WWE Smackdown vs. Raw 2010 Demo (PS3)"},
+ "svsr10x360" => {key => "ONqHu9", label => "WWE Smackdown vs. Raw 2010 (Xbox 360)"},
+ "svsr10x360am" => {key => "ONqHu9", label => "WWE Smackdown vs. Raw 2010 Automatch (Xbox 3"},
+ "svsr10x360d" => {key => "ONqHu9", label => "WWE Smackdown vs. Raw 2010 Demo (Xbox 360)"},
+ "svsr11ps3" => {key => "8TMLdH", label => "Smackdown vs Raw 2011 (PS3)"},
+ "svsr11ps3am" => {key => "8TMLdH", label => "Smackdown vs Raw 2011 Automatch (PS3)"},
+ "svsr11ps3d" => {key => "8TMLdH", label => "Smackdown vs Raw 2011 Demo (PS3)"},
+ "svsr11ps3dev" => {key => "gSTArg", label => "Smackdown vs Raw 2011 DEV (PS3)"},
+ "svsr11ps3devam" => {key => "gSTArg", label => "Smackdown vs Raw 2011 DEV Automatch (PS3)"},
+ "svsr11x360" => {key => "4q9ULG", label => "Smackdown vs Raw 2011 (x360)"},
+ "svsr11x360am" => {key => "4q9ULG", label => "Smackdown vs Raw 2011 Automatch (x360)"},
+ "svsr11x360d" => {key => "4q9ULG", label => "Smackdown vs Raw 2011 Demo (x360)"},
+ "svsr11x360dev" => {key => "h5DZhP", label => "Smackdown vs Raw 2011 DEV (x360)"},
+ "svsr11x360devam" => {key => "h5DZhP", label => "Smackdown vs Raw 2011 DEV Automatch (x360)"},
+ "swat4" => {key => "tG3j8c", label => "SWAT 4"},
+ "swat4d" => {key => "tG3j8c", label => "SWAT 4 Demo"},
+ "swat4xp1" => {key => "tG3j8c", label => "SWAT 4: The Stetchkov Syndicate"},
+ "swat4xp1_tmp" => {key => "tG3j8c", label => "SWAT 4: The Stetchkov Syndicate Temp"},
+ "swbf3psp" => {key => "U8yNSx", label => "Star Wars: Battlefront 3 (PSP)"},
+ "swbf3pspam" => {key => "U8yNSx", label => "Star Wars: Battlefront 3 Automatch (PSP)"},
+ "swbfespsp" => {key => "wLfbMH", label => "Star Wars: Battlefront - Elite Squadron (PSP)"},
+ "swbfespspam" => {key => "wLfbMH", label => "Star Wars: Battlefront - Elite Squadron Auto"},
+ "swbfespspd" => {key => "wLfbMH", label => "Star Wars: Battlefront - Elite Squadron Demo"},
+ "swbfffpsp" => {key => "fytErP", label => "Star Wars Battlefront: Renegade Squadron (PSP"},
+ "swbfront2pc" => {key => "hMO2d4", label => "Star Wars Battlefront 2 PC"},
+ "swbfront2pcb" => {key => "hMO2d4", label => "Star Wars Battlefront 2 PC Beta"},
+ "swbfront2pcd" => {key => "hMO2d4", label => "Star Wars Battlefront 2 PC Demo"},
+ "swbfront2ps2" => {key => "hMO2d4", label => "Star Wars Battlefront 2 (PS2)"},
+ "swbfront2ps2" => {key => "y3Hd2d", label => "Star Wars Battlefront 2 PS2"},
+ "swbfront2ps2j" => {key => "hMO2d4", label => "Star Wars Battlefront 2 (PS2) Japanese"},
+ "swbfront3pc" => {key => "y3AEXC", label => "Star Wars Battlefront 3 (PC)"},
+ "swbfront3pcam" => {key => "y3AEXC", label => "Star Wars Battlefront 3 Automatch (PC)"},
+ "swbfront3pcCam" => {key => "y3AEXC", label => "Star Wars Battlefront 3 Automatch (PS3)"},
+ "swbfront3ps3" => {key => "y3AEXC", label => "Star Wars Battlefront 3 (PS3)"},
+ "swbfront3wii" => {key => "ILAvd9", label => "Star Wars: Battlefront 3 (Wii)"},
+ "swbfrontpc" => {key => "y3Hd2d", label => "Star Wars: Battlefront (PC)"},
+ "swbfrontps2" => {key => "y3Hd2d", label => "Star Wars Battlefront PS2"},
+ "swbfrontps2" => {key => "y3Hd2d", label => "Star Wars: Battlefront (PS2, Japan)"},
+ "swbfrontps2p" => {key => "y3Hd2d", label => "Star Wars: Battlefront (PS2)"},
+ "sweawfoc" => {key => "oFgIYB", label => "Star Wars: Empire at War - Forces of Corrupti"},
+ "sweawfocd" => {key => "qafBXM", label => "Forces of Corruption Demo"},
+ "swempire" => {key => "t3K2dF", label => "Star Wars: Empire at War"},
+ "swempire" => {key => "t3K2dF", label => "Swar Wars Empire at War"},
+ "swempiream" => {key => "t3K2dF", label => "Star Wars: Empire at War (Automatch)"},
+ "swempiremac" => {key => "yTNCrM", label => "Star Wars: Empire at War (Mac)"},
+ "swempiremacam" => {key => "yTNCrM", label => "Star Wars: Empire at War Automatch (Mac)"},
+ "swempirexp1" => {key => "2WLab8", label => "Star Wars: Empire at War - Forces of Corrupti"},
+ "swempirexp1" => {key => "2WLab8", label => "Swar Wars Empire at War Forces of Corruption"},
+ "swg" => {key => "wICOeH", label => "Star Wars Galaxies"},
+ "swgb" => {key => "XEX3sA", label => "Star Wars: Galactic Battl"},
+ "swgbcc" => {key => "RTORp4", label => "Star Wars Galactic Battle"},
+ "swgbd" => {key => "AGh6nM", label => "Star Wars: Galactic Battl"},
+ "swine" => {key => "D38DF3", label => "S.W.I.N.E."},
+ "swinedemo" => {key => "SwK4J2", label => "Swine Demo"},
+ "swordotnw" => {key => "TkDsNE", label => "Sword of the New World"},
+ "swordots" => {key => "Z5gR9Z", label => "Sword of the Stars"},
+ "swrcommando" => {key => "y2s8Fh", label => "Star Wars Republic Commando"},
+ "swrcommandod" => {key => "vMPtab", label => "Star Wars Republic Commando"},
+ "swrcommandoj" => {key => "y2s8Fh", label => "Star Wars Republic Commando Japanese Dist"},
+ "swrcommandot" => {key => "y2s8Fh", label => "Star Wars Republic Commando Thai Dist"},
+ "swsnow2wii" => {key => "2cPMrL", label => "Shaun White Snowboarding 2 (Wii)"},
+ "swtakoronwii" => {key => "xvf3KV", label => "Shall we Takoron (Wii)"},
+ "syachi2ds" => {key => "tXH2sN", label => "syachi 2 (DS)"},
+ "ta" => {key => "vPqkAc", label => "Total Annihilation"},
+ "tablegamestds" => {key => "Tk2MJq", label => "Table Game Stadium (D3-Yuki) (Wii)"},
+ "tacore" => {key => "1ydybn", label => "Core Contingency"},
+ "tacticalops" => {key => "uMctFb", label => "Tactical Ops"},
+ "taisends" => {key => "SNyrMR", label => "Sangokushi Taisen DS (DS)"},
+ "takameijinwii" => {key => "mgiHxl", label => "Takahashi Meijin no Boukenshima (WiiWare)"},
+ "takeda" => {key => "6TN9gW", label => "Takeda"},
+ "taking" => {key => "p5kGg7", label => "Total Anihilation: Kingdo"},
+ "takingdoms" => {key => "kJyalH", label => "TA: Kingdoms"},
+ "takoronKRwii" => {key => "N5yalP", label => "Takoron (KOR) (Wii)"},
+ "takoronUSwii" => {key => "3hzhvW", label => "Takoron (US) (Wii)"},
+ "talesofgrawii" => {key => "WEp7vX", label => "Tales of Graces (Wii)"},
+ "tankbattlesds" => {key => "kJl1BG", label => "Tank Battles (DS)"},
+ "tankbeat2ds" => {key => "aAbi3S", label => "Tank Beat 2 (DS)"},
+ "tankbeatds" => {key => "LxDL6t", label => "Tank Beat (JPN) (DS)"},
+ "tankbeatEUds" => {key => "Zc4TGh", label => "Tank Beat (EU) (DS)"},
+ "tankbeatusds" => {key => "8UdAVm", label => "Tank Beat (US) (DS)"},
+ "taprace" => {key => "xJRENu", label => "Tap Race (iPhone Sample)"},
+ "tapraceam" => {key => "xJRENu", label => "Tap Race Automatch (iPhone Sample)"},
+ "tarlawdartwii" => {key => "uu6z8k", label => "Target Toss Pro: Lawn Darts (Wii)"},
+ "tarlawdartwiiam" => {key => "uu6z8k", label => "Target Toss Pro: Lawn Darts Automatch (Wii)"},
+ "tataitemogwii" => {key => "qND9s1", label => "Tataite! Mogumon US/EU (WiiWare)"},
+ "tatvscapwii" => {key => "eJMWz4", label => "Tatsunoko vs. Capcom Ultimate All Stars (Wii)"},
+ "tcendwar" => {key => "wNPcIq", label => "Tom Clancy's EndWar"},
+ "tcghostreconaw" => {key => "wLCSvJ", label => "tcghostreconaw"},
+ "tcounterwii" => {key => "HzKrFV", label => "Tecmo Counter"},
+ "tdubeta" => {key => "VsReXT", label => "Test Drive Unlimited Beta"},
+ "teamfactor" => {key => "RW78cv", label => "Team Factor"},
+ "tecmoblkickds" => {key => "wdh5FE", label => "Tecmo Bowl Kickoff (DS)"},
+ "tempunavail" => {key => "9h1UHk", label => "Test for temporarily disabled games"},
+ "tenchu4wii" => {key => "z2VBXP", label => "Tenchu 4 (Wii)"},
+ "tenchuds" => {key => "dfOICS", label => "Tenchu (DS)"},
+ "terminator3" => {key => "y3Fq8v", label => "Terminator 3"},
+ "terminator3d" => {key => "y3Fq8v", label => "Terminator 3 demo"},
+ "terminator3d" => {key => "y3Fq8v", label => "Terminator 3 Demo"},
+ "terminus" => {key => "z9uima", label => "Terminus"},
+ "TerroristT2" => {key => "VSlLZK", label => "Terrorist Takedown 2"},
+ "terrortkdwn2" => {key => "KmqStH", label => "Terrorist Takedown 2"},
+ "terrortkdwn2am" => {key => "KmqStH", label => "Terrorist Takedown 2 Automatch"},
+ "terrortkdwn2d" => {key => "KmqStH", label => "Terrorist Takedown 2 Demo"},
+ "test" => {key => "Hku6Fd", label => "Test"},
+ "test071806" => {key => "7bxOC2", label => "Test"},
+ "TEST1" => {key => "sCV34p", label => "TEST 1"},
+ "test1" => {key => "ThAO8k", label => "test1"},
+ "testam" => {key => "Hku6Fd", label => "Test Automatch"},
+ "testdriveu" => {key => "P5eUD8", label => "Test Drive Unlimited (Unused)"},
+ "testdriveuak" => {key => "k7r85E", label => "Test Drive Unlimited (Akella)"},
+ "testdriveub" => {key => "BeTTbz", label => "Test Drive Unlimited"},
+ "testdriveud" => {key => "xueb6u", label => "Test Drive Unlimited Demo"},
+ "tetpartywii" => {key => "IZyry6", label => "Tetris Party (WiiWare)"},
+ "tetrisdeluxds" => {key => "LEtvxd", label => "Tetris Party Deluxe (DSiWare)"},
+ "tetrisds" => {key => "JJlSi8", label => "Tetris DS (DS)"},
+ "tetriskords" => {key => "KrMqE6", label => "Tetris DS (KOR) (DS)"},
+ "tetrisppwii" => {key => "p8a6oW", label => "Tetris++ (WiiWare)"},
+ "tetrisworlds" => {key => "D3pQe2", label => "Tetris Worlds"},
+ "texasholdwii" => {key => "PEsKhp", label => "Texas Hold'em Tournament (WiiWare)"},
+ "tf15" => {key => "V0tKnY", label => "Half-Life 1.5"},
+ "TG09360" => {key => "6KEbIA", label => "TG09 (xbox360)"},
+ "TG09360am" => {key => "6KEbIA", label => "TG09 (xbox360) Automatch"},
+ "TG09PC" => {key => "OGmgyP", label => "TG09 (PC)"},
+ "TG09PCam" => {key => "OGmgyP", label => "TG09 (PC) Automatch"},
+ "TG09PS3" => {key => "MwxZZo", label => "TG09 (PS3)"},
+ "TG09PS3am" => {key => "MwxZZo", label => "TG09 (PS3) Automatch"},
+ "tgmasterds" => {key => "cHgbU3", label => "Table Game Master DS (DS)"},
+ "tgstadiumwii" => {key => "w1pKbR", label => "Table Game Stadium (Wii)"},
+ "th2003d" => {key => "G4i3x7", label => "Trophy Hunter 2003 Demo"},
+ "thawpc" => {key => "v8la4w", label => "Tony Hawk's American Wasteland"},
+ "thawpc" => {key => "v8la4w", label => "Tony Hawk's American Wasteland (PC)"},
+ "thdhilljamds" => {key => "6gJBca", label => "Tony Hawk's Downhill Jam (DS)"},
+ "thecombatwii" => {key => "VM5pGy", label => "SIMPLE Wii Series Vol.6 THE Minna de Waiwai C"},
+ "themark" => {key => "C69nBX", label => "The Mark"},
+ "themarkam" => {key => "C69nBX", label => "The Mark Automatch"},
+ "theracewii" => {key => "6JbTWP", label => "The Race (Wii)"},
+ "thesactionwii" => {key => "zKsfNR", label => "The Shooting Action (Wii)"},
+ "thetsuriwii" => {key => "LhtR3d", label => "The Tsuri (Wii)"},
+ "THPGds" => {key => "oucE6T", label => "Tony Hawks Proving Ground (DS)"},
+ "thps3media" => {key => "tRKg39", label => "Tony Hawk Pro Skater 3 Media"},
+ "thps3pc" => {key => "KsE3a2", label => "Tony Hawk 3 PC"},
+ "thps3pcr" => {key => "KsE3a2", label => "Tony Hawk 3 PC (Rerelease)"},
+ "thps3ps2" => {key => "hD72Kq", label => "Tony Hawk Pro Skater 3 (PS2)"},
+ "thps3ps2" => {key => "hD72Kq", label => "Tony Hawk's Pro Skater 3 PS2"},
+ "thps4pc" => {key => "L3C8s9", label => "Tony Hawk: Pro Skater 4 (PC)"},
+ "thps4pcr" => {key => "L3C8s9", label => "Tony Hawk: Pro Skater 4 (PC) Rerelease"},
+ "thps4pcram" => {key => "L3C8s9", label => "Tony Hawk: Pro Skater 4 Automatch (PC) Rerel"},
+ "thps4ps2" => {key => "H2r8W1", label => "Tony Hawk: Pro Skater 4 (PS2)"},
+ "thps4ps2" => {key => "H2r8W1", label => "Tony Hawk's Pro Skater 4 PS2"},
+ "thps5pc" => {key => "AdLWaZ", label => "Tony Hawks Underground (PC)"},
+ "thps5ps2" => {key => "G2k8cF", label => "Tony Hawk's Underground (PS2)"},
+ "thps5ps2" => {key => "G2k8cF", label => "Tony Hawk's Underground PS2"},
+ "thps6pc" => {key => "AdLWaZ", label => "T.H.U.G. 2"},
+ "thps6ps2" => {key => "3Rc9Km", label => "Tony Hawk's Underground 2 PS2"},
+ "thps6ps2" => {key => "3Rc9Km", label => "Tony Hawks Underground 2 (PS2)"},
+ "thps7ps2" => {key => "y3L9Cw", label => "Tony Hawk's American Wasteland PS2"},
+ "thps7ps2" => {key => "y3L9Cw", label => "Tony Hawks American Wasteland (PS2)"},
+ "tiberiansun" => {key => "Gg6nLf", label => "Tiberian Sun"},
+ "timeshift" => {key => "rHKFnV", label => "TimeShift (PC)"},
+ "timeshiftb" => {key => "rHKFnV", label => "TimeShift Beta (PC)"},
+ "timeshiftd" => {key => "rHKFnV", label => "TimeShift Demo (PC)"},
+ "timeshiftg" => {key => "PAWCeH", label => "Timeshift"},
+ "timeshiftps3" => {key => "rHKFnV", label => "TimeShift (PS3)"},
+ "timeshiftps3d" => {key => "rHKFnV", label => "TimeShift Demo (PS3)"},
+ "timeshiftx" => {key => "rHKFnV", label => "TimeShift (Xbox 360)"},
+ "titanquest" => {key => "Te3j7S", label => "Titan Quest"},
+ "titanquestit" => {key => "orNtwo", label => "Titan Quest Immortal Throne"},
+ "tiumeshiftu" => {key => "NhcH1f", label => "TimeShift (Unlock codes)"},
+ "tmntds" => {key => "XZr5Nr", label => "Teenage Mutant Ninja Turtles (DS)"},
+ "tmntsmashwii" => {key => "IXIdNe", label => "TMNT Smash Up (Wii)"},
+ "tokyoparkwii" => {key => "4Fx0VT", label => "Tokyo Friend Park II Wii (Wii)"},
+ "tolmamods" => {key => "sLFfpP", label => "Tolmamo (DS)"},
+ "tomenasawii" => {key => "r15HmN", label => "Tomenasanner (WiiWare)"},
+ "tongaribouids" => {key => "G2ke4q", label => "Tongaribousi to mahono omise (DS)"},
+ "tongaribouidsam" => {key => "G2ke4q", label => "Tongaribousi to mahono omise Automatch (DS)"},
+ "topanglerwii" => {key => "2SbZew", label => "Top Angler (Wii)"},
+ "topspin" => {key => "sItvrS", label => "Top Spin"},
+ "topspin2pc" => {key => "tTp6Pn", label => "Top Spin 2 (PC)"},
+ "topspin3euds" => {key => "ETgvzA", label => "Top Spin 3 (EU) (DS)"},
+ "topspin3usds" => {key => "8R4LgD", label => "Top Spin 3 (US) (DS)"},
+ "topspin4wii" => {key => "7AzniN", label => "TOPSPIN 4 (Wii)"},
+ "topspinps2" => {key => "sItvrS", label => "Top Spin (PS2)"},
+ "topspinps2" => {key => "sItvrS", label => "Top Spin PS2"},
+ "topspinps2am" => {key => "sItvrS", label => "Top Spin (PS2) Automatch"},
+ "toribashwii" => {key => "3wygG8", label => "Toribash (WiiWare)"},
+ "tothrainbowds" => {key => "lA7Urd", label => "TOTH Rainbow Trail of Light (DS)"},
+ "touchmast4dsi" => {key => "TGJei2", label => "TouchMaster 4: Megatouch Edition (DSi)"},
+ "touchpanicds" => {key => "zHToa5", label => "Touch Panic (DS)"},
+ "tpfolEUpc" => {key => "ltSs4H", label => "Turning Point: Fall of Liberty (EU) (PC)"},
+ "tpfolEUpcam" => {key => "ltSs4H", label => "Turning Point: Fall of Liberty Automatch (EU"},
+ "tpfolEUpcB" => {key => "ltSs4H", label => "Turning Point: Fall of Liberty (EU-B) (PC)"},
+ "tpfolEUpcBam" => {key => "ltSs4H", label => "Turning Point: Fall of Liberty Automatch (EU"},
+ "tpfolEUpcBd" => {key => "ltSs4H", label => "Turning Point: Fall of Liberty Demo (EU-B) ("},
+ "tpfolEUpcd" => {key => "ltSs4H", label => "Turning Point: Fall of Liberty Demo (EU) (PC"},
+ "tpfolEUps3" => {key => "svJqvE", label => "Turning Point: Fall of Liberty (EU) (PS3)"},
+ "tpfolEUps3am" => {key => "svJqvE", label => "Turning Point: Fall of Liberty Automatch (EU"},
+ "tpfolpc" => {key => "svJqvE", label => "Turning Point: Fall of Liberty (PC)"},
+ "tpfolpcam" => {key => "svJqvE", label => "Turning Point: Fall of Liberty Automatch (PC"},
+ "tpfolpcB" => {key => "svJqvE", label => "Turning Point: Fall of Liberty (B) (PC)"},
+ "tpfolpcBam" => {key => "svJqvE", label => "Turning Point: Fall of Liberty Automatch (B)"},
+ "tpfolpcBd" => {key => "svJqvE", label => "Turning Point: Fall of Liberty Demo (B) (PC)"},
+ "tpfolpcd" => {key => "svJqvE", label => "Turning Point: Fall of Liberty Demo (PC)"},
+ "tpfolps3" => {key => "svJqvE", label => "Turning Point: Fall of Liberty (PS3)"},
+ "tpfolps3am" => {key => "svJqvE", label => "Turning Point: Fall of Liberty Automatch (PS"},
+ "tqexp1" => {key => "ZCe2KH", label => "Titan Quest: Immortal Throne"},
+ "tqexp1am" => {key => "ZCe2KH", label => "Titan Quest: Immortal Throne (Automatch)"},
+ "trackfieldds" => {key => "zC5kgT", label => "International Track & Field (DS)"},
+ "trackmania2ds" => {key => "iaukpU", label => "Trackmania DS 2 (DS)"},
+ "treadmarks" => {key => "u27bAA", label => "Tread Marks"},
+ "treasurewldds" => {key => "cKei7w", label => "Treasure World (DS)"},
+ "tribes" => {key => "z83fc2", label => "Starsiege TRIBES"},
+ "tribes2" => {key => "DAM4Kv", label => "Tribes 2"},
+ "tribes2demo" => {key => "AdF313", label => "Tribes 2 Demo"},
+ "tribesv" => {key => "y3D28k", label => "Tribes Vengeance"},
+ "tribesvb" => {key => "y3D28k", label => "Tribes Vengeance Beta"},
+ "tribesvd" => {key => "y3D28k", label => "Tribes Vengeance Demo"},
+ "trivialppalpc" => {key => "c45S8i", label => "Trivial Pursuit PAL (PC)"},
+ "trivialppalps2" => {key => "h3U6d9", label => "Trivial Pursuit PAL (PS2)"},
+ "trivialppc" => {key => "c45S8i", label => "Trivial Pursuit (PC) US"},
+ "trivialppcfr" => {key => "c45S8i", label => "Trivial Pursuit (PC) French"},
+ "trivialppcgr" => {key => "c45S8i", label => "Trivial Pursuit (PC) German"},
+ "trivialppcit" => {key => "c45S8i", label => "Trivial Pursuit (PC) Italian"},
+ "trivialppcsp" => {key => "c45S8i", label => "Trivial Pursuit (PC) Spanish"},
+ "trivialppcuk" => {key => "c45S8i", label => "Trivial Pursuit (PC) UK"},
+ "trivialpps2" => {key => "h3U6d9", label => "Trivial Pursuit (PS2)"},
+ "trkmaniads" => {key => "VzwMkX", label => "Trackmania (DS)"},
+ "trkmaniawii" => {key => "9mdZHR", label => "Trackmania (Wii)"},
+ "tron20" => {key => "t9D3vB", label => "TRON 2.0"},
+ "tron20d" => {key => "t9D3vB", label => "TRON 2.0 Demo"},
+ "tron20mac" => {key => "t9D3vB", label => "TRON 2.0"},
+ "tron20mac" => {key => "t9D3vB", label => "TRON 2.0 MAC"},
+ "truecrime" => {key => "G8d3R5", label => "True Crime"},
+ "tsfirestorm" => {key => "fRW88c", label => "Tiberian Sun - Firestorm"},
+ "tstgme" => {key => "gkWzAc", label => "test game"},
+ "tsurimasterds" => {key => "BM8WEh", label => "Mezase!! Tsuri Master DS (DS)"},
+ "turok2" => {key => "RWd3BG", label => "Turok 2"},
+ "tvshwking2wii" => {key => "pNpvGC", label => "TV Show King 2 (WiiWare)"},
+ "twc" => {key => "iPxZFe", label => "Takeout Weight Curling"},
+ "twc2" => {key => "PYxfvt", label => "Takeout Weight Curling 2"},
+ "twoods08ds" => {key => "nNgv7v", label => "Tiger Woods 08 (DS)"},
+ "tycoonnyc" => {key => "VgxCbC", label => "Tycoon City - New York"},
+ "tzar" => {key => "byTPgq", label => "TZAR"},
+ "ubisoftdev" => {key => "K4wfax", label => "Ubisoft Development"},
+ "ubisoftdevam" => {key => "K4wfax", label => "Ubisoft Development Automatch"},
+ "ubraingamesds" => {key => "MzT7MD", label => "Ultimate Brain Games (DS)"},
+ "ucardgamesds" => {key => "PpmQVg", label => "Ultimate Card Games (DS)"},
+ "uchaosrrps2" => {key => "KPd0V9", label => "Urban Chaos: Riot Response (PS2)"},
+ "uchaosrrps2am" => {key => "KPd0V9", label => "Urban Chaos: Riot Response Automatch (PS2)"},
+ "ufc09ps3" => {key => "DCLItd", label => "UFC 2009 (PS3)"},
+ "ufc09ps3am" => {key => "DCLItd", label => "UFC 2009 Automatch (PS3)"},
+ "ufc09ps3d" => {key => "DCLItd", label => "UFC 2009 Demo (PS3)"},
+ "ufc09x360" => {key => "Fuf44V", label => "UFC 2009 (Xbox 360)"},
+ "ufc09x360am" => {key => "Fuf44V", label => "UFC 2009 Automatch (Xbox 360)"},
+ "ufc09x360d" => {key => "Fuf44V", label => "UFC 2009 Demo (Xbox 360)"},
+ "ufc10ps3" => {key => "WFpvzz", label => "UFC 2010 (PS3)"},
+ "ufc10ps3am" => {key => "WFpvzz", label => "UFC 2010 Automatch (PS3)"},
+ "ufc10ps3d" => {key => "WFpvzz", label => "UFC 2010 Demo (PS3)"},
+ "ufc10ps3DEV" => {key => "2gN8O2", label => "UFC 2010 DEV (PS3-DEV)"},
+ "ufc10ps3DEVam" => {key => "2gN8O2", label => "UFC 2010 DEV Automatch (PS3-DEV)"},
+ "ufc10ps3DEVd" => {key => "2gN8O2", label => "UFC 2010 DEV Demo (PS3-DEV)"},
+ "ufc10x360" => {key => "oEwztT", label => "UFC 2010 (x360)"},
+ "ufc10x360am" => {key => "oEwztT", label => "UFC 2010 Automatch (x360)"},
+ "ufc10x360d" => {key => "oEwztT", label => "UFC 2010 Demo (x360)"},
+ "ufc10x360dev" => {key => "h2SP6e", label => "UFC 2010 DEV (360-DEV)"},
+ "ufc10x360devam" => {key => "h2SP6e", label => "UFC 2010 DEV Automatch (360-DEV)"},
+ "ufc10x360devd" => {key => "h2SP6e", label => "UFC 2010 DEV Demo (360-DEV)"},
+ "ufc2010iphoam" => {key => "v770LP", label => "UFC 2010 (iphone) Automatch"},
+ "ufc2010iphone" => {key => "v770LP", label => "SNSJDFJIk;jiaoj"},
+ "ufc2010iphone" => {key => "v770LP", label => "UFC 2010 (iphone)"},
+ "ufc2010iphoneam" => {key => "v770LP", label => "SNSJDFJIk;jiaoj Automatch"},
+ "ufcfitwii" => {key => "V9lDW2", label => "UFC Fitness Trainer (Wii)"},
+ "ufcfitwiiam" => {key => "V9lDW2", label => "UFC Fitness Trainer Automatch (Wii)"},
+ "ultibandwii" => {key => "F8KfNf", label => "Ultimate Band (Wii)"},
+ "ultimateMKds" => {key => "irQTn8", label => "Ultimate Mortal Kombat (DS)"},
+ "unavailable" => {key => "j39DhU", label => "Test for disabled games"},
+ "unbballswii" => {key => "lZTqHE", label => "Unbelievaballs (Wii)"},
+ "uno" => {key => "MZIq0w", label => "UNO"},
+ "unodsi" => {key => "w2G3ae", label => "UNO (DSiWare)"},
+ "unowii" => {key => "2hUZSq", label => "UNO (WiiWare)"},
+ "unreal" => {key => "DAncRK", label => "Unreal", port => 7778},
+ "uotd" => {key => "CpJvsG", label => "Ultima Online Third Dawn"},
+ "uprising2" => {key => "ALJwUh", label => "Uprising 2"},
+ "upwords" => {key => "itaKPh", label => "upwords"},
+ "usingwii" => {key => "6vcnoA", label => "U-Sing (Wii)"},
+ "ut" => {key => "Z5Nfb0", label => "Unreal Tournament", port => 7778},
+ "ut2" => {key => "Lw7x0R", label => "Unreal Tournament 2003"},
+ "ut2004" => {key => "y5rP9m", label => "Unreal Tournament 2004"},
+ "ut2004d" => {key => "y5rP9m", label => "Unreal Tournament 2004 Demo"},
+ "ut2d" => {key => "y5e8Q3", label => "Unreal Tournament 2003 Demo"},
+ "ut3" => {key => "UebAWH", label => "Unreal Tournament 3"},
+ "ut3demo" => {key => "KTiJdD", label => "Unreal Tournament 3 Demo"},
+ "ut3jppc" => {key => "nT2Mtz", label => "Unreal Tournament 3 Japanese (PC)"},
+ "ut3jppcam" => {key => "nT2Mtz", label => "Unreal Tournament 3 Japanese Automatch (PC)"},
+ "ut3jpps3" => {key => "nT2Mtz", label => "Unreal Tournament 3 Japanese (PS3)"},
+ "ut3jpps3am" => {key => "nT2Mtz", label => "Unreal Tournament 3 Japanese Automatch (PS3)"},
+ "ut3onlive" => {key => "7cxD9c", label => "Unreal Tournament 3 ONLIVE"},
+ "ut3onliveam" => {key => "7cxD9c", label => "Unreal Tournament 3 ONLIVE Automatch"},
+ "ut3pc" => {key => "nT2Mtz", label => "Unreal Tournament 3"},
+ "ut3pc" => {key => "nT2Mtz", label => "Unreal Tournament 3 (PC)"},
+ "ut3pcam" => {key => "nT2Mtz", label => "Unreal Tournament 3 Automatch (PC)"},
+ "ut3pcd" => {key => "nT2Mtz", label => "Unreal Tournament 3 Demo (PC)"},
+ "ut3pcdam" => {key => "nT2Mtz", label => "Unreal Tournament 3 Demo Automatch (PC)"},
+ "ut3ps3" => {key => "nT2Mtz", label => "Unreal Tournament 3 (PS3)"},
+ "ut3ps3am" => {key => "nT2Mtz", label => "Unreal Tournament 3 Automatch (PS3)"},
+ "ut3ps3d" => {key => "nT2Mtz", label => "Unreal Tournament 3 Demo (PS3)"},
+ "utdc" => {key => "KbAgl4", label => "Unreal Tournament: Dreamcast"},
+ "valknightswii" => {key => "N5Mf0P", label => "Valhalla Knights (Wii)"},
+ "vanguardbeta" => {key => "TorchQ", label => "Vanguard beta"},
+ "vanguardsoh" => {key => "QVrtku", label => "Vanguard Saga of Heroes"},
+ "velocitypc" => {key => "Qmx73k", label => "Velocity PC"},
+ "velocityps2" => {key => "Qmx73k", label => "Velocity PS2"},
+ "venomworld" => {key => "Jg43a1", label => "Venom World"},
+ "vietcong" => {key => "bq98mE", label => "Vietcong"},
+ "vietcong2" => {key => "zX2pq6", label => "Vietcong 2"},
+ "vietcong2d" => {key => "zX2pq6", label => "Vietcong 2 Demo"},
+ "vietcong2pd" => {key => "zX2pq6", label => "Vietcong 2 Public Demo"},
+ "vietcongd" => {key => "bq98mE", label => "Vietcong Demo"},
+ "vietkong" => {key => "bq98mE", label => "Vietkong"},
+ "vietnamso" => {key => "E8d3Bo", label => "Line of Sight: Vietnam"},
+ "vietnamsod" => {key => "y3Ed9q", label => "Line of Sight: Vietnam Demo"},
+ "viper" => {key => "SSzOWL", label => "Viper"},
+ "virtualpool3" => {key => "NA3vu0", label => "Virtual Pool 3"},
+ "virtuaten4wii" => {key => "UETpVJ", label => "Virtua Tennis 4 (Wii)"},
+ "virtuaten4wiiam" => {key => "UETpVJ", label => "Virtua Tennis 4 Automatch (Wii)"},
+ "voiceapp" => {key => "sD3GkC", label => "VoiceApp Voice SDK Test"},
+ "vtennisacewii" => {key => "ptSNgI", label => "Virtua Tennis: Ace (Wii)"},
+ "wosin" => {key => "Kd29DX", label => "Wages of Sin"},
+ "warcraft2bne" => {key => "gW5Hl4", label => "Warcraft 2"},
+ "warfronttp" => {key => "LTOTAa", label => "War Front: Turning Point"},
+ "warlordsb" => {key => "9gV5Hm", label => "Warlords Battlecry"},
+ "warlordsb2" => {key => "Gg7nLf", label => "Warlords Battlecry II"},
+ "warlordsb2d" => {key => "tKnYBL", label => "Warlords Battlecry II Dem"},
+ "warlordsdr" => {key => "exS6aj", label => "Warlords III: Dark Rising"},
+ "warmonger" => {key => "I1WnEQ", label => "Warmonger"},
+ "warnbriads" => {key => "mmOyeL", label => "Warnbria no Maho Kagaku (DS)"},
+ "warriorkings" => {key => "hCSCQM", label => "Warrior Kings"},
+ "waterloo" => {key => "CTCQMZ", label => "Waterloo"},
+ "wcpoker2pc" => {key => "t3Hd9q", label => "World Championship Poker 2 (PC)"},
+ "wcpokerpalps2" => {key => "t3Hd9q", label => "World Championship Poker PAL (PS2)"},
+ "wcpokerps2" => {key => "t3Hd9q", label => "World Championship Poker (PS2)"},
+ "wcpool2004pc" => {key => "ypQJss", label => "World Championship Pool 2004"},
+ "wcpool2004ps2" => {key => "g3J7w2", label => "World Championship Pool 2004 (PS2)"},
+ "wcpool2004ps2" => {key => "g3J7w2", label => "World Snooker Championship 2004 PS2"},
+ "wcsnkr2004pc" => {key => "DQZHBr", label => "World Championship Snooker 2004 (PC)"},
+ "wcsnkr2004ps2" => {key => "K3f39a", label => "World Championship Snooker 2004 (PS2)"},
+ "wcsnkr2005" => {key => "cPw49v", label => "World Championship Snooker 2005 (PC)"},
+ "wcsnkr2005" => {key => "cPw49v", label => "World Snooker Championship 2005"},
+ "wcsnkr2005ps2" => {key => "cPw49v", label => "World Championship Snooker 2005 PS2"},
+ "wcsnkr2005ps2" => {key => "cPw49v", label => "World Snooker Championship 2005 PS2"},
+ "weleplay09wii" => {key => "Eamkm6", label => "Winning Eleven PLAY MAKER 2009 (Wii)"},
+ "werewolf" => {key => "81zQQa", label => "Werewolf: The Apocalypse"},
+ "wh40kdow2crol" => {key => "BlTqbc", label => "Warhammer 40K - Dawn of War 2 - Chaos Rising"},
+ "wh40kdow2crolam" => {key => "BlTqbc", label => "Warhammer 40K - Dawn of War 2 - Chaos Rising"},
+ "wh40kp" => {key => "uJ8d3N", label => "Warhammer 40,000: Dawn of War Patch"},
+ "wh40kwap" => {key => "Ue9v3H", label => "Warhammer 40,000: Winter Assault Patch"},
+ "whamdowfr" => {key => "pXL838", label => "Warhammer 40,000: Dawn of War - Soulstorm"},
+ "whamdowfram" => {key => "pXL838", label => "Warhammer 40,000: Dawn of War - Final Reckoni"},
+ "whamdowfrb" => {key => "pXL838", label => "Warhammer 40,000: Dawn of War - Final Reckoni"},
+ "whamdowfrbam" => {key => "pXL838", label => "Warhammer 40,000: Dawn of War - Final Reckoni"},
+ "whammer40000" => {key => "uJ8d3N", label => "Warhammer 40,000: Dawn of War"},
+ "whammer40000" => {key => "uJ8d3N", label => "Warhammer 40000 Dawn of War"},
+ "whammer40000am" => {key => "uJ8d3N", label => "Warhammer 40,000: Dawn of War"},
+ "whammer40kb" => {key => "uJ8d3N", label => "Warhammer 40,000: Dawn of War Beta"},
+ "whammer40kbam" => {key => "uJ8d3N", label => "Warhammer 40,000: Dawn of War Beta (Automatch"},
+ "whammer40kdc" => {key => "Ue9v3H", label => "Warhammer 40,000: Dark Crusade"},
+ "whammer40kdcam" => {key => "Ue9v3H", label => "Warhammer 40,000: Dark Crusade Automatch"},
+ "whammer40kt" => {key => "uJ8d3N", label => "Warhammer 40000: Dawn of War test"},
+ "whammer40ktds" => {key => "9Tkwd4", label => "Warhammer 40,000 Tactics (DS)"},
+ "whammer40kwa" => {key => "Ue9v3H", label => "Warhammer 40,000: Winter Assault"},
+ "whammer40kwaam" => {key => "Ue9v3H", label => "Warhammer 40,000: Winter Assault (Automatch)"},
+ "whammermoc" => {key => "rnbkJp", label => "Warhammer: Mark of Chaos"},
+ "whammermocam" => {key => "rnbkJp", label => "Warhammer: Mark of Chaos Automatch"},
+ "whammermocbm" => {key => "EACMEZ", label => "Warhammer: Mark of Chaos - Battle March"},
+ "whammermocbmam" => {key => "EACMEZ", label => "Warhammer: Mark of Chaos - Battle March Autom"},
+ "whammermocbmd" => {key => "EACMEZ", label => "Warhammer: Mark of Chaos - Battle March Demo"},
+ "whammermocd" => {key => "rnbkJp", label => "Warhammer: Mark of Chaos Demo"},
+ "whammermocdam" => {key => "rnbkJp", label => "Warhammer: Mark of Chaos Demo Automatch"},
+ "whammermoct" => {key => "rnbkJp", label => "Warhammer: Mark of Chaos Test"},
+ "whammermoctam" => {key => "rnbkJp", label => "Warhammer: Mark of Chaos Test Automatch"},
+ "whammermok" => {key => "rnbkJp", label => "Warhammer: Mark of Chaos (OLD)"},
+ "whtacticspsp" => {key => "KcKyRP", label => "Warhammer 40,000: Tactics (PSP)"},
+ "whtacticspspam" => {key => "KcKyRP", label => "Warhammer 40,000: Tactics Automatch (PSP)"},
+ "wic" => {key => "mtjzlE", label => "World in Conflict Demo"},
+ "wicb" => {key => "SITsUf", label => "World in Conflict Beta"},
+ "wicd" => {key => "taMBOb", label => "World in Conflict Demo"},
+ "wiibombmanwii" => {key => "xx7Mvb", label => "Wii Bomberman / WiiWare Bomberman / Bomberman"},
+ "wiilinkwii" => {key => "Be3reo", label => "Wii Link (Wii)"},
+ "wiinat" => {key => "4Fuy9m", label => "Wii NAT Negotiation Testing"},
+ "wildwings" => {key => "PbNDFL", label => "Wild Wings"},
+ "wincircleds" => {key => "2ckCbe", label => "Winner's Circle (DS)"},
+ "winel10jpnwii" => {key => "1mJhT4", label => "Winning Eleven PLAY MAKER 2010 Japan Edition"},
+ "winel10jpnwiiam" => {key => "1mJhT4", label => "Winning Eleven PLAY MAKER 2010 Japan Edition"},
+ "winelev10wii" => {key => "cZzNkJ", label => "Winning Eleven Play Maker 2010 (Wii)"},
+ "winelev11wii" => {key => "uts5zc", label => "Winning Eleven PLAY MAKER 2011 (Wii)"},
+ "wingsofwar" => {key => "sWSqHB", label => "Wings of War"},
+ "wingsofward" => {key => "sWSqHB", label => "Wings of War Demo"},
+ "winters3nawii" => {key => "TJxCoW", label => "Winter Sports 3 NA (Wii)"},
+ "winters3nawiiam" => {key => "TJxCoW", label => "Winter Sports 3 NA Automatch (Wii)"},
+ "winx2010ds" => {key => "JP9RGe", label => "Winx Club Secret Diary 2010 (DS)"},
+ "witcher" => {key => "OaHhFk", label => "The Witcher"},
+ "wkingsb" => {key => "agV5Hm", label => "Warrior Kings Battles"},
+ "wkingsbd" => {key => "agV5Hm", label => "Warrior Kings Battles Demo"},
+ "wlclashpc" => {key => "qcU8MT", label => "War Leaders: Clash of Nations"},
+ "wlclashpc" => {key => "qcU8MT", label => "War Leaders: Clash of Nations (PC)"},
+ "wlclashpcam" => {key => "qcU8MT", label => "War Leaders: Clash of Nations Automatch (PC)"},
+ "wlclashpcd" => {key => "qcU8MT", label => "War Leaders: Clash of Nations Demo (PC)"},
+ "wmarkofchaos" => {key => "nGmBcN", label => "Warhammer Mark of Chaos"},
+ "wmarkofchaosd" => {key => "nGmBcN", label => "Warhammer Mark of Chaos Demo"},
+ "wmarkofchaosdam" => {key => "nGmBcN", label => "Warhammer Mark of Chaos Demo Automatch"},
+ "wofor" => {key => "mxw9Nu", label => "WOFOR: War on Terror"},
+ "woforam" => {key => "mxw9Nu", label => "WOFOR: War on Terror Automatch"},
+ "woford" => {key => "mxw9Nu", label => "WOFOR: War on Terror Demo"},
+ "wofordam" => {key => "mxw9Nu", label => "WOFOR: War on Terror Demo Automatch"},
+ "wofps2" => {key => "dF39h3", label => "Wheel of Fortune (PS2)"},
+ "woosc" => {key => "Y4nD9a", label => "World of Outlaws Sprint Cars"},
+ "wooscd" => {key => "Y4nD9a", label => "World of Outlaws Sprint Cars Demo"},
+ "wordjongds" => {key => "V6dC1l", label => "Word Jong - US (DS)"},
+ "wordjongeuds" => {key => "3rwTkL", label => "Wordjong EU (DS)"},
+ "wordjongFRds" => {key => "XAIqLK", label => "Word Jong - FR (DS)"},
+ "wordzap" => {key => "q7zfsD", label => "WordZap"},
+ "worldshiftpc" => {key => "7gBmF4", label => "WorldShift (PC)"},
+ "worldshiftpcam" => {key => "7gBmF4", label => "WorldShift Automatch (PC)"},
+ "worldshiftpcb" => {key => "7gBmF4", label => "WorldShift Beta (PC)"},
+ "worldshiftpcbam" => {key => "7gBmF4", label => "WorldShift Beta Automatch (PC)"},
+ "worldshiftpcd" => {key => "7gBmF4", label => "WorldShift Demo (PC)"},
+ "worms2" => {key => "IOrDfP", label => "Worms 2"},
+ "worms3" => {key => "fZDYBO", label => "Worms 3D"},
+ "worms4" => {key => "Bs28Kl", label => "Worms 4 Mayhem"},
+ "worms4d" => {key => "Bs28Kl", label => "Worms 4 Mayhem Demo"},
+ "wormsarm" => {key => "p2uPkK", label => "Worms Armageddon"},
+ "wormsasowii" => {key => "UeJRpQ", label => "Worms: A Space Oddity (Wii)"},
+ "wormsforts" => {key => "y3Gc8n", label => "Worms Forts"},
+ "wormsow2ds" => {key => "PHK0dR", label => "Worms Open Warfare 2 (DS)"},
+ "wormspsp" => {key => "mpCK9u", label => "Worms (PSP)"},
+ "wormspspam" => {key => "mpCK9u", label => "Worms Automatch (PSP)"},
+ "wormswiiware" => {key => "nQV5pT", label => "Worms (WiiWare)"},
+ "wormswiiwaream" => {key => "nQV5pT", label => "Worms Automatch (WiiWare)"},
+ "wosinmac" => {key => "yX02mQ", label => "Wages of Sin (Mac)"},
+ "wot" => {key => "RSSSpA", label => "Wheel of Time"},
+ "wotr" => {key => "e8Fc3n", label => "War of the Ring"},
+ "wotrb" => {key => "e8Fc3n", label => "War of the Ring Beta"},
+ "wptps2" => {key => "jL2aEz", label => "World Poker Tour PS2"},
+ "wptps2pal" => {key => "jL2aEz", label => "World Poker Tour PAL (PS2)"},
+ "wracing1" => {key => "t3Hs27", label => "World Racing 1"},
+ "wracing2" => {key => "hY39X0", label => "World Racing 2 (PC)"},
+ "wrcpc" => {key => "GeVTw8", label => "WRC (PC)"},
+ "wrcpcam" => {key => "GeVTw8", label => "WRC Automatch (PC)"},
+ "wrcpcd" => {key => "GeVTw8", label => "WRC Demo (PC)"},
+ "wrcps3" => {key => "e14AcM", label => "WRC (PS3)"},
+ "wrcps3am" => {key => "e14AcM", label => "WRC Automatch (PS3)"},
+ "wrcps3d" => {key => "e14AcM", label => "WRC Demo (PS3)"},
+ "wrldgoowii" => {key => "Nz4tSw", label => "World of Goo (WiiWare)"},
+ "wsc2007" => {key => "xKCMfK", label => "World Snooker Championship 2007"},
+ "wsc2007pc" => {key => "L6cr8f", label => "World Snooker Championship 2007 (PC)"},
+ "wsc2007ps2" => {key => "bpDHED", label => "World Snooker Championship 2007 (PS2)"},
+ "wsc2007ps3" => {key => "m2bcKK", label => "World Snooker Championship 2007 (PS3)"},
+ "wsoppc" => {key => "u3hK2C", label => "World Series of Poker"},
+ "wsoppc" => {key => "u3hK2C", label => "World Series of Poker (PC)"},
+ "wsoppcam" => {key => "u3hK2C", label => "World Series of Poker (PC) Automatch"},
+ "wsopps2" => {key => "u3hK2C", label => "World Series of Poker (PS2)"},
+ "wsopps2" => {key => "u3hK2C", label => "World Series of Poker PS2"},
+ "wsopps2am" => {key => "u3hK2C", label => "World Series of Poker (PS2) Automatch"},
+ "wsoppsp" => {key => "u3hK2C", label => "World Series of Poker (PSP)"},
+ "wsoppsp" => {key => "u3hK2C", label => "World Series of Poker PSP"},
+ "wsoppspam" => {key => "u3hK2C", label => "World Series of Poker (PSP, Automatch)"},
+ "WSWeleven07ds" => {key => "sb2kFV", label => "World Soccer Winning Eleven DS 2007 (DS)"},
+ "WSWelevenwii" => {key => "aFJW2D", label => "World Soccer Winning Eleven Wii (Wii)"},
+ "wtrwarfarewii" => {key => "R3zu4t", label => "Water Warfare (WiiWare)"},
+ "ww2btanks" => {key => "NcQeTO", label => "WWII Battle Tanks: T-34 vs Tiger"},
+ "ww2frontline" => {key => "blHjuM", label => "World War II: Frontline C"},
+ "wwkuzushiwii" => {key => "8EzbpJ", label => "SIMPLE THE Block Kuzushi (WiiWare)"},
+ "wwpuzzlewii" => {key => "lWG4l1", label => "Simple: The Number - Puzzle"},
+ "wz2100" => {key => "kD072v", label => "WarZone2100"},
+ "wz2100demo" => {key => "AGg7mM", label => "Warzone 2100 Demo"},
+ "xar" => {key => "N9gV5H", label => "Xtreme Air Racing"},
+ "xboxtunnel" => {key => "8dvSTO", label => "Xbox Tunnel Service"},
+ "xcomenforcer" => {key => "M3A2rK", label => "X-Com: Enforcer"},
+ "xenocellpc" => {key => "zPCFap", label => "srthe6w5iuh"},
+ "xenocellpc" => {key => "zPCFap", label => "Xenocell (PC)"},
+ "xenocellpcam" => {key => "zPCFap", label => "srthe6w5iuh Automatch"},
+ "xenocellpcam" => {key => "zPCFap", label => "Xenocell (PC) Automatch"},
+ "xmenleg2psp" => {key => "g3Hs9C", label => "X-Men: Legends 2 (PSP)"},
+ "xmenlegpc" => {key => "47uQsy", label => "X-Men Legends"},
+ "xmenlegpc" => {key => "47uQsy", label => "X-Men Legends PC"},
+ "xmenlegps2" => {key => "47uQsy", label => "X-Men Legends (PS2)"},
+ "xmenlegps2" => {key => "47uQsy", label => "X-Men Legends PS2"},
+ "xmenlegps2pal" => {key => "47uQsy", label => "X-Men Legends PAL (PS2)"},
+ "xmenlegps2pals" => {key => "47uQsy", label => "X-Men Legends PAL Spanish (PS2)"},
+ "xwingtie" => {key => "Lc8gW5", label => "X-Wing vs. Tie Fighter"},
+ "yakumands" => {key => "dNte7R", label => "Yakuman DS (DS)"},
+ "yakumanwii" => {key => "vcBUtC", label => "Yakuman Wii (WiiWare)"},
+ "yetisportswii" => {key => "9kZgSg", label => "Yetisports (Wii)"},
+ "yetisportswiiam" => {key => "9kZgSg", label => "Yetisports Automatch (Wii)"},
+ "ysstrategyds" => {key => "gq2bHQ", label => "Y's Strategy (DS)"},
+ "yugioh5dds" => {key => "lwG6md", label => "Yu-Gi-Oh 5Ds (DS)"},
+ "yugioh5dwii" => {key => "bTL9yI", label => "Yu-Gi-Oh! 5D's Duel Simulator (Wii)"},
+ "yugiohgx2ds" => {key => "1A1iB2", label => "Yu-Gi-OH! Duel Monsters GX2 (DS)"},
+ "yugiohWC07ds" => {key => "QgkE62", label => "Yu-Gi-Oh! Dual Monsters World Championship 20"},
+ "yugiohwc08ds" => {key => "X6i4ay", label => "Yu-Gi-Oh! World Championship 2008 (DS)"},
+ "yugiohwc10ds" => {key => "TuaRVH", label => "Yu-Gi-Oh! World Championship 2010 (DS)"},
+ "yugiohwc11ds" => {key => "7NFzQf", label => "Yu-Gi-Oh! World Championship 2011"},
+ "zax" => {key => "J3An3s", label => "Zax"},
+ "zdoom" => {key => "MIr0wW", label => "ZDoom"},
+ "zeroGds" => {key => "ViuPw7", label => "ZeroG (DS)"},
+ "zsteel" => {key => "4p2uPk", label => "Z: Steel Soldiers"},
+ "ZumaDeluxe" => {key => "bxYYnG", label => "Zuma Deluxe"},
+},
+
+);
+
+1;
diff --git a/gameserver/gameserver.pl b/gameserver/gameserver.pl
new file mode 100755
index 0000000..e86af7c
--- /dev/null
+++ b/gameserver/gameserver.pl
@@ -0,0 +1,94 @@
+#!/usr/bin/perl
+
+################################################################################
+# Simulate a gameserver
+# - send beacon
+# - respond to secure
+# - respond to status
+#
+################################################################################
+
+use strict;
+use warnings;
+use AnyEvent;
+use AnyEvent::Handle::UDP;
+use Socket qw( sockaddr_in inet_aton);
+use Data::Dumper 'Dumper';
+$|++;
+
+our %S;
+require "../common/supportedgames.pl";
+require "../common/auth.pl";
+require "../common/status.pl";
+
+# set game (note that properties can be set in "common/status.pl")
+my $gamename = &getGameName;
+my $port = 7778;
+
+# set masterserver
+my $masteraddress = "localhost";
+my $masterport = 27900;
+my $ma = sockaddr_in($masterport, inet_aton($masteraddress) );
+
+# parse label
+my $label = ( $S{game}->{lc $gamename}->{label} || $gamename );
+
+# start simulation
+print "Simulating [$label] gameserver on port $port.\n";
+
+# loop
+my $cv = AnyEvent->condvar;
+
+# start UDP server on $port
+my $udp_server; $udp_server = AnyEvent::Handle::UDP->new(
+ bind => ['0.0.0.0', $port],
+ on_recv => sub
+ {
+ # beacon address, handle, packed client address
+ my ($b, $c, $pa) = @_;
+
+ # parse and remove trailing newline, leading undef
+ chomp $b;
+ my @data = split /\\/, $b;
+
+ return if (scalar @data <= 1);
+ shift @data;
+
+ # if status
+ if ($data[0] =~ m/^(basic|info|rules|players|status|echo)$/ig)
+ {
+ $udp_server->push_send(&getResponse($data[0], $data[1] || ""), $pa)
+ }
+
+ # respond to possible secure
+ if ($b =~ m/(secure)/ig)
+ {
+ my %h;
+ my @a = split /\\/, ($b||"");
+ shift @a;
+ %h = (@a, (scalar @a % 2 == 1) ? "dummy" : () );
+
+ # calculate validate
+ my $validate = get_validate_string(
+ $S{game}->{$gamename}->{key},
+ ($h{secure}|| "wookie"),
+ int( $h{enctype} || 0)
+ );
+
+ $udp_server->push_send("\\validate\\".$validate, $pa)
+ }
+ }
+);
+
+# send out heartbeats
+my $timer = AnyEvent->timer (
+ after => 1,
+ interval => 10,
+ cb => sub {
+ $udp_server->push_send("\\heartbeat\\$port\\gamename\\$gamename", $ma);
+ },
+);
+
+$cv->recv;
+
+1;
diff --git a/other/getsecure.pl b/other/getsecure.pl
new file mode 100755
index 0000000..1228295
--- /dev/null
+++ b/other/getsecure.pl
@@ -0,0 +1,16 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+use Data::Dumper 'Dumper';
+$|++;
+
+our %S;
+require "../common/supportedgames.pl";
+require "../common/auth.pl";
+
+my $gamename = "ut";
+my $secure = "wookie",
+my $enctype = 0;
+
+print Dumper get_validate_string($S{game}->{$gamename}->{key}, $secure, $enctype);