1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License
9  * as published by the Free Software Foundation; either version 2
10  * of the License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
20  *
21  */
22 
23 #include "engines/game.h"
24 #include "common/gui_options.h"
25 #include "common/language.h"
26 
27 namespace Glk {
28 namespace ZCode {
29 
30 /**
31  * Game descriptor for ZCode games
32  */
33 struct FrotzGameDescription {
34 	const char *const _gameId;
35 	const char *const _extra;
36 	const char *const _md5;
37 	size_t _filesize;
38 	Common::Language _language;
39 	const char *const _guiOptions;
40 };
41 
42 /**
43  * Original games from Infocom
44  */
45 const PlainGameDescriptor INFOCOM_GAME_LIST[] = {
46 	// Infocom games
47 	{ "amfv", "A Mind Forever Voyaging" },
48 	{ "ballyhoo", "Ballyhoo" },
49 	{ "beyondzork", "Beyond Zork" },
50 	{ "borderzone", "Border Zone" },
51 	{ "bureaucracy", "Bureaucracy" },
52 	{ "cutthroats", "Cutthroats" },
53 	{ "deadline", "Deadline" },
54 	{ "enchanter", "Enchanter" },
55 	{ "hhgttg", "The Hitchhiker's Guide to the Galaxy" },
56 	{ "hollywoodhijinx", "Hollywood Hijinx" },
57 	{ "infidel", "Infidel" },
58 	{ "journey", "Journey" },
59 	{ "lgop", "Leather Goddesses of Phobos" },
60 	{ "infocomsampler1", "Infocom Sampler 1" },
61 	{ "infocomsampler2", "Infocom Sampler 2" },
62 	{ "lurkinghorror", "The Lurking Horror" },
63 	{ "milliways", "Milliways" },
64 	{ "minizork1", "Mini Zork I: The Great Underground Empire" },
65 	{ "moonmist", "Moonmist" },
66 	{ "nordbert", "Nord and Bert Couldn't Make Head or Tail of It" },
67 	{ "planetfall", "Planetfall" },
68 	{ "plunderedhearts", "Plundered Hearts" },
69 	{ "questforexcalibur", "Arthur: The Quest for Excalibur" },
70 	{ "seastalker", "Seastalker" },
71 	{ "sherlockriddle", "Sherlock: The Riddle of the Crown Jewels" },
72 	{ "shogun", "James Clavell's Shogun" },
73 	{ "sorcerer", "Sorcerer" },
74 	{ "spellbreaker", "Spellbreaker" },
75 	{ "starcross", "Starcross" },
76 	{ "stationfall", "Stationfall" },
77 	{ "suspect", "Suspect" },
78 	{ "suspended", "Suspended" },
79 	{ "trinity", "Trinity" },
80 	{ "wishbringer", "Wishbringer" },
81 	{ "thewitness", "The Witness" },
82 	{ "zork0", "Zork Zero: The Revenge of Megaboz" },
83 	{ "zork1", "Zork I: The Great Underground Empire" },
84 	{ "zork2", "Zork II: The Wizard of Frobozz" },
85 	{ "zork3", "Zork III: The Dungeon Master" },
86 	{ "ztuu", "Zork: The Undiscovered Underground" },
87 	{ nullptr, nullptr }
88 };
89 
90 /**
91  * All the other subsequent non-Infocom games using the format
92  */
93 const PlainGameDescriptor ZCODE_GAME_LIST[] = {
94 	{ "zcode", "Unknown Z-code game" },
95 
96 	// English games
97 	{ "404life",           "404 - Life not found" },
98 	{ "69105keys",         "69,105 Keys" },
99 	{ "7doctors",          "The Seven Doctors" },
100 	{ "905",               "9:05" },
101 	{ "9dancers",          "The Nine Dancers (Larsoft Adventure number 4)" },
102 	{ "9lives",            "9Lives" },
103 	{ "aasmasters",        "AAS Masters, in which all is revealed" },
104 	{ "absoluteworstgame", "The Absolute Worst IF Game in History" },
105 	{ "accuse",            "Accuse" },
106 	{ "acheton",           "Acheton" },
107 	{ "acorncourt",        "The Acorn Court" },
108 	{ "acrobat",           "The Mysterious Case of the Acrobat and His Peers" },
109 	{ "acrossstars",       "Across the Stars" },
110 	{ "acrossstarsclues",  "Across the Stars: Invisiclues" },
111 	{ "acrossthestars",    "Across the Stars" },
112 	{ "acrossthestarshints","Across the Stars: InvisiHints" },
113 	{ "actofmurder",       "An Act of Murder" },
114 	{ "addendum",          "Flawed Addendum" },
115 	{ "adoo",              "ADOO'S STINKY STORY" },
116 	{ "adv",               "Adventure, Colossal Cave" },
117 	{ "adv350",            "Adventure, 350 point Colossal Cave" },
118 	{ "adv440",            "Adventure II, 440 point Colossal Cave" },
119 	{ "adv550",            "Adventure 3, 550 point Colossal Cave" },
120 	{ "adv551",            "Adventure 6, 551 point Colossal Cave" },
121 	{ "adventurelobjan",   "Adventure (Lobjan translation)" },
122 	{ "adventuretime",     "Adventure Time" },
123 	{ "adverbum",          "Ad Verbum" },
124 	{ "advhoudini",        "The Adventures of Houdini" },
125 	{ "afflicted",         "Afflicted" },
126 	{ "affront",           "Annoyotron IV: Affrontotron" },
127 	{ "aisle",             "Aisle" },
128 	{ "alice",             "Alice Through the Looking Glass" },
129 	{ "allroads",          "All Roads" },
130 	{ "alongtheriver",     "Along the River" },
131 	{ "alpha",             "Journey to Alpha Centauri (In Real Time)" },
132 	{ "ambassadorsdaughter","The Ambassador''s Daughter, a Brief Romance" },
133 	{ "amish",             "Amishville" },
134 	{ "amiss",             "Amissville" },
135 	{ "anachronist",       "Anachronist" },
136 	{ "anchor",            "Anchorhead: an Interactive Tale of Lovecraftian Horror" },
137 	{ "andrewplotkin",     "Being Andrew Plotkin" },
138 	{ "andromedaawakeningz","Andromeda Awakening" },
139 	{ "andromedagenesis",  "Andromeda Genesis" },
140 	{ "anewlife",          "A New Life" },
141 	{ "animals",           "Animals 1.1" },
142 	{ "annoy",             "Annoyotron" },
143 	{ "anothergoddamnescape","Another Goddamn Escape the Locked Room Game" },
144 	{ "aotyrz",            "Attack of the Yeti Robot Zombies" },
145 	{ "aphasiaquest",      "Aphasia Quest" },
146 	{ "apocalypseclock",   "The Apocalypse Clock" },
147 	{ "appall",            "Appallatron: Annoyotron 3" },
148 	{ "aridandpale",       "Arid and Pale" },
149 	{ "asgard",            "The 12:54 to Asgard" },
150 	{ "asylum",            "Asylum" },
151 	{ "atomicheart",       "The Atomic Heart" },
152 	{ "atrocitron",        "Atrocitron, An Interactive Puzzlebox" },
153 	{ "ats",               "A Tight Spot" },
154 	{ "atwork",            "Danger! Adventurer At Work!" },
155 	{ "aug4",              "Augmented Fourth, an Interactive Performance" },
156 	{ "avon",              "Avon" },
157 	{ "awakening",         "The Awakening" },
158 	{ "awitl",             "A Week In The Life" },
159 	{ "ayac",              "Are You A Chef? An interactive ifMUD-saving" },
160 	{ "b2demo",            "Pick up the Phone Booth and Die, Part 2" },
161 	{ "b7snare",           "Snare, an interactive Blake's 7 adventure" },
162 	{ "babytree",          "Baby tree" },
163 	{ "backtowakeup",      "Back to WakeUp, a Backpacker Tale" },
164 	{ "backup",            "Backup, an Interactive System Failure" },
165 	{ "balances",          "Balances, An Interactive Short Story" },
166 	{ "baldersdeath",      "Balder's Death" },
167 	{ "ballerina102",      "Not Just an Ordinary Ballerina" },
168 	{ "balt24",            "Baltimore:24, An Exercise in Interactive Fiction" },
169 	{ "baluthar",          "BALUTHAR" },
170 	{ "bathtub",           "There's a Snake in the Bathtub, a Test of Patience" },
171 	{ "bazic",             "baZic version 0.1, Z-Machine BASIC implementation" },
172 	{ "beanstalker",       "The Bean Stalker" },
173 	{ "bear",              "A Bear's Night Out, an Interactive Children's Story" },
174 	{ "bedlam",            "Bedlam, An Interactive Preview" },
175 	{ "bedtime",           "Bed Time" },
176 	{ "beingsteve",        "Being Steve" },
177 	{ "bellclap",          "Bellclap" },
178 	{ "bellwater",         "Lord Bellwater's Secret" },
179 	{ "beneath",           "Beneath: a Transformation" },
180 	{ "beneathatransformation","BENEATH: a Transformation" },
181 	{ "betatester",        "Beta Tester" },
182 	{ "beyond",            "Beyond" },
183 	{ "bibleretold",       "The Bible Retold: The Bread and the Fishes" },
184 	{ "bibleretoldbread",  "The Bible Retold: The Bread and the Fishes" },
185 	{ "bibleretoldlostsheep","The Bible Retold: The Lost Sheep" },
186 	{ "bicon",             "BiCon, an Interactive Infatuation" },
187 	{ "bigscoop",          "The Big Scoop" },
188 	{ "biscuit",           "Biscuit, An Interactive Funeral" },
189 	{ "bishoes",           "Buried In Shoes" },
190 	{ "bj",                "Blow Job Drifter, An Interactive You Kno What" },
191 	{ "blacklily",         "The Black Lily" },
192 	{ "blair",             "Tales From The College Presents A Breath Of Fresh Blair" },
193 	{ "blink",             "Blink" },
194 	{ "bloodless",         "Bloodless on the Orient Express" },
195 	{ "bluechairs",        "Blue Chairs" },
196 	{ "blues",             "Tinseltown Blues: A quest for success in Hollyweird" },
197 	{ "bluesky",           "Blue Sky" },
198 	{ "bodybargain",       "Body Bargain" },
199 	{ "bofh",              "The Bastard Operator from Hell" },
200 	{ "bomber",            "The Mad Bomber" },
201 	{ "bookvol",           "Book and Volume" },
202 	{ "booth",             "Pick up the Phone Booth and Die" },
203 	{ "boothdye",          "Pick up the Phone Booth and Dye" },
204 	{ "brainnightguest",   "Brain of the Night Guest" },
205 	{ "brandx",            "BrandX" },
206 	{ "breakin",           "Break-In, an Interactive Burglary" },
207 	{ "briantimmons",      "The Surprising Case of Brian Timmons" },
208 	{ "bronze",            "Bronze, Inform 7 demonstration game" },
209 	{ "bryantcollection",  "The Bryant Collection, an Interactive Anthology" },
210 	{ "bse",               "BSE, An Interactive Epidemic" },
211 	{ "buccaneerscache",   "Buccaneer's Cache" },
212 	{ "building",          "Building" },
213 	{ "bureaucrocy",       "Bureaucrocy, a frustrating tale about paperwork" },
214 	{ "burglar",           "Burglar! A Learning Experience" },
215 	{ "burnkoran",         "Burn The Koran and Die" },
216 	{ "burnsnightsupper",  "Burns Night Supper" },
217 	{ "busted",            "Busted! A game of high cunning and low humor" },
218 	{ "byod",              "BYOD" },
219 	{ "byzantine",         "Byzantine Perspective" },
220 	{ "byzantineperspective", "Byzantine Perspective" },
221 	{ "cabal",             "The Cabal: The Interactive Illuminati" },
222 	{ "cacophony",         "Cacophony, an interactive stumbling" },
223 	{ "caffeination",      "Caffeination" },
224 	{ "calendar",          "Calendar, an Inform 7 abuse" },
225 	{ "calmmutemoving",    "Calm, Mute, Moving" },
226 	{ "calypso",           "Calypso" },
227 	{ "canamicah",         "Cana According To Micah" },
228 	{ "candy",             "Candy, An Attempt at Reliving Childhood" },
229 	{ "cars",              "ASCII Cars!!! A game of racing with the imagination" },
230 	{ "casting",           "Casting" },
231 	{ "castleadventure",   "Castle Adventure!" },
232 	{ "castleredprince",   "Castle of the Red Prince, an interactive land of darkness" },
233 	{ "catcherintherye",   "Catcher in the Rye" },
234 	{ "catseye",           "Cat's Eye, Miniventure #2" },
235 	{ "causality",         "Causality: The Search for Eternal Life" },
236 	{ "caveadventure",     "Cave Adventure" },
237 	{ "cavernofdoom",      "Zork: The Cavern of Doom" },
238 	{ "cavernsofchaos",    "Caverns of Chaos" },
239 	{ "cavetrip",          "The Spelunking Trip" },
240 	{ "ccake",             "Arthur Yahtzee: The Curse of Hell's Cheesecake" },
241 	{ "cdst",              "Carmen Devine: Supernatural Troubleshooter" },
242 	{ "cenricfamilycurse", "The Cenric Family Curse" },
243 	{ "changes",           "Changes" },
244 	{ "chaos",             "Chaos" },
245 	{ "chaosgame",         "Chaos" },
246 	{ "cheater",           "Cheater, An Annoying Adventure" },
247 	{ "cheesedoff",        "Cheesed Off!" },
248 	{ "cheeseshop",        "Cheeseshop" },
249 	{ "cheshirecat",       "Save the Cheshire Cat!" },
250 	{ "chico",             "Chico and I Ran" },
251 	{ "childsplay",        "Child's Play, A child, a toy, and a rival" },
252 	{ "chix",              "Chicks Dig Jerks" },
253 	{ "christminster",     "Christminster" },
254 	{ "chronicler0",       "The Chronicler" },
255 	{ "cia",               "CIA Adventure" },
256 	{ "claw",              "Wearing the Claw" },
257 	{ "cleanair",          "Clean Air" },
258 	{ "cliffedge",         "Edge of the Cliff" },
259 	{ "cockandbull",       "A Cock and Bull Story" },
260 	{ "codenamesilver",    "Code Name Silver Steel" },
261 	{ "cointoss",          "Coin toss" },
262 	{ "coke",              "Coke Is It!" },
263 	{ "coldiron",          "Cold Iron" },
264 	{ "colonists",         "Colonists" },
265 	{ "coloromc",          "Color of Milk Coffee" },
266 	{ "colourpink",        "The Colour Pink" },
267 	{ "comedyerrormessages","A Comedy of Error Messages" },
268 	{ "comp96",            "Yearly IF competitions unofficial 'front-end' game" },
269 	{ "conankill",         "Conan Kill Everything" },
270 	{ "conceptisproven",   "My Little Project Concept is Proven" },
271 	{ "condemned",         "Condemned" },
272 	{ "constraints",       "Constraints" },
273 	{ "cottage",           "Cottage" },
274 	{ "countdown1",        "Countdown 1 - The Body" },
275 	{ "countdown2",        "Countdown 2 - The Soul" },
276 	{ "countdown3",        "Countdown 3 - The Mind" },
277 	{ "cove",              "The Cove" },
278 	{ "crabhat",           "Oh No, Mr Crab Stole Your Hat!" },
279 	{ "creepydemo",        "A Day in the Creepy Life of Bob Demo" },
280 	{ "crimescene",        "A Crime Scene, a Short Story" },
281 	{ "criticalbreach",    "Critical Breach, an Escape Story" },
282 	{ "crobe",             "Crobe" },
283 	{ "cryptographer",     "Cryptographer" },
284 	{ "crystalpalace",     "The Crystal Palace" },
285 	{ "csbb",              "Crystal and Stone Beetle and Bone" },
286 	{ "ctdoom",            "Countdown to Doom" },
287 	{ "cubicle",           "In The Cubicle" },
288 	{ "curses",            "Curses, An Interactive Diversion" },
289 	{ "curves",            "Dangerous Curves" },
290 	{ "cycles",            "Vicious Cycles" },
291 	{ "cyclops",           "The Land of the Cyclops" },
292 	{ "damnatiomemoriae",  "Damnatio Memoriae" },
293 	{ "darkiss1",          "Darkiss! Wrath of the Vampire - Chapter 1: The Awakening" },
294 	{ "dashslapney",       "Dash Slapney, Patrol Leader" },
295 	{ "dayinlife",         "A Day in Life" },
296 	{ "dayishothitler",    "The Day I Shot..." },
297 	{ "dd4",               "Dutch Dapper IV: The Final Voyage" },
298 	{ "dday",              "D-Day" },
299 	{ "deadlineenchanter", "Deadline Enchanter" },
300 	{ "deadmansgrave",     "Dead Man's Grave: A Tell Don't Show Mystery" },
301 	{ "deadmeat",          "Dead Meat in the Pit" },
302 	{ "deadpavane",        "Dead Pavane for a Princess" },
303 	{ "deadreckoning",     "Dead Reckoning" },
304 	{ "deadsville",        "Deadsville" },
305 	{ "death",             "Death to my Enemies" },
306 	{ "deathoffthecuffz",  "Death Off The Cuff" },
307 	{ "debate",            "Debate" },
308 	{ "deephome",          "Deephome" },
309 	{ "degeneracy",        "Degeneracy" },
310 	{ "dejavuz",           "Deja Vu" },
311 	{ "deliciousbreakfast","Delicious Breakfast" },
312 	{ "delightfulwallpaper","Delightful Wallpaper" },
313 	{ "delusions",         "Delusions" },
314 	{ "detective",         "Detective" },
315 	{ "detention",         "Detention, an attempt to escape from school" },
316 	{ "devildoit",         "The Devil Made Me Do It" },
317 	{ "devours",           "All Things Devours" },
318 	{ "dewdrops",          "Within a Wreath of Dewdrops" },
319 	{ "djinni",            "The Djinni Chronicles \"Undercurrents of Manipulation\"" },
320 	{ "doghouse",          "The Dog/House" },
321 	{ "dogslife",          "It's a Dog's Life" },
322 	{ "domicile",          "Domicile" },
323 	{ "dontgo",            "Don't Go" },
324 	{ "dontpeeyourself",   "Don't Pee Yourself!" },
325 	{ "dontpushthemailbox","Don't Push The Mailbox" },
326 	{ "dotd",              "Dawn of the Demon" },
327 	{ "downthematrix",     "Down The Matrix" },
328 	{ "downtowntokyo",     "Downtown Tokyo Present Day" },
329 	{ "dpod",              "Dracula - Prince of Darkness" },
330 	{ "dracula1",          "Dracula: Part 1, The First Night" },
331 	{ "dracula2",          "Dracula: Part 2, The Arrival" },
332 	{ "draculascrypt",     "Dracula's Underground Crypt" },
333 	{ "dragon",            "Dragon Adventure" },
334 	{ "dragonflies",       "Dragon Flies Like Labradorite" },
335 	{ "dragontroll",       "The Dragon and the Troll" },
336 	{ "dreamcorruptor",    "Corrupter of Dreams" },
337 	{ "dreamhold",         "The Dreamhold" },
338 	{ "dreamtooreal",      "A Dream Too Real" },
339 	{ "drearylands",       "Dreary Lands" },
340 	{ "drego",             "Dr Ego and the egg of ManToomba" },
341 	{ "dual",              "Dual Transform" },
342 	{ "duelinsnow",        "The Duel in the Snow" },
343 	{ "duelthatspanned",   "The Duel that Spanned the Ages" },
344 	{ "dumont",            "Dr. Dumont's Wild P.A.R.T.I" },
345 	{ "eas",               "Earth And Sky: Episode 1" },
346 	{ "eastgrovehills",    "East Grove Hills" },
347 	{ "edifice",           "The Edifice" },
348 	{ "eduardseminarist",  "Eduard the Seminarist" },
349 	{ "egyptianwalking",   "Egyptian Walking Simulator" },
350 	{ "elephants",         "When I Was Shot By Elephants III" },
351 	{ "eleven",            "Film at Eleven" },
352 	{ "eliza",             "Eliza" },
353 	{ "emptyroom",         "The Empty Room" },
354 	{ "enemies",           "Enemies" },
355 	{ "enigma",            "Enimga" },
356 	{ "entangled",         "Entangled" },
357 	{ "enterprise",        "The Enterprise Incidents" },
358 	{ "entropy",           "Entropy" },
359 	{ "epyk",              "Eypk" },
360 	{ "erden",             "Travels in the Land of Erden: In Quest of the Adventure" },
361 	{ "eric",              "Eric The Power-Mad Dungeon Master" },
362 	{ "eruption",          "Eruption" },
363 	{ "escape",            "Escape!" },
364 	{ "escaperemember",    "An Escape To Remember" },
365 	{ "eurydice",          "Eurydice" },
366 	{ "f209",              "Apartment 209" },
367 	{ "fable",             "A Fable" },
368 	{ "faculty",           "The Care and Feeding of Adjuncts" },
369 	{ "failsafe",          "FailSafe" },
370 	{ "fairyland",         "Fairyland" },
371 	{ "farm",              "The Farmer's Daughter" },
372 	{ "fff",               "Fox, Fowl and Feed" },
373 	{ "figaro",            "Figaro" },
374 	{ "fightorflight",     "Fight or Flight" },
375 	{ "figueres",          "Figueres in my Basement" },
376 	{ "finalselection",    "Final Selection" },
377 	{ "findesick",         "Fin de sickleburg" },
378 	{ "findthebed",        "Find the Bed" },
379 	{ "finetuned",         "Fine-Tuned" },
380 	{ "fingertipsfriend",  "Fingertips: I Found a New Friend" },
381 	{ "fingertipsmilk",    "Fingertips: Please Pass the Milk Please" },
382 	{ "firstday",          "The First Day of My New Life" },
383 	{ "fishbowl",          "Fish Bowl" },
384 	{ "fmvpoker",          "Frobozz Magic Video Poker" },
385 	{ "forestdemo",        "Forest Demo" },
386 	{ "forgottengirls",    "The Forgotten Girls" },
387 	{ "fork",              "Fork: The Great Underground Dining Room" },
388 	{ "forms",             "Of Forms Unknown" },
389 	{ "foxfowl",           "FOX, FOWL AND FEED" },
390 	{ "fracture",          "Fractured Metamorphoses (Example Version)" },
391 	{ "fragileshells",     "Fragile Shells" },
392 	{ "frankie",           "Frankenstein Adventure" },
393 	{ "freedom",           "Freedom" },
394 	{ "freefall",          "Free Fall" },
395 	{ "frobozzi",          "The Encyclopedia Frobozzica (Abridged Edition)" },
396 	{ "frozen",            "Frozen: A Night at the Lab" },
397 	{ "ftaegea",           "Fort Aegea" },
398 	{ "furtherz",          "further" },
399 	{ "futuregame",        "FutureGame" },
400 	{ "fyleet",            "Fyleet" },
401 	{ "ga",                "Geocaching Adventure - GC3JJ9C - Cryptic Puzzle #6" },
402 	{ "galatea",           "Galatea" },
403 	{ "gameproducer",      "Game Producer!" },
404 	{ "gamer",             "Gamer: Digital Limbo" },
405 	{ "gamlet",            "Gamlet" },
406 	{ "gardening",         "Gardening for Beginners" },
407 	{ "garliccage",        "The Garlic Cage, Episode I" },
408 	{ "gatoron",           "GATOR-ON, Friend to Wetlands!" },
409 	{ "gaucho",            "Gaucho" },
410 	{ "gd",                "Goodbye Doggy" },
411 	{ "geb",               "GOOSE, EGG, BADGER" },
412 	{ "geist",             "Geist" },
413 	{ "gerbilriot",        "Gerbil Riot" },
414 	{ "ghost",             "The Ghost Train" },
415 	{ "ghostmountain",     "Ghost Mountain" },
416 	{ "glass",             "Glass, a fractured fairy tale" },
417 	{ "gleamingtheverb",   "Gleaming the Verb" },
418 	{ "glik1",             "Glik part 1: Undead Menace" },
419 	{ "gloriousrevolution","The People's Glorious Revolutionary Text Adventure Game" },
420 	{ "gnuzoo",            "Gnu in the Zoo" },
421 	{ "godot",             "Looking For Godot" },
422 	{ "goldilocks",        "Goldilocks is a Fox!" },
423 	{ "golf",              "Textfire Golf" },
424 	{ "gostak",            "The Gostak" },
425 	{ "gourmet",           "Gourmet" },
426 	{ "gourmetgaffe",      "Gourmet Gaffe" },
427 	{ "gowest",            "Go West" },
428 	{ "grandquest",        "The Grand Quest" },
429 	{ "greatpancake",      "The Great Pancake Detectives - Case #27" },
430 	{ "greatxavio",        "The Great Xavio" },
431 	{ "greenrain",         "A Green Rain" },
432 	{ "grief",             "Grief" },
433 	{ "growingup",         "Growing Up" },
434 	{ "grue",              "GRUE" },
435 	{ "guard",             "Guard Duty" },
436 	{ "guess",             "Guess The Verb!" },
437 	{ "guestreet",         "Life on Gue Street" },
438 	{ "gumshoe",           "Gumshoe" },
439 	{ "gussdeath",         "Guss's Death" },
440 	{ "halloweve",         "Hallow Eve" },
441 	{ "hamhouse",          "In the House of Professor Evil: The HAM HOUSE" },
442 	{ "hamil",             "Hamil" },
443 	{ "hangar22",          "Hangar 22" },
444 	{ "happyeverafter",    "Happy Ever After" },
445 	{ "hauntedhouse",      "Haunted House" },
446 	{ "hauntings",         "Hauntings" },
447 	{ "heated",            "Heated" },
448 	{ "hedge",             "Hedge" },
449 	{ "heist",             "Heist: The Crime of the Century" },
450 	{ "heliopause",        "Hoist Sail for the Heliopause and Home" },
451 	{ "hell0",             "Hell: A Comedy of Errors" },
452 	{ "hellosword",        "Hello Sword: The journey" },
453 	{ "hellsbasement",     "Hell's Basement" },
454 	{ "helpcollides",      "When Help Collides: The Wreck of the H.M.S. Snark" },
455 	{ "henribeauchamp",    "The Gallery of Henri Beauchamp" },
456 	{ "heroes",            "Heroes" },
457 	{ "heroinesmantle",    "Heroine's Mantle" },
458 	{ "hiddennazi",        "The Game Formerly Known as Hidden Nazi Mode" },
459 	{ "hiddenverbiage",    "Hidden Verbiage" },
460 	{ "hidepachyderm",     "Hide a pachyderm!" },
461 	{ "hipponewyear",      "And A Hippo New Year" },
462 	{ "historyrepeating",  "History Repeating" },
463 	{ "hlainform",         "HLA Inform: A Classic Quest" },
464 	{ "hobbittruestory",   "The Hobbit - The True Story" },
465 	{ "home",              "Home" },
466 	{ "homecoming",        "Homecoming" },
467 	{ "hoosegow",          "Hoosegow, a Wild West Wreck" },
468 	{ "horriblepyramid",   "The Horrible Pyramid" },
469 	{ "house",             "The House" },
470 	{ "housedream",        "House of Dream of Moon" },
471 	{ "housekey1",         "Housekey, Part I" },
472 	{ "houseoffear",       "The House of Fear" },
473 	{ "hummingbird",       "Flight of the Hummingbird" },
474 	{ "humongouscave",     "Adventure in Humongous Cave" },
475 	{ "humongouscavehints","Humongous Cave Hints" },
476 	{ "hunterdark",        "Hunter, in Darkness" },
477 	{ "hyperrpg",          "Hyper RPG Game!" },
478 	{ "i0",                "I-0: the \"jailbait on the interstate\" game" },
479 	{ "ibo",               "Ibo" },
480 	{ "icebreaker",        "Icebreaker" },
481 	{ "iceprincess",       "The Ice Princess" },
482 	{ "iceweb",            "Iceweb" },
483 	{ "identity",          "Identity" },
484 	{ "idthief",           "IDENTITY THIEF" },
485 	{ "ifaquarium",        "IF Aquarium" },
486 	{ "ifplayer",          "Interactive Fiction Player" },
487 	{ "ifquake",           "Text adventure Quake Level 1" },
488 	{ "ifwhispers5",       "IF Whispers 5" },
489 	{ "ill",               "I'll" },
490 	{ "imiagination",      "Imiagination" },
491 	{ "inamanor",          "In a Manor of Speaking" },
492 	{ "inevita",           "Inevitable" },
493 	{ "informatory",       "Informatory" },
494 	{ "informschool",      "Inform School" },
495 	{ "inhumane",          "Inhumane: An Infralogic Massacre" },
496 	{ "insidewoman",       "Inside Woman" },
497 	{ "insight",           "Insight" },
498 	{ "intangible",        "Intangible" },
499 	{ "interface",         "Interface" },
500 	{ "internaldocuments", "INTERNAL DOCUMENTS" },
501 	{ "internalvigilance", "Internal Vigilance" },
502 	{ "interviewrockstar", "Interview with a Rock Star" },
503 	{ "intruder",          "Intruder - Interactive Fiction: A Burglary" },
504 	{ "invisibleadv",      "The Believable Adventures of an Invisible Man" },
505 	{ "invisibleman",      "The Believable Adventures of an Invisible Man" },
506 	{ "iraqiinvasion",     "Iraqi Invasion: A Text Misadventure" },
507 	{ "island",            "The Island" },
508 	{ "islandsfaraway",    "Islands Far Away" },
509 	{ "jackmills",         "My Name is Jack Mills" },
510 	{ "jane",              "Jane" },
511 	{ "janitor",           "Janitor" },
512 	{ "jetblue",           "Jet-Blue" },
513 	{ "jewelofknowledge",  "The Jewel of Knowledge" },
514 	{ "jigsaw",            "Jigsaw, An Interactive History" },
515 	{ "jigsawrules",       "Jigsaw: Rules and Footnotes" },
516 	{ "juicehead",         "Juicehead, an interactive binge" },
517 	{ "justanotherday",    "Just Another Day" },
518 	{ "karn",              "Return to Karn" },
519 	{ "kazooist",          "The Kazooist" },
520 	{ "keepingdido",       "Keeping Dido" },
521 	{ "keepsake",          "Keepsake" },
522 	{ "kentishplover",     "Kentish Plover" },
523 	{ "kidnapsea",         "Kidnapped - On the Sea" },
524 	{ "kierkegaardsspider","Kierkegaard's Spider" },
525 	{ "kiiwii",            "Kii!Wii! A tiny friend to brighten your day" },
526 	{ "killingthedoctor",  "Killing the Doctor" },
527 	{ "kirby",             "The X-Child, Kevin Johnson Residence Hall Saga 2" },
528 	{ "kitten",            "robotfindskitten" },
529 	{ "koan",              "KOAN" },
530 	{ "kooku",             "Kook U" },
531 	{ "labyrinth",         "Labyrinth" },
532 	{ "lackofvision",      "Lack of Vision" },
533 	{ "lambs",             "Silence of the Lambs" },
534 	{ "lambs2",            "Silence of the Lambs 2" },
535 	{ "lardo",             "THE FAT LARDO AND THE RUBBER DUCKY" },
536 	{ "largemachine",      "Large Machine" },
537 	{ "lash",              "Local Asynchronous Satellite Hookup" },
538 	{ "lastdayofsummer",   "Last Day of Summer" },
539 	{ "ldodoom",           "Last Days of Doom" },
540 	{ "leaptime",          "Leap Time" },
541 	{ "lecture",           "Lecture Feature" },
542 	{ "legion",            "Legion" },
543 	{ "lex",               "LeX" },
544 	{ "librarian",         "Life of A Librarian" },
545 	{ "libraryfront",      "All Quiet on the Library Front" },
546 	{ "lifeordeath",       "Life or Death" },
547 	{ "limp",              "Limp" },
548 	{ "lionskin",          "In the Skin of a Lion Quest: Caravaggio's Journey" },
549 	{ "lists",             "Lists and Lists" },
550 	{ "livejoseph",        "LiveJoseph" },
551 	{ "llr3",              "A Little Like Rogue" },
552 	{ "lmstvg",            "LMS The Video Game" },
553 	{ "lookingtothesky",   "Looking to the Sky" },
554 	{ "lostpigandplace",   "Lost Pig And Place Under Ground" },
555 	{ "lostpig",           "Lost Pig" },
556 	{ "lostsheep",         "The Bible Retold: The Lost Sheep" },
557 	{ "lostspellmaker",    "The Lost Spellmaker" },
558 	{ "ludicorp",          "The Ludicorp Mystery" },
559 	{ "lunarbase1",        "Lunar Base 1" },
560 	{ "madamspider",       "Madam Spider's Web" },
561 	{ "magicmuffin",       "Magic Muffin - The Desert" },
562 	{ "magictoyshop",      "The Magic Toyshop" },
563 	{ "makeitgood",        "Make it Good" },
564 	{ "manalive1",         "MANALIVE I - ENIGMA" },
565 	{ "manalive2",         "MANALIVE II" },
566 	{ "mansion",           "Mansion" },
567 	{ "martyquest",        "Back to the Future - Marty Quest: an adventure through time" },
568 	{ "masquerade",        "Masquerade" },
569 	{ "medusa",            "Medusa, NPC Conversations Example" },
570 	{ "mercurytrucking",   "The Mercury Trucking Company" },
571 	{ "mercy",             "Mercy" },
572 	{ "metamorphoses",     "Metamorphoses" },
573 	{ "mhpquest",          "Quest for the Magic Healing Plant" },
574 	{ "midpoints",         "Midpoints" },
575 	{ "mimesis",           "Sins Against Mimesis" },
576 	{ "mindelectric",      "The Mind Electric" },
577 	{ "mines",             "Mines" },
578 	{ "mingsheng",         "MingSheng" },
579 	{ "minimalistgame",    "The Minimalist Game" },
580 	{ "minionunderworld",  "Bobby T. Minion in \"Escape from the Underworld\"" },
581 	{ "misdirection",      "The Act Of Misdirection" },
582 	{ "missinggrandpa",    "Missing Grandpa: Lost in Time" },
583 	{ "mite",              "Mite" },
584 	{ "mobius",            "Möbius" },
585 	{ "monstermaker",      "Monster Maker" },
586 	{ "monzasphantom",     "Monza's Phantom" },
587 	{ "moonglow",          "Moonglow, Miniventure #1" },
588 	{ "moonlittower",      "The Moonlit Tower" },
589 	{ "moonshaped",        "Moon-Shaped" },
590 	{ "moonwrecked",       "Moonwrecked" },
591 	{ "more",              "More" },
592 	{ "mortlakemanor",     "Mortlake Manor" },
593 	{ "motherloose",       "Mother Loose" },
594 	{ "mountain",          "Mountain, an Interactive Expedition" },
595 	{ "mousequest",        "Mouse Quest Chapter 1 - The Arrival of Winter" },
596 	{ "mrp",               "The Story of Mr. P." },
597 	{ "mst3k1",            "Detective, An Interactive MiSTing (Mystery Science Theater 3000)" },
598 	{ "mst3k2",            "A Fable, interactive MiSTing-up of \"A Fable\"" },
599 	{ "muffinquest",       "The Quest for the Magic Muffin" },
600 	{ "muffinquest3",      "Quest for the Magic Bagel...Err Muffin 3" },
601 	{ "mulldoon",          "The Mulldoon Legacy" },
602 	{ "mulldoonmurders",   "The Mulldoon Murders" },
603 	{ "murdac",            "Murdac" },
604 	{ "murderaeroclub",    "Murder at the Aero Club" },
605 	{ "murdererleft",      "What The Murderer Had Left" },
606 	{ "murphyslaw",        "Murphy's Law" },
607 	{ "muse",              "Muse: An Autumn Romance" },
608 	{ "musician",          "The Musician" },
609 	{ "myangel",           "My Angel" },
610 	{ "mylastduchess",     "My Last Duchess" },
611 	{ "mythtale",          "MythTale" },
612 	{ "nameless",          "Endless, Nameless" },
613 	{ "nascarexperience",  "The Realistic Nascar eXperience" },
614 	{ "nautilisia",        "Nautilisia" },
615 	{ "nemeanlion",        "The Nemean Lion: another anonymous joke game" },
616 	{ "neonnirvana",       "NEON NIRVANA" },
617 	{ "neverplayed",       "So, You've Never Played a Text Adventure Before, Huh?" },
618 	{ "newday",            "A New Day" },
619 	{ "nidus",             "Nidus" },
620 	{ "nightbunnies",      "The Night of the Vampire Bunnies" },
621 	{ "nightchristmas",    "An Abbreviated Night Before Christmas" },
622 	{ "nightcomputer",     "Night at the Computer Center" },
623 	{ "nihilism",          "The Abyss" },
624 	{ "ninepoints",        "Nine Points" },
625 	{ "ninjasfate",        "Ninja's Fate" },
626 	{ "njag",              "Not Just A Game" },
627 	{ "njag2",             "Not Just A Game 2" },
628 	{ "noroom",            "No Room" },
629 	{ "northnorth",        "The Northnorth Passage" },
630 	{ "notinvenice",       "Not in Venice" },
631 	{ "nudistsgonewild",   "Nudists Gone Wild" },
632 	{ "oad",               "Only After Dark" },
633 	{ "oceantower",        "Love, Hate and the Mysterious Ocean Tower" },
634 	{ "odieus",            "Odieus's Quest for the Magic Flingshot (Beta)" },
635 	{ "ogisoas",           "One Game in Search of a Story" },
636 	{ "omniquest",         "Omniquest" },
637 	{ "onegirl",           "One Girl" },
638 	{ "onoptimism",        "On Optimism" },
639 	{ "onyourback",        "On Your Back" },
640 	{ "openingnight",      "Opening Night" },
641 	{ "order00",           "Order" },
642 	{ "orevore",           "Orevore Courier" },
643 	{ "orion",             "The Orion Agenda" },
644 	{ "ottumwa",           "PDFA Ottumwa" },
645 	{ "outofthepit",       "Out of the Pit" },
646 	{ "packrat",           "Packrat" },
647 	{ "paddlingmania",     "Total Paddling Mania" },
648 	{ "paint",             "Paint and Corners" },
649 	{ "palebluelight",     "Pale Blue Light" },
650 	{ "paperbagprincess",  "The Paper Bag Princess" },
651 	{ "paperchase",        "Paper Chase" },
652 	{ "papermoon",         "A Paper Moon" },
653 	{ "parallel",          "Parallel" },
654 	{ "paranoia",          "Paranoia" },
655 	{ "parc",              "Parc" },
656 	{ "pasdedeux",         "Pas De Deux" },
657 	{ "pathfinder",        "PATHFINDER" },
658 	{ "pathway",           "Pathway to Destruction" },
659 	{ "peacock",           "Not Made With Hands" },
660 	{ "penandpaint",       "Pen and Paint" },
661 	{ "pentari",           "Pentari" },
662 	{ "penury",            "The Algophilists' Penury" },
663 	{ "perilousmagic",     "Perilous Magic" },
664 	{ "perrysworld",       "Perry's World" },
665 	{ "pets",              "Pets" },
666 	{ "pfrank",            "PROFESSOR FRANK" },
667 	{ "phantomcaverns",    "Phantom: Caverns of the killer" },
668 	{ "philosophersstone", "The Quest for the Philosopher's Stone" },
669 	{ "phlegm",            "Phlegm" },
670 	{ "photographportrait","Photograph, a Portrait of Reflection" },
671 	{ "photograph",        "PHOTOGRAPH" },
672 	{ "photopia",          "Photopia" },
673 	{ "piece",             "Piece of Mind" },
674 	{ "pigpancake",        "Pigpancake" },
675 	{ "piracy2",           "Piracy 2.0 - A Text Adventure in Space" },
676 	{ "piraterailroad",    "Pirate Railroad" },
677 	{ "playtorn",          "Chronicle Play Torn" },
678 	{ "polendina",         "Polendina" },
679 	{ "praser5",           "Praser 5" },
680 	{ "pressedon",         "I pressed on, being chased by a stapler with my name on it" },
681 	{ "priceoffreedom",    "The Price of Freedom" },
682 	{ "primer",            "Primer" },
683 	{ "primrose",          "The Primrose Path" },
684 	{ "prize",             "The Prize" },
685 	{ "probing",           "Offensive Probing" },
686 	{ "promoted",          "Promoted!" },
687 	{ "psycheslament",     "Psyche's Lament" },
688 	{ "puerto",            "The board game Puerto Rico" },
689 	{ "punkpoints",        "Punk Points" },
690 	{ "puppetman",         "The Puppet-Man (Larsoft Adventure number 5)" },
691 	{ "putpbaa",           "Pick Up the Phone Booth and Aisle" },
692 	{ "pytho",             "Pytho's Mask" },
693 	{ "quidditch1954",     "The Quidditch Final of 1954" },
694 	{ "quietevening",      "A Quiet Evening at Home" },
695 	{ "rachaelbadday",     "Rachel has a bad day" },
696 	{ "ralph",             "Ralph, An Interactive Sniffing" },
697 	{ "rameses",           "Rameses, a Tale of Heroes" },
698 	{ "ramonandjonathan",  "Ramón and Jonathan" },
699 	{ "rans",              "RANS, an interworld progress" },
700 	{ "ranshints",         "RANS Hints" },
701 	{ "readinginmay",      "A Reading in May" },
702 	{ "reddex",            "Reddex" },
703 	{ "redmoonz",          "Red Moon" },
704 	{ "relief",            "The Hunt For Relief" },
705 	{ "rentaspy",          "Rent-A-Spy" },
706 	{ "reorsbushcave",     "Reor's Bush-Cave (The Sprout Pouch pt 4)" },
707 	{ "reser",             "Rock'Em Sock'Em Robots" },
708 	{ "resident",          "The Resident" },
709 	{ "retrofatale",       "Retro Fatale" },
710 	{ "revenger",          "Revenger" },
711 	{ "reverb",            "Reverberations" },
712 	{ "reverzi",           "Reverzi" },
713 	{ "ribbons",           "Ribbons" },
714 	{ "risenecropolis",    "Rise of the Necropolis" },
715 	{ "risorg",            "Risorgimento Represso" },
716 	{ "riverside",         "Riverside" },
717 	{ "robotempire",       "Holy Robot Empire" },
718 	{ "robots",            "Robots - Another Abuse of the Z-Machine" },
719 	{ "rogue",             "zRogue" },
720 	{ "roomserial",        "Room Serial, an escape game" },
721 	{ "rota",              "The Reliques of Tolti-Aph" },
722 	{ "rpn",               "RPN" },
723 	{ "rtdoom",            "Return to Doom" },
724 	{ "ruins",             "Ruins" },
725 	{ "samegame",          "SameGame, another episode in the Z-Machine abuse saga" },
726 	{ "samhain",           "Samhain: Pick Up The Pumpkin and KILL" },
727 	{ "samuelgregor",      "The Case of Samuel Gregor" },
728 	{ "sanddancer",        "Sand-dancer" },
729 	{ "sangraal",          "Sangraal" },
730 	{ "santaland",         "Escape from Santaland" },
731 	{ "santassleighride",  "Santa's Sleigh Ride" },
732 	{ "saveprinceton",     "Save Princeton" },
733 	{ "savoirfaire",       "Savoir-Faire" },
734 	{ "scald",             "Scald" },
735 	{ "schooldays",        "Schooldays" },
736 	{ "scopa",             "Scopa, a graphical (Z-code V6) card game" },
737 	{ "screen",            "Screen" },
738 	{ "seeksorrow",        "Starry Seeksorrow" },
739 	{ "sfiction",          "Speculative Fiction: Beginner's Lessons" },
740 	{ "shade",             "Shade" },
741 	{ "shadowgatez",       "Shadowgate" },
742 	{ "shadowofmemories",  "Shadow of Memories" },
743 	{ "shadowsoldiers",    "Shadow Soldiers" },
744 	{ "shallow",           "Shallow" },
745 	{ "shamulet",          "Scary House Amulet" },
746 	{ "sheepcrossing",     "Sheep Crossing" },
747 	{ "sherbet",           "The Meteor, the Stone and a Long Glass of Sherbet" },
748 	{ "sherlock1",         "Sherlock gamebook #1: Murder at the Diogenes Club" },
749 	{ "sherlock2",         "Sherlock gamebook #2: The Black River Emerald" },
750 	{ "sherlock3",         "Sherlock gamebook #3: Death at Appledore Towers" },
751 	{ "sherlock4",         "Sherlock gamebook #4: The Crown vs Dr. Watson" },
752 	{ "shipofwhimsy",      "Ship of Whimsy" },
753 	{ "shrapnel",          "Shrapnel" },
754 	{ "siliconcastles",    "Silicon Castles" },
755 	{ "simpletheft2",      "A Simple Theft 2: A Simple Theftier" },
756 	{ "sisyphus",          "Sisyphus" },
757 	{ "sixgrayrats",       "Six Gray Rats Crawl Up The Pillow" },
758 	{ "slackerx",          "Slacker X" },
759 	{ "sleepcycle",        "Sleep Cycle" },
760 	{ "slouchingbedlam",   "Slouching Towards Bedlam" },
761 	{ "smallroom",         "Trapped in a Small Room" },
762 	{ "snacktime",         "Snack Time!" },
763 	{ "snafufun",          "SNAFUFUN" },
764 	{ "snatches",          "SNATCHES" },
765 	{ "snowquest",         "Snowquest" },
766 	{ "soa",               "Son of a..." },
767 	{ "sofar",             "So Far, An Interactive Catharsis" },
768 	{ "softporn",          "Softporn Adventure" },
769 	{ "solitary",          "Solitary" },
770 	{ "somewhere",         "Somewhere" },
771 	{ "soreality",         "So Reality" },
772 	{ "spaceinvaderz",     "Space InvaderZ" },
773 	{ "spacestation",      "Space Station: based on Planetfall example transcript" },
774 	{ "spadventure",       "SpAdventure" },
775 	{ "spelunkersquest",   "Spelunker's Quest" },
776 	{ "spiderandweb",      "Spider And Web" },
777 	{ "spiral",            "Spiral" },
778 	{ "spiritwrak",        "SpiritWrak" },
779 	{ "splashdown",        "SPLASHDOWN" },
780 	{ "sporkery1",         "Sporkery 1: There Will Be Sporking" },
781 	{ "spot",              "The Spot" },
782 	{ "spotlight",         "The Spotlight" },
783 	{ "spring",            "She's Got a Thing For a Spring" },
784 	{ "spring2020",        "Spring 2020" },
785 	{ "spycatcher",        "Spycatcher" },
786 	{ "stackoverflow",     "STACK OVERFLOW" },
787 	{ "starborn",          "Starborn" },
788 	{ "starcity",          "Star City" },
789 	{ "stargods",          "The Star Gods" },
790 	{ "starhunter",        "Star Hunter" },
791 	{ "starlightz",        "starlight" },
792 	{ "stealingthestolen", "Stealing the Stolen" },
793 	{ "stewgoing",         "You've Got A Stew Going!" },
794 	{ "stiffmst",          "Stiffy Makane: Mystery Science Theater 3000" },
795 	{ "stingwasp",         "Sting of the Wasp" },
796 	{ "stinkorswim",       "Stink or Swim" },
797 	{ "stonecave",         "The Stone Cave" },
798 	{ "stormcellar",       "Storm Cellar" },
799 	{ "strangegeometries", "Strange Geometries" },
800 	{ "strangeworld",      "Strange World" },
801 	{ "suicide",           "Suicide, a self-ordered death sentence" },
802 	{ "summerland",        "Escape from Summerland" },
803 	{ "sunburn",           "Sunburn" },
804 	{ "sunburst",          "Sunburst: A C64 science fiction adventure game" },
805 	{ "sundayafternoon",   "Sunday Afternoon" },
806 	{ "sushi",             "A Day For Fresh Sushi" },
807 	{ "sutwin",            "The Space Under the Window" },
808 	{ "suvehnux",          "Suveh Nux" },
809 	{ "swineback",         "Swineback Ridge" },
810 	{ "swordofmalice",     "THE SWORD OF MALICE" },
811 	{ "sycamoratree",      "Sycamora Tree" },
812 	{ "taipan",            "Taipan!" },
813 	{ "takethedogout",     "Take the Dog Out" },
814 	{ "talemorning",       "The Mundane Tale of the Morning After" },
815 	{ "tatctae",           "Time: All things come to an end" },
816 	{ "tauntingdonut",     "Taunting Donut" },
817 	{ "tblw",              "The Blood lust Warrior" },
818 	{ "tcomremake",        "The Colour of Magic remake" },
819 	{ "tcoty",             "The Citizen of the Year" },
820 	{ "teacherfeature",    "Teacher Feature" },
821 	{ "telling",           "Whom The Telling Changed" },
822 	{ "temple",            "The Temple" },
823 	{ "tenthplague",       "Tenth Plague" },
824 	{ "terribleoldmanse",  "The Terrible Old Manse: 8bit fun in 7bit ASCII" },
825 	{ "terrortabby",       "Attack of the Terror Tabby!" },
826 	{ "tesseract",         "Beyond The Tesseract" },
827 	{ "testisready",       "The Test is Now READY" },
828 	{ "tgm",               "The Great Machine - a fragment" },
829 	{ "thatdamnelevator",  "That Damn Elevator" },
830 	{ "thatdamnremote",    "thatdamnremote" },
831 	{ "the5continent",     "The Fifth Continent" },
832 	{ "theatre",           "Theatre" },
833 	{ "thecomputerlady",   "The Computer Lady" },
834 	{ "theenchantedcastle","The Enchanted Castle" },
835 	{ "thegrandquest",     "The Grand Quest" },
836 	{ "thegrandtour",      "The Grand Tour" },
837 	{ "thegreat",          "The Great, A Voyage To The Inner Self" },
838 	{ "theguardian",       "The Guardian" },
839 	{ "theimmortal",       "The Immortal" },
840 	{ "theimpossiblebottle","The Impossible Bottle" },
841 	{ "theinvestment",     "The Investment" },
842 	{ "thejob",            "The Job" },
843 	{ "thelighthouse",     "The Lighthouse" },
844 	{ "thelucubrator",     "The Lucubrator" },
845 	{ "themall",           "The Mall" },
846 	{ "thesproutpouch",    "Reor's Bush-Cave: The Sprout Pouch" },
847 	{ "thetempest",        "The Tempest" },
848 	{ "thetemple",         "The Temple" },
849 	{ "thewedding",        "The Wedding" },
850 	{ "thorn",             "The Thorn" },
851 	{ "threecows",         "Three Cows and Two Doors" },
852 	{ "threediopolis",     "Threediopolis" },
853 	{ "threemore",         "Three More Visitors" },
854 	{ "timefortea",        "Time For Tea: A Game of Tea, Cakes, and Deadly Secrets" },
855 	{ "tirehoax",          "My Magic Tire Hoax" },
856 	{ "tk1",               "Time Killer #1: Claustrophobia" },
857 	{ "tkatc",             "The King and the Crown, Special Edition" },
858 	{ "toask",             "Treasures of a Slaver's Kingdom" },
859 	{ "tok",               "ToK" },
860 	{ "tookiessong",       "TOOKiE'S SONG" },
861 	{ "toughbeans",        "Tough Beans" },
862 	{ "tower",             "Tower, a surreal trip" },
863 	{ "towerofelephant",   "The Tower of the Elephant" },
864 	{ "townmusicians",     "The Town Musicians" },
865 	{ "toxinx",            "Toxin X" },
866 	{ "trapped",           "Trapped" },
867 	{ "trein",             "Trein" },
868 	{ "tristamisland",     "Tristam Island (Demo)" },
869 	{ "troll",             "Zork: A Troll's Eye View" },
870 	{ "trw",               "Tull Road Warrior" },
871 	{ "trystoffate",       "Tryst of Fate" },
872 	{ "tubetrouble",       "Tube Trouble" },
873 	{ "tundra",            "Tundra" },
874 	{ "tutorial",          "Tutorial" },
875 	{ "tutorialhotel",     "Hotel Tutorial" },
876 	{ "tuuli",             "Tuuli" },
877 	{ "typo",              "Typo!" },
878 	{ "uhohdemo",          "Uh-oh! (demo version)" },
879 	{ "underdoos",         "The Underoos that ate New York!" },
880 	{ "undergroundz",      "Underground" },
881 	{ "underthebed",       "Under the Bed" },
882 	{ "unforgotten",       "Unforgotten" },
883 	{ "ungodlyhour",       "Ungodly hour" },
884 	{ "unicornpool",       "The Unicorn Pool" },
885 	{ "uninvited",         "UNINVITED" },
886 	{ "vacation",          "Vacation Gone Awry" },
887 	{ "vagueness",         "What Happens In Vagueness" },
888 	{ "vampiresun",        "House of the Midnight Sun - A Vampire's Tale" },
889 	{ "varicella",         "Varicella" },
890 	{ "vergingpaths",      "The Garden of Verging Paths" },
891 	{ "vespers",           "Vespers" },
892 	{ "vestiges",          "Vestiges" },
893 	{ "vigilance",         "Internal Vigilance" },
894 	{ "vindaloo",          "Vindaloo" },
895 	{ "violet",            "Violet" },
896 	{ "virtuality",        "Virtuality" },
897 	{ "visitor",           "The Visitor" },
898 	{ "vosr",              "Voices of Spoon River" },
899 	{ "wadewar3",          "The WadeWars Book III" },
900 	{ "walkamongus",       "Walk Among Us" },
901 	{ "walkinthepark",     "A Walk in the Park" },
902 	{ "wallpaper",         "Delightful Wallpaper" },
903 	{ "warblersnest",      "The Warbler's Nest" },
904 	{ "warp",              "Warp!" },
905 	{ "weapon",            "The Weapon" },
906 	{ "weareunfinished",   "We Are Unfinished" },
907 	{ "weather",           "A Change in the Weather" },
908 	{ "weding",            "Wedding" },
909 	{ "weirdcity",         "Weird City Interloper" },
910 	{ "weirdness",         "Weirdness: Strange, Different, and Altogether Weird" },
911 	{ "welcometohell",     "Welcome to Hell" },
912 	{ "welcometopuerto",   "Welcome to Puerto Rico" },
913 	{ "wernersquest1",     "Werner's Quest Parts 1" },
914 	{ "wernersquest2",     "Werner's Quest Parts 2" },
915 	{ "wernersquest3",     "Werner's Quest Parts 3" },
916 	{ "wernersquest4",     "Werner's Quest Parts 4" },
917 	{ "whenhelpcollides",  "When Help Collides" },
918 	{ "whenmachinesattack","wHen mAchines aTtack" },
919 	{ "whispers",          "The Corn Identity, an \"IF Whispers\" collaborative project" },
920 	{ "whitehouses",       "White Houses" },
921 	{ "wildflowers",       "Wildflowers" },
922 	{ "williamtell",       "William Tell" },
923 	{ "winchester",        "Winchester's Nightmare" },
924 	{ "windhall",          "The Windhall Chronicles, Volume One" },
925 	{ "winterwonderland",  "Winter Wonderland" },
926 	{ "wir1",              "When in Rome 1: Accounting for Taste" },
927 	{ "wir2",              "When in Rome 2: Far from Home" },
928 	{ "wireless",          "Get Magazine. Open Magazine. Read Article" },
929 	{ "wish",              "Wish" },
930 	{ "wizardscastle",     "Wizard's Castle" },
931 	{ "worldupsidedown",   "The World Turned Upside Down" },
932 	{ "wossname",          "Spodgeville Murphy and The Jewelled Eye of Wossname" },
933 	{ "wrenlaw",           "Wrenlaw" },
934 	{ "wscholars",         "Weishaupt Scholars" },
935 	{ "wump2ka",           "Wumpus 2000, The Virulent Labyrinth Of Yob-Shuggoth" },
936 	{ "wumpus",            "Hunt the Wumpus" },
937 	{ "wurm",              "Wurm" },
938 	{ "wwwanderer",        "Werewolves and Wanderer" },
939 	{ "xenophobia",        "Xenophobia" },
940 	{ "yagwad",            "YAGWAD: Yes, Another Game With A Dragon!" },
941 	{ "yakshaving",        "Yak Shaving for Kicks and Giggles!" },
942 	{ "yomomma",           "Raising the Flag on Mount Yo Momma" },
943 	{ "zassball",          "ZassBall, Another Abuse of the Z-Machine" },
944 	{ "zbefunge",          "ZBefunge 0.7 beta" },
945 	{ "zcamel",            "Camel" },
946 	{ "zcatalog",          "The Z-Files, a Z-Code Catalog" },
947 	{ "zchess",            "Z-Chess" },
948 	{ "zdungeon",          "ZDungeon" },
949 	{ "zedfunge",          "ZedFunge 0.7.3 beta" },
950 	{ "zedit",             "ZEdit, The World's Most Portable Text Editor" },
951 	{ "zegro",             "Zegrothenus" },
952 	{ "zenon",             "Escape from the Starship Zenon" },
953 	{ "zenspeak",          "Zen Speaks!" },
954 	{ "zlife",             "Z-Life" },
955 	{ "zokoban",           "Z-Machine Sokoban" },
956 	{ "zombies",           "Zombies, yet another abuse of the Z-Machine" },
957 	{ "zorkburiedchaos",   "Welcome to zork, buried chaos" },
958 	{ "zorkianstories1",   "Zorkian Stories 1: G.U.E" },
959 	{ "zorklxix",          "Zork LXIX: The Great Underground Hot Dog" },
960 	{ "zorknplus9",        "Zork N plus 9" },
961 	{ "zpegasus",          "Pegasus" },
962 	{ "zracer",            "ZRacer" },
963 	{ "zsnake",            "Z-Snake" },
964 	{ "ztornado",          "Z-Tornado" },
965 	{ "ztrek",             "Super Z Trek" },
966 	{ "zugzwang",          "Zugzwang: The Interactive Life of a Chess Piece" },
967 	{ "zunidoll",          "The Zuni Doll" },
968 
969 	// Painfull Little Stupid Games
970 	{ "plsg1",             "Dinnertime: Painless Little Stupid Games #1" },
971 	{ "plsg2",             "To Get To The Other Side: Painless Little Stupid Games #2" },
972 	{ "plsg3",             "They're After You!: Painless Little Stupid Games #3" },
973 	{ "plsg4",             "Mazemapper: Painless Little Stupid Games #4" },
974 	{ "plsg5",             "The Mean Story: Painless Little Stupid Games #5" },
975 	{ "plsg6",             "Mahadev: Painless Little Stupid Games #6" },
976 	{ "plsg7",             "Sturdlint: Painless Little Stupid Games #7" },
977 	{ "plsg8",             "The Last Dark Day: Painless Little Stupid Games #8" },
978 	{ "plsg9",             "Zork LXIX: Painless Little Stupid Games #9" },
979 	{ "plsg10",            "The Valley House: Painless Little Stupid Games #10" },
980 
981 	// Converted Scott Adams games
982 	{ "adventurelandi5",     "Adventureland" },
983 	{ "pirateadventurei5",   "Pirate Adventure" },
984 	{ "missionimpossiblei5", "Mission Impossible" },
985 	{ "voodoocastlei5",      "Voodoo Castle" },
986 	{ "thecounti5",          "The Count" },
987 	{ "strangeodysseyi5",    "Strange Odyssey" },
988 	{ "mysteryfunhousei5",   "Mystery Fun House" },
989 	{ "pyramidofdoomi5",     "Pyramid Of Doom" },
990 	{ "ghosttowni5",         "Ghost Town" },
991 	{ "savageisland1i5",     "Savage Island, Part 1" },
992 	{ "savageisland2i5",     "Savage Island, Part 2" },
993 	{ "goldenvoyagei5",      "The Golden Voyage" },
994 	{ "adventure13i5",       "Adventure 13" },
995 	{ "adventure14i5",       "Adventure 14" },
996 	{ "buckaroobanzaii5",    "Buckaroo Banzai" },
997 	{ "marveladventurei5",   "Marvel Adventure #1" },
998 	{ "questprobe2i5",       "Questprobe 2: Spiderman" },
999 	{ "scottsampleri5",      "Adventure International's Mini-Adventure Sampler" },
1000 
1001 	// Mysterious Adventures by Brian Howarth
1002 	{ "goldenbatoni5", "Mysterious Adventures 1: The Golden Baton" },
1003 	{ "timemachinei5", "Mysterious Adventures 2: The Time Machine" },
1004 	{ "arrowofdeath1i5", "Mysterious Adventures 3: Arrow of Death Part 1" },
1005 	{ "arrowofdeath2i5", "Mysterious Adventures 4: Arrow of Death Part 2" },
1006 	{ "pulsar7i5", "Mysterious Adventures 5: Escape from Pulsar 7" },
1007 	{ "circusi5", "Mysterious Adventures 6: Circus" },
1008 	{ "feasibilityi5", "Mysterious Adventures 7: Feasibility Experiment" },
1009 	{ "akyrzi5", "Mysterious Adventures 8: The Wizard of Akyrz" },
1010 	{ "perseusi5", "Mysterious Adventures 9: Perseus and Andromeda" },
1011 	{ "10indiansi5", "Mysterious Adventures 10: Ten Little Indians" },
1012 	{ "waxworksi5", "Mysterious Adventures 11: Waxworks" },
1013 
1014 	// 1992 album Apollo 18, by They Might be Giants
1015 	{ "apollo1", "Apollo 18 01: Dig My Grave" },
1016 	{ "apollo2", "Apollo 18 02: I Palindrome I" },
1017 	{ "apollo3", "Apollo 18 03: She's Actual Size" },
1018 	{ "apollo4", "Apollo 18 04: My Evil Twin" },
1019 	{ "apollo5", "Apollo 18 05: Mammal" },
1020 	{ "apollo6", "Apollo 18 06: The Statue Got Me High" },
1021 	{ "apollo7", "Apollo 18 07: Spider" },
1022 	{ "apollo8", "Apollo 18 08: The Guitar(The Lion Sleeps Tonight)" },
1023 	{ "apollo9", "Apollo 18 09: Dinner Bell" },
1024 	{ "apollo10", "Apollo 18 10: Narrow Your Eyes" },
1025 	{ "apollo11", "Apollo 18 11: Hall of Heads" },
1026 	{ "apollo12", "Apollo 18 12: Which Describes How You're Feeling" },
1027 	{ "apollo13", "Apollo 18 13: See the Constellation" },
1028 	{ "apollo14", "Apollo 18 14: If I Wasn't Shy" },
1029 	{ "apollo15", "Apollo 18 15: Turn Around" },
1030 	{ "apollo16", "Apollo 18 16: Hypnotist of Ladies" },
1031 	{ "apollo17", "Apollo 18 17: Fingertips - Everything Is Catching on Fire" },
1032 	{ "apollo18", "Apollo 18 18: Fingertips - Fingertips" },
1033 	{ "apollo19", "Apollo 18 19: Fingertips - I Hear the Wind Blow" },
1034 	{ "apollo20", "Apollo 18 20: Fingertips - Hey Now, Everybody" },
1035 	{ "apollo21", "Apollo 18 21: Fingertips - Who's That Standing Out the Window" },
1036 	{ "apollo22", "Apollo 18 22: Fingertips - I Found a New Friend" },
1037 	{ "apollo23", "Apollo 18 23: Fingertips - Come On and Wreck My Car" },
1038 	{ "apollo24", "Apollo 18 24: Fingertips - Aren't You the Guy Who Hit Me in the Eye" },
1039 	{ "apollo25", "Apollo 18 25: Fingertips - Please Pass the Milk Please" },
1040 	{ "apollo26", "Apollo 18 26: Fingertips - Leave Me Alone" },
1041 	{ "apollo27", "Apollo 18 27: Fingertips - Who's Knockin' on the Wall" },
1042 	{ "apollo28", "Apollo 18 28: Fingertips - All Alone" },
1043 	{ "apollo29", "Apollo 18 29: Fingertips - What's That Blue Thing Doing Here" },
1044 	{ "apollo30", "Apollo 18 30: Fingertips - Something Grabbed Ahold of My Hand" },
1045 	{ "apollo31", "Apollo 18 31: Fingertips - I Don't Understand You" },
1046 	{ "apollo32", "Apollo 18 32: Fingertips - I Heard a Sound" },
1047 	{ "apollo33", "Apollo 18 33: Fingertips - Mysterious Whisper" },
1048 	{ "apollo34", "Apollo 18 34: Fingertips - The Day That Love Came to Play" },
1049 	{ "apollo35", "Apollo 18 35: Fingertips - I'm Having a Heart Attack" },
1050 	{ "apollo36", "Apollo 18 36: Fingertips - Fingertips(Reprise)" },
1051 	{ "apollo37", "Apollo 18 37: Fingertips - I Walk Along Darkened Corridors" },
1052 	{ "apollo38", "Apollo 18 38: Space Suit" },
1053 
1054 	// Danish games
1055 	{ "nissen", "Pa loftet sidder nissen" },
1056 
1057 	// French games
1058 	{ "championdebasketball", "Champion de basket-ball" },
1059 	{ "dreamlands", "Echappee Belle Dans Les Contrees du Reve" },
1060 	{ "espions", "Les espions ne meurent jamais" },
1061 	{ "filaments", "Filaments" },
1062 	{ "initiation", "Initiation" },
1063 	{ "interra", "INTERRA - L'autre monde" },
1064 	{ "kheper", "Kheper" },
1065 	{ "verdeterre", "Le butin du Capitaine Verdeterre" },
1066 	{ "lieuxcommuns", "Lieux communs" },
1067 	{ "lmpsd", "La Mort Pour Seul Destin" },
1068 	{ "ombre", "Ombre" },
1069 	{ "princesse", "Ma princesse adoree" },
1070 	{ "sarvegne", "Sarvegne" },
1071 	{ "katana", "Le Scarabee et le Katana" },
1072 	{ "sdlc", "Sortir de la chambre" },
1073 	{ "balcon", "Sorciere au balcon" },
1074 	{ "templedefeu", "Le Temple de Feu" },
1075 
1076 	// German games
1077 	{ "bearg", "Ein Bar Geht Aus" },
1078 	{ "bewerbung", "Die Bewerbung" },
1079 	{ "deklinator", "Object declination tool" },
1080 	{ "edendemo", "Der Abentheurliche Informissimus Teutsch demo" },
1081 	{ "halb2", "Halb Zwei" },
1082 	{ "herr", "Die Geschichte des Herrn P. von Hannes Schuller" },
1083 	{ "jazteg", "Jazz auf Tegemis" },
1084 	{ "karisma", "Klub Karisma" },
1085 	{ "knack", "Knack!" },
1086 	{ "o", "O" },
1087 	{ "starrider", "Star Rider" },
1088 	{ "mchatton", "Tutorial Eine Einfuhrung in Textadventures von Cooper McHatton" },
1089 	{ "wasserhasser", "Wasser-Hasser" },
1090 	{ "wichtel", "Wichtel" },
1091 
1092 	// Italian games
1093 	{ "aldila", "Beyond" },
1094 	{ "armando", "L'Armando" },
1095 	{ "ayon", "Nel Mondo di Ayon" },
1096 	{ "darkiss", "Darkiss! Il bacio del vampiro" },
1097 	{ "darkiss2", "Darkiss! Il bacio del vampiro. Capitolo 2" },
1098 	{ "filamit", "Filaments" },
1099 	{ "flamel", "Flamel" },
1100 	{ "giardino", "Il giardino incantato" },
1101 	{ "kangourou", "Kangourou dell'informatica 2013" },
1102 	{ "koohinoor", "Kooh-I-Noor" },
1103 	{ "luna", "La Pietra della Luna" },
1104 	{ "poesia", "Manca solo un verso a quella poesia" },
1105 	{ "oldwest1", "Pecos Town, Old West Episode I" },
1106 	{ "rovo", "Il rovo" },
1107 	{ "scarafaggio", "Lo Scarafaggio" },
1108 	{ "sognodisangue", "Sogno di Sangue" },
1109 	{ "strega", "La strega di Maughn" },
1110 	{ "tesla", "In Cerca Di Tesla" },
1111 	{ "villamorgana", "Villa Morgana" },
1112 	{ "zazie", "Zazie, una lettura interattiva" },
1113 	{ "zenfactorspa", "ZenFactor Spa" },
1114 	{ "zombie", "Uno Zombie a Deadville" },
1115 	{ "zorkita", "Zork I: Il Grande Impero Sotterraneo" },
1116 
1117 	// Slovenian games
1118 	{ "zenin", "Zenin na begu" },
1119 
1120 	// Spanish games
1121 	{ "abalanzate", "Abalanzate" },
1122 	{ "absolutos", "Los sonidos absolutos" },
1123 	{ "afuera", "Afuera" },
1124 	{ "amanda", "Amanda" },
1125 	{ "aque1", "Aquelarre" },
1126 	{ "casi", "Casi Muerto" },
1127 	{ "celos", "Un Asunto de Celos" },
1128 	{ "cerillera", "La Pequena Cerillera" },
1129 	{ "churro", "Churro patatero" },
1130 	{ "csa", "Cacahuetes" },
1131 	{ "cueva", "La Oscura Cueva" },
1132 	{ "ddddddcrj", "Cirith Ungol" },
1133 	{ "despert", "El Despertar" },
1134 	{ "draculasp2", "Dracula: Episodio 2, La Llegada" },
1135 	{ "draculasp", "Dracula: Episodio 1, La Primera Noche" },
1136 	{ "ascenso", "El ascenso de Kunelar" },
1137 	{ "regalo", "El regalo de Gorbag" },
1138 	{ "elultimohogar", "Misterio en el Ultimo Hogar" },
1139 	{ "ergotdelima", "Lime Ergot" },
1140 	{ "forrajeo", "Forrajeo" },
1141 	{ "fotopia", "Fotopia" },
1142 	{ "gorbag", "El regalo de Gorbag" },
1143 	{ "gorron", "El gorron del tren" },
1144 	{ "goteras", "Goteras" },
1145 	{ "hhorcus", "Homo Homini Orcus" },
1146 	{ "islas", "El archipielago" },
1147 	{ "kerulen", "Ke rulen los petas, por Grendelkhan" },
1148 	{ "konix", "Konix" },
1149 	{ "kunelar", "El ascenso de Kunelar" },
1150 	{ "lamansion", "La Mansion" },
1151 	{ "libroaburria", "El libro que se aburría" },
1152 	{ "lldc", "La Llamada de Cthulhu" },
1153 	{ "macetas", "Macetas" },
1154 	{ "meeva", "La mediana evasion" },
1155 	{ "megara", "Los placeres de Megara" },
1156 	{ "modusvivendi","An ancient Roman tale" },
1157 	{ "mpdroidone", "Operacion MPDroid1" },
1158 	{ "navidad", "Una pequena historia de Navidad" },
1159 	{ "necedad", "Por la Necedad Humana" },
1160 	{ "culpatuya", "No es culpa tuya Maria" },
1161 	{ "ocaso", "Ocaso Mortal I: The Bug" },
1162 	{ "oculta", "La cara oculta de la luna" },
1163 	{ "olvido", "Olvido Mortal" },
1164 	{ "osito", "La Intrepida Noche del Osito" },
1165 	{ "panajo", "Pan de Ajo, by Incanus" },
1166 	{ "pesadillavoraz", "Pesadilla voraz" },
1167 	{ "pincoya", "Ofrenda a La Pincoya" },
1168 	{ "playera", "En la playa" },
1169 	{ "protector", "El Protector" },
1170 	{ "reflejos", "Reflejos blancos" },
1171 	{ "senten", "La Sentencia" },
1172 	{ "sombras", "Sombras de Moria" },
1173 	{ "tokland", "La isla de Tokland" },
1174 	{ "torre", "Misterio en la torre" },
1175 
1176 	// Swedish games
1177 	{ "aventyr", "Aventyr" },
1178 	{ "drakmagi", "Drakmagi" },
1179 	{ "hotellet", "Hotel Noir" },
1180 	{ "pangnyheten", "Pangnyheten" },
1181 	{ "storforsen", "Storforsen" },
1182 	{ "stuga", "Stuga" },
1183 	{ "vanyar", "Vanyar" },
1184 
1185 	{ nullptr, nullptr }
1186 };
1187 
1188 #if defined (USE_TTS)
1189 #define NONE GUIO3(GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES)
1190 #define ENTRYS(ID, VERSION, MD5, FILESIZE) { ID, VERSION, MD5, FILESIZE, Common::EN_ANY, GUIO2(GUIO_NOMUSIC, GUIO_NOSUBTITLES) }
1191 #else
1192 #define NONE GUIO4(GUIO_NOSPEECH, GUIO_NOSFX, GUIO_NOMUSIC, GUIO_NOSUBTITLES)
1193 #define ENTRYS(ID, VERSION, MD5, FILESIZE) { ID, VERSION, MD5, FILESIZE, Common::EN_ANY, GUIO3(GUIO_NOSPEECH, GUIO_NOMUSIC, GUIO_NOSUBTITLES) }
1194 #endif
1195 #define ENTRY0(ID, VERSION, MD5, FILESIZE) { ID, VERSION, MD5, FILESIZE, Common::EN_ANY, NONE }
1196 #define ENTRY1(ID, VERSION, MD5, FILESIZE, LANG) { ID, VERSION, MD5, FILESIZE, LANG, NONE }
1197 
1198 #define FROTZ_TABLE_END_MARKER { nullptr, nullptr, nullptr, 0, Common::EN_ANY, "" }
1199 
1200 const FrotzGameDescription FROTZ_GAMES[] = {
1201 	// Infocom Games - English
1202 	ENTRY0("amfv", "R77-850814", "b7ffaed0ca4a90450f92b34066133377", 262016),
1203 	ENTRY0("amfv", "R79-851122", "1e37dbcf7ccc9244dbfc3229796362f4", 262544),
1204 	ENTRY0("ballyhoo", "R97-851218", "7944e832a7d7b34037c7b6791de43dbd", 128556),
1205 	ENTRY0("beyondzork", "R49-870917", "a5547795def620d0a75a064f9a37ab2d", 261900),
1206 	ENTRY0("beyondzork", "R51-870923", "73948f415596fa4d9afe442b2c19e61f", 261548),
1207 	ENTRY0("beyondzork", "R57-871221", "c56cac07a500e5864a994b19286bc07c", 261388),
1208 	ENTRY0("borderzone", "R9-871008", "189231ed0675f6be3be86856f49211af", 178372),
1209 	ENTRY0("bureaucracy", "R86-870212", "2bb00311d4c201082cfcd278ae5db921", 243144),
1210 	ENTRY0("bureaucracy", "R116-870602", "a8ae194257a989ed3d82648a507466f2", 243340),
1211 	ENTRY0("cutthroats", "R23-840809", "059801d9f90fffeb3645816c37c7eda2", 112558),
1212 	ENTRY0("deadline", "R22-820809", "1610e84ca2505885566e648c1c525976", 111782),
1213 	ENTRY0("deadline", "R26-821108", "e1ae6af1098067b86076c34865ae713c", 108372),
1214 	ENTRY0("deadline", "R27-831006", "166ffb7cabc6b85f210655f371c89c46", 108454),
1215 	ENTRY0("enchanter", "R10-830810", "7b41d915b4c2e31423d99925e9438aa4", 109126),
1216 	ENTRY0("enchanter", "R15-831107", "e70f21aad650dd196fa3601cab5e0fc5", 109230),
1217 	ENTRY0("enchanter", "R16-831118", "46187e0691f6f5ecdd5a336885db6aad", 109234),
1218 	ENTRY0("enchanter", "R29-860820", "f87cdafad3682ead25cfc473656ff713", 111126),
1219 	ENTRY0("hhgttg", "R47-840914", "fdda8f4239819402c62db866bb61a648", 112622),
1220 	ENTRY0("hhgttg", "R56-841221", "a214fcb42bc9f554d07d983a12f6a062", 113444),
1221 	ENTRY0("hhgttg", "R58-851002", "e867d49ad1fb9406ff4e0678a4ee2ac9", 113332),
1222 	ENTRY0("hhgttg", "R59-851108", "34f6abc1f2a42be127ef434fc475f0ee", 113334),
1223 	ENTRY0("hhgttg", "R31-871119", "379022bcd4ec74b90274c6100c33f579", 158412),
1224 	ENTRY0("hhgttg", "R31-871119[a]", "e762e5f6d33b2092ee68de9da12a6083", 158412),
1225 	ENTRY0("hollywoodhijinx", "R37-861215", "7b52824057ae24e098c228c41460ef75", 109650),
1226 	ENTRY0("infidel", "R22-830916", "38f713e53af720624434529ea780040c", 93556),
1227 	ENTRY0("journey", "R30-890322", "c9893bc0399080bd3850d4db2120d110", 280472),
1228 	ENTRY0("journey", "R77-890616", "8a4ab56f62e1b7c918b837794182dbcd", 282176),
1229 	ENTRY0("journey", "R83-890706", "c33ea33ab8aec6c617734dcfe1211067", 282312),
1230 	ENTRY0("lgop", "R0", "69b3534570851b90d7f53ebe9d224a6a", 128998),
1231 	ENTRY0("lgop", "R4-880405", "6bdae7434df7c03f3589ece0bed3317d", 159928),
1232 	ENTRY0("lgop", "R59-860730", "e81237e220a612c5a93fbcc1fdf85a0a", 129022),
1233 	ENTRYS("lurkinghorror", "R203", "e2d2505510479fec0405727e3d0abc10", 128986),
1234 	ENTRYS("lurkinghorror", "R219", "83936d75c2cfd71fb64bf63c4696b9ac", 129704),
1235 	ENTRYS("lurkinghorror", "R221", "c60cd0bf3c6eda867241378c7cb5464a", 129944),
1236 	ENTRYS("milliways", "R15-880512", "12f5fe83d6fe2c1a6f50b2039bc5b28c", 62928),
1237 	ENTRYS("milliways", "R184-890412", "7726dafb083dd86ee6fa7dfeec6e1ba6", 79152),
1238 	ENTRY0("minizork1", "R34-871124", "0d7700679e5e63dec97f712698610a46", 52216),
1239 	ENTRY0("moonmist", "R4-860918", "284797c3025ffaf76aecfa5c2bbffa86", 129002),
1240 	ENTRY0("moonmist", "R9-861022", "698475de2769c66bc5a1eca600c71561", 128866),
1241 	ENTRY0("nordbert", "R19-870722", "da1e189e19e3b24b2e35bd41fc32d261", 170284),
1242 	ENTRY0("planetfall", "R20-830708", "15815c461a8548b7630d2aee46d07cc7", 107958),
1243 	ENTRY0("planetfall", "R26-831014", "cf6ce61eb2eff9d4f18d7bcba7c12cfb", 108674),
1244 	ENTRY0("planetfall", "R29-840118", "9facd8b974e658520fb762af4c4789dc", 109052),
1245 	ENTRY0("planetfall", "R37-851003", "01844816673414c97d21dc003304989b",109398),
1246 	ENTRY0("planetfall", "R10-880531", "34c69f1d24418fd4d2de195a1d7546c4", 136560),
1247 	ENTRY0("questforexcalibur", "R54-890606", "ced2c66d03a49de0e8190b468332f081", 271360),
1248 	ENTRY0("questforexcalibur", "R74-890714", "13d13f375f85a874c82a8ac7ad69dc41", 269200),
1249 	ENTRY0("plunderedhearts", "R26-??????", "f557b52840f1ec3ad68ef941dc7dbcff", 128962),
1250 	ENTRY0("plunderedhearts", "R26-870730", "fe5b9eb91949d41838166364f1753b10", 128962),
1251 	ENTRY0("infocomsampler1", "R26-840731", "5483febc51abd55fb5e04c4c97a0b260", 112610),
1252 	ENTRY0("infocomsampler1", "R53-850407", "47b8b8394e25faec870a798145529688", 126708),
1253 	ENTRY0("infocomsampler1", "R55-850823", "05d9d1a1c3c73fce9e24ab695ece16c8", 126902),
1254 	ENTRY0("infocomsampler2", "R97-870601", "201fa230a942df5aa75bb5b5f609e8ce", 125314),
1255 	ENTRY0("seastalker", "R15-840501", "2f0220b0390deda695e01832a92b5493", 117738),
1256 	ENTRY0("seastalker", "R15-840522", "050961fa7788c309bbf40accbff2ffdf", 117728),
1257 	ENTRY0("seastalker", "R16-850515", "eb39dff7beb3589c8581dd2e3569eb78", 117752),
1258 	ENTRY0("seastalker", "R16-850603", "bccf194b1e823e37db2431b586662773", 117762),
1259 	ENTRY0("seastalker", "R86-840320", "64fb27e7b9fd682ff4f0d0ec6616a468", 116456),
1260 	ENTRYS("sherlockriddle", "R21-871214", "69862f7f07a4e977159ea4da7f2f2ba6", 188444),
1261 	ENTRYS("sherlockriddle", "R26-880127", "2cb2bda2e34eb7f9494cb585720e74cd", 190180),
1262 	ENTRY0("shogun", "R322-890706", "62cca41feb94082442026f44f3e48e19", 344816),
1263 	ENTRY0("sorcerer", "R4-840131", "d4a914fdfe90f5cd055a03b9aa24addd", 109734),
1264 	ENTRY0("sorcerer", "R6-840508", "7ee357c10a9e049fe7c641a4817ee575", 109482),
1265 	ENTRY0("sorcerer", "R13-851021", "7a076459806eaee72015b2b2882a89dc", 108692),
1266 	ENTRY0("sorcerer", "R15-851108", "cde88a011d2ba183ff69b47b0d8881c6", 108682),
1267 	ENTRY0("spellbreaker", "R63-850916", "b7b9eef231dee03fb40a9d98416fa0d5", 128480),
1268 	ENTRY0("spellbreaker", "R87-860904", "852286847f4cdd790075fa824260ff4e", 128916),
1269 	ENTRY0("starcross", "R15-820901", "fb2e6d9a0ad5822f3a8d4aec949e4e3c", 84984),
1270 	ENTRY0("starcross", "R17", "57b93a825b3011c8b4fbef5337c06fbc", 83792),
1271 	ENTRY0("starcross", "R17-821021", "ed1e62e1f0eb9d819be45c076c5729f7", 83792),
1272 	ENTRY0("starcross", "", "99b605d973984fbb3b5ec25c0f0dc8df", 84740),
1273 	ENTRY0("stationfall", "R107-870430", "cfadfb66afabaa2971ec9b4ae65266ca", 128934),
1274 	ENTRY0("suspect", "R14-000000", "94df6e910558b3c514e42f9a8d4075dd", 118692),
1275 	ENTRY0("suspect", "R14-841005", "3d759ccb19233f51968fa79d7374b393", 118692),
1276 	ENTRY0("suspended", "R5", "64855adb37a3af5ce4d1fe80dfb73281", 105418),
1277 	ENTRY0("suspended", "R5-830222", "d898430e3cccdee9f9acfffcc9ef709c", 105418),
1278 	ENTRY0("suspended", "R7-830419", "65f0cc760a2500d110242fbf942f1028", 105500),
1279 	ENTRY0("suspended", "R8-830521", "b749d42462dfec21831b69635cd9c5e8", 105492),
1280 	ENTRY0("suspended", "R8-840521", "6088ad7cb553626b52875a9b8e801312", 105584),
1281 	ENTRY0("trinity", "R11-860509", "994ea591f8d401e11661c912b92ee05e", 262016),
1282 	ENTRY0("trinity", "R12-860926", "5377dc1ee39f1c8ed572944f89946eb2", 262064),
1283 	ENTRY0("wishbringer", "R23-880706", "bec823084c5622e88eca5a886278d2a5", 164712),
1284 	ENTRY0("wishbringer", "R23-880706[a]", "9151f41d513b3575fefbf05fe93afb0d", 164712),
1285 	ENTRY0("wishbringer", "R68-850501", "898b9b157ce8e54a0953366d6317fbd5", 128952),
1286 	ENTRY0("wishbringer", "R69-850920", "e7c0412c4b3bda39de438a02cbae3816", 128904),
1287 	ENTRY0("thewitness", "R13-830524", "d2297ddfe2c1b976c1b0c381ab01e2b3", 102608),
1288 	ENTRY0("thewitness", "R18-830910", "a6e441b0b92a72537c830fed201267af", 103728),
1289 	ENTRY0("thewitness", "R22-840924", "1019b9b1e1aa2c6eda945d7d92c2073a", 104664),
1290 	ENTRY0("zork0", "R296-881019", "fca554c21542729c9d154c319af6307e", 295536),
1291 	ENTRY0("zork0", "R366-demo-890323", "b58c35dc2ba36d48fade99564922c7c3", 296376),
1292 	ENTRY0("zork0", "R366-890323", "e787b2cad2d6f29fd812e737f75646e8", 296376),
1293 	ENTRY0("zork0", "R383-890602", "32e3e7ec438dabe77df2351af6ece324", 299392),
1294 	ENTRY0("zork0", "R393-890714", "29fb0e090bbff7bc8e9661e55da69ae7", 299968),
1295 	ENTRY0("zork1", "R15", "b1fa36d05b2a7379d83d843118bd087c", 131072),
1296 	ENTRY0("zork1", "R15-UG3AU5", "fa2d22304700898cb8de921f46ca4bc9", 78566),
1297 	ENTRY0("zork1", "R20", "b222bed4a0ab2650135cba7f4b1b1c67", 75734),
1298 	ENTRY0("zork1", "R23-820428", "6ad3d9ab2874beefcbc53630e9261118", 75780),
1299 	ENTRY0("zork1", "R25-820515", "287a1ce17f458fb2e776499a13796719", 75808),
1300 	ENTRY0("zork1", "R26-820803", "285f1d7c5deb1a2f23825f63823d0777", 75964),
1301 	ENTRY0("zork1", "R28-821013", "83bb70d73f3b4b5c4a32d8588b2d0707", 76018),
1302 	ENTRY0("zork1", "R30-830330", "d6d8b3ae49a683a6fce2383a8bab36a5", 76324),
1303 	ENTRY0("zork1", "R5", "dd5ba502b30189d03abfcfb9817dffe0", 82836),
1304 	ENTRY0("zork1", "R52-871125", "e56267fd041c71fc229f7deb6b6537c2", 105264),
1305 	ENTRY0("zork1", "R75-830929", "b35bca8dd18f6312c7e54dcd7958d7e5", 84868),
1306 	ENTRY0("zork1", "R76-840509", "50ebf3c0c959ac2571c23cb7f7907c70", 84874),
1307 	ENTRY0("zork1", "R88-840726", "d708b6751126f3b2b7612c760f080d41", 84876),
1308 	ENTRY0("zork2", "R15-820308", "4b6ecc8e40243ddbd4cc19ef82304c3b", 82110),
1309 	ENTRY0("zork2", "R17-820427", "386f2cd937e0ca316695d6ddca521c78", 82368),
1310 	ENTRY0("zork2", "R18-820512", "a019dd721134b57f5926ee2adf634b55", 82422),
1311 	ENTRY0("zork2", "R18_2-820517", "6cafa0e5239a74aa120bb8e2c33441be", 82422),
1312 	ENTRY0("zork2", "R19-820721", "a5236020509af26b47c737e51ce884aa", 82586),
1313 	ENTRY0("zork2", "R22-830331", "600264d62720731283454592261ec3fe", 82920),
1314 	ENTRY0("zork2", "R23-830411", "6c2e766b553c127bb07f7a0f8fe03ae2", 81876),
1315 	ENTRY0("zork2", "R48-840904", "a5064c9c3ce0bc02f16e01d745f39b67", 89912),
1316 	ENTRY0("zork2", "R7-UG3AU5", "8243ce12e7b3ce24b150f34cc2cb472c", 85260),
1317 	ENTRY0("zork3", "R10-820818", "ba4897f4d82ba08906295dd3aebf501a", 82334),
1318 	ENTRY0("zork3", "R15-830331", "2fb29e6f5eebb643f42714ca9086e145", 82558),
1319 	ENTRY0("zork3", "R15_2-840518", "672b54d8f457bd3be32e41fc9e069d71", 82642),
1320 	ENTRY0("zork3", "R16-830410", "4717f8ec2f08da7d438c05f1351d28bd", 81626),
1321 	ENTRY0("zork3", "R17-840727", "c5dc520f469771c59d193558d405341d", 82714),
1322 	ENTRY0("ztuu", "ztuu-970828", "3a55991be19943a13da58a91cd3615eb", 102524),
1323 
1324 	// Infocom Games - Foreign
1325 	ENTRY1("zork1", "R3-880113", "9f336c92c1fd392fc7e81288e5c9b6ab", 116216, Common::DE_DEU),
1326 
1327 	// English games
1328 	ENTRY0("404life", "110524", "a4ee7ba2cb611e0ae3e413a6eb9dc4da", 506770),
1329 	ENTRY0("69105keys", "090302", "bc343936e0e9d79a3736b200eadfc6ee", 195162),
1330 	ENTRY0("7doctors", "981219", "b0c9a1205401b578dd245ce3920b296c", 124928),
1331 	ENTRY0("905", "120724", "885acc1cf4ae18428d8a1998d57f2925", 87040),
1332 	ENTRY0("9dancers", "040718", "8a7faee46b0d6f35cb0cbeb7ac8631b2", 99328),
1333 	ENTRY0("cockandbull", "170401", "6036a188e9def979678697ce7be14171", 895024),
1334 	ENTRY0("aasmasters", "030410", "bb6645f33130c7881da72ff0bfb6fb5b", 68608),
1335 	ENTRY0("accuse", "070321", "3a1098524f8d6964a5d7a2579e9367f1", 129528),
1336 	ENTRY0("acheton", "111115", "5abc5f815b7f4f6031781a3e6126ef03", 250880),
1337 	ENTRY0("acorncourt", "970904", "119dc6466da205261efc1ef8e00d26d1", 55296),
1338 	ENTRY0("acrobat", "090111", "adaf3516d405d7dc65cbff1986f41af2", 2068718),
1339 	ENTRY0("acrossstars", "100329", "ef910f930a01ac4d24051b8fce549180", 524288),
1340 	ENTRY0("acrossstarsclues", "100213", "d23e9bf6019f212ff324f4595f8b6177", 122880),
1341 	ENTRY0("addendum", "080611", "e6ec3704b04d638f53aaf5f082efb424", 199420),
1342 	ENTRY0("adv440", "160307", "af1ab807e8c438d0e548c6b4903c33a1", 193536),
1343 	ENTRY0("adv550", "160307", "631ab32f7370e1c1e5b4e9fe6ad539fb", 231424),
1344 	ENTRY0("adv551", "171110", "24449bf1875c0b75491173ba4243bc99", 334848),
1345 	ENTRY0("adv350", "151001", "88fe704848a77346d196a46f7cfb3b38", 66414),
1346 	ENTRY0("adv350", "060321", "d00c3717a46734c2ae96fb8d2ad0a226", 138240),
1347 	ENTRY0("adv350", "011123", "5d4867b23e904d22453f031c87d6dcf0", 118272),
1348 	ENTRY0("adv350", "160307", "5f800280865d57cbfeb66695e79dc9b9", 147456),
1349 	ENTRY0("adv", "150118", "c776a1a9a8122967160fb51a39485113", 431616),
1350 	ENTRY0("adventuretime", "110111", "b6e0e55780b699e37411f0eb176f7496", 359368),
1351 	ENTRY0("adverbum", "060905", "e5c04bcadb953ad0a280b541f7510338", 138240),
1352 	ENTRY0("affront", "040226", "1b10a2dcedebdea772cea1c7b0407331", 50176),
1353 	ENTRY0("aisle", "990528", "a7af83193b4139f65c020ac49ff30447", 122368),
1354 	ENTRY0("alice", "030501", "ce25288e736c1c420a990b609943a990", 86528),
1355 	ENTRY0("allroads", "011119", "84ce94d8c6c77452537511f14739b612", 172032),
1356 	ENTRY0("alongtheriver", "100630", "1b670d231c4b0cc10b51ba60196c6a68", 198144),
1357 	ENTRY0("alpha", "981017", "f8fbbc64455efc259f9b41517d82b4ab", 51200),
1358 	ENTRY0("ambassadorsdaughter", "150525", "d415de88a7a756be04f5203f8b4668ee", 255488),
1359 	ENTRY0("amish", "020603", "d4194b4de41c9663f464bb33f1917a7d", 50688),
1360 	ENTRY0("amiss", "020409", "fa22d754f2b9daedc232bfbc6b28b6d1", 143872),
1361 	ENTRY0("anchor", "990206", "2bc49d98d980bfefa064ae76f4a217e5", 520192),
1362 	ENTRY0("hipponewyear", "130210", "b226fcbf871613684d8d2c7941e02e82", 317440),
1363 	ENTRY0("andromedagenesis", "130701", "3dc7a53837dfcfed4895aad148b78f27", 245248),
1364 	ENTRY0("animals", "150314", "d5e0c7c6641709eeb5c4c0797519962c", 32768),
1365 	ENTRY0("annoy", "990127", "0383c40a28c606ddf8bfba3a66469055", 71168),
1366 	ENTRY0("aotyrz", "060825", "d9264cedc9cb438eedf67f611dbdbb3e", 159232),
1367 	ENTRY0("aphasiaquest", "150426", "ee480b0a0983e636649777a745a8f6f0", 233896),
1368 	ENTRY0("appall", "020422", "3c33d5639fa341829dde7c4b9b1875fd", 52736),
1369 	ENTRY0("aridandpale", "090501", "d18d5d2b8ceef04234f64373958097e5", 199400),
1370 	ENTRY0("asylum", "090721", "1fcf07b963cd664cf11660882de99e47", 135680),
1371 	ENTRY0("atrocitron", "161215", "6798fc939e1c6a92eb8e356e359a0ee4", 91648),
1372 	ENTRY0("ats", "000001", "accd04838197c1e4937bac253349b623", 387072),
1373 	ENTRY0("atwork", "000705", "44e22cd9dd5124dd149b761dfd6e93e8", 78336),
1374 	ENTRY0("aug4", "130702", "0b9a2b7c37f3d56fcd8d0b531582f8df", 364544),
1375 	ENTRY0("aug4", "r4/200401", "d537c469fe6cc008286bf071045c66a7", 364544),
1376 	ENTRY0("avon", "111115", "82a3d640af8cb7707a1b4301192679b1", 104960),
1377 	ENTRY0("awakening", "980726", "66181a19b3316f6644c20a9ee18be40f", 99328),
1378 	ENTRY0("awitl", "980215", "8cf72be55d75137cc435ab25f479c123", 56320),
1379 	ENTRY0("ayac", "010107", "b503a9f2817ce97480160e454e470c58", 68608),
1380 	ENTRY0("b2demo", "961017", "28d166262aa22fb55fdb9685a5a124ef", 65024),
1381 	ENTRY0("b7snare", "150118", "5e1057596f6fe7d0efb100f80ae65f27", 284672),
1382 	ENTRY0("babytree", "120512", "79e230657b07b2e8fa45ffbe4635d03f", 294352),
1383 	ENTRY0("backtowakeup", "080313", "73ada6a69651bea315206d7994164b95", 640246),
1384 	ENTRY0("martyquest", "120430", "80b274b7feb7c19ee0aeba85dac0d688", 268272),
1385 	ENTRY0("backup", "091204", "52d1d40ff557c21b7d4464e12b6d646c", 429188),
1386 	ENTRY0("balances", "961216", "2b740e4bf08e64580085640b40a0ead8", 75264),
1387 	ENTRY0("baldersdeath", "111107", "cec997b2ba4917a2dab2640f276f1c7c", 254404),
1388 	ENTRY0("ballerina102", "991128", "9f92c9d90a536f62d7a535e7026c28bc", 508928),
1389 	ENTRY0("balt24", "970706", "7c45c1ea2780a5eed643f35fb44dccda", 58368),
1390 	ENTRY0("bathtub", "060409", "580a828689b64b150d29c4247c873acc", 85504),
1391 	ENTRY0("bazic", "010710", "a6c277d223557127c7d0678aa128d501", 55296),
1392 	ENTRY0("bear", "990224", "8e96c4de71e6fd4bdafb10bdea76893b", 109568),
1393 	ENTRY0("bedlam", "970711", "6c816efb1a7fc99345fdb85bb9e01ac6", 59392),
1394 	ENTRY0("bedtime", "120324", "2a39f06bdad42384b026059d690cd779", 260120),
1395 	ENTRY0("andrewplotkin", "080423", "9679960dde743ff1f506c12db29c5214", 366740),
1396 	ENTRY0("beingsteve", "060519", "a446f37fcd5945428797573295acbe03", 124810),
1397 	ENTRY0("beneath", "080107", "8e53f4d65b0b68ef92fb2fbd3592dcc5", 176128),
1398 	ENTRY0("beyond", "100115", "61bd0b7eae9e81c7d01496d623a497e1", 336982),
1399 	ENTRY0("bibleretold", "102283", "158f9c1818f7a80607a3b8281a9bc140", 169472),
1400 	ENTRY0("bicon", "101006", "2f2d993faf161318c4b4c5ee0957e288", 366836),
1401 	ENTRY0("biscuit", "010310", "e4d8262dbeeab8e340e522e5cef740a8", 137728),
1402 	ENTRY0("bishoes", "090513", "05c6dae3ea1896e756ce54bae26564ae", 85504),
1403 	ENTRY0("bj", "981103", "2787b18265a5bceccd0a4d311f94d97a", 158720),
1404 	ENTRY0("blair", "971119", "39a811c3280594ef64942d73ab11f7d4", 83456),
1405 	ENTRY0("bluechairs", "041229", "4ebedbd54fc2eae27fc7d867cadb37c3", 241152),
1406 	ENTRY0("blues", "020618", "dea57d7b1b41b5961143e7faa6125ad9", 261632),
1407 	ENTRY0("bofh", "030202", "c43d7674558043729cf3916f7e1bfe4d", 101376),
1408 	ENTRY0("bomber", "971123", "1c1740d9770d53d7a18cf56006e8d88b", 3584),
1409 	ENTRY0("bookvol", "051225", "c949b9db879b10faea5cfca45ee6a657", 225792),
1410 	ENTRY0("booth", "960409", "953578eeec2b85c92fd54d87f3e9c7fb", 44544),
1411 	ENTRY0("boothdye", "345678", "772134a9ceb8c7dc5f2b10d6d139aa0d", 51712),
1412 	ENTRY0("brainnightguest", "110312", "a53b823f032f6f24cf726cb3807126e0", 232448),
1413 	ENTRY0("brandx", "111115", "2937e62eefe4f059ea9d8d85f4fd55a0", 112128),
1414 	ENTRY0("breakin", "000926", "0cc04d377f04ba75f647c9a21688b9b6", 208896),
1415 	ENTRY0("bronze", "060503", "ef5b57f69601b8f5944699a6b31bc58d", 492472),
1416 	ENTRY0("bryantcollection", "090401", "2c331a7c183ef29ea13b68075a58c73b", 528620),
1417 	ENTRY0("bse", "970110", "d260f722540f8c24a8c5b88778c76261", 89088),
1418 	ENTRY0("building", "030706", "cc5ab40754fde9739113ef2524ef66b5", 253440),
1419 	ENTRY0("nightbunnies", "971205", "6a2cc6996865a4d1520ae467a5a802fd", 78848),
1420 	ENTRY0("buccaneerscache", "210502", "0fc979bfee360e4e966d361aa815ed54", 33792),
1421 	ENTRY0("buccaneerscache", "210522", "7ba7e32110ac3ca97db5e20e3f167bf3", 34304),
1422 	ENTRY0("bureaucrocy", "141113", "7dcbbc724b7416ad0b80b3159c7e3525", 387606),
1423 	ENTRY0("burglar", "010925", "ca9ae17d983afb2d79aad60486a5a859", 71680),
1424 	ENTRY0("burnsnightsupper", "120124", "a1153aab71b7a3bc4bd1aa056f3145e8", 251342),
1425 	ENTRY0("burnkoran", "101128", "216f61842ba2024b291b4e0ae7769500", 222746),
1426 	ENTRY0("busted", "941223", "e164cfeed308fd25bc102a18b3c8f15c", 82944),
1427 	ENTRY0("byod", "200928", "90b19dc00264bc1ae97c1338d5ea0bca", 549618),
1428 	ENTRY0("byzantine", "091119", "61dcb1e79885f76f9f5f5c62ce2c7e8d", 1727208),
1429 	ENTRY0("cabal", "041127", "b8f7f30bef898f4ed1814b0094c40b1e", 178176),
1430 	ENTRY0("cacophony", "091209", "a612e786ee256ecf14580bd7e922b27a", 364032),
1431 	ENTRY0("calendar", "070805", "8f8f6f45daa40e640805b83279196cfe", 137728),
1432 	ENTRY0("calmmutemoving", "110712", "c4f0e45605825341e566bbd4a1d52522", 173056),
1433 	ENTRY0("calypso", "140421", "5fadae3572711526d7b61c90bab58087", 97792),
1434 	ENTRY0("candy", "970621", "322249ca0d96df20c010d8c2226cf0f2", 59392),
1435 	ENTRY0("cars", "980923", "c857ca87a713ac8d3ae13a49ea05f994", 57344),
1436 	ENTRY0("cars", "981010", "b6d057301718325b393e7e8e99bf09e6", 57344),
1437 	ENTRY0("casting", "050707", "11ec0ca3c23c327e77a83985305c17f4", 247808),
1438 	ENTRY0("castleadventure", "121207", "7119fd8068a8e467e3e34c66cbee005b", 243200),
1439 	ENTRY0("castleredprince", "130227", "1dc1bc1337931b25d57594e566152772", 362880),
1440 	ENTRY0("catcherintherye", "060611", "0bb71366efbf85f9a4700c6f121e7972", 198550),
1441 	ENTRY0("catseye", "041018", "7ff8e2d98b56e7f79508f6e22d6383ae", 10239),
1442 	ENTRY0("causality", "240304", "4ee72c8d430dc4d0e28fadf99b1dcd73", 117760),
1443 	ENTRY0("caveadventure", "070718", "6d2fc2d639efba54382481ac319500b9", 550986),
1444 	ENTRY0("cavernofdoom", "030312", "87769a24b64ec0dc2e261c7111d7662d", 133120),
1445 	ENTRY0("cavernsofchaos", "990813", "05104b58bb5d6e1765b8a3be541381d3", 24576),
1446 	ENTRY0("cavetrip", "041225", "5f0668876d3f8b03e62bd53d3ab276f3", 117760),
1447 	ENTRY0("ccake", "000311", "2f0745fb253ef799472afb4e7e7f13a9", 80384),
1448 	ENTRY0("chaos", "090801", "ede5478e9a87906205d784181b33e8aa", 96768),
1449 	ENTRY0("chaosgame", "090526", "0b902ce73efd76e5c57230a25e27f364", 176004),
1450 	ENTRY0("cheater", "960920", "69753e7cb886a003615b8aa415702135", 48640),
1451 	ENTRY0("cheesedoff", "160724", "f22a5e611479057236e0a8af31b62e70", 448080),
1452 	ENTRY0("cheeseshop", "021230", "88329068474b92abf4b4363c177f6971", 85504),
1453 	ENTRY0("cheshirecat", "141012", "0a8c570fb7499bcc35109fdf7320132b", 79872),
1454 	ENTRY0("chico", "000413", "b46bc30a1495c8cc9b1f9399f0ac5ed5", 162304),
1455 	ENTRY0("childsplay", "080129", "d21a117c5a40afcbdb04a08aa109da57", 535396),
1456 	ENTRY0("chix", "991124", "760b7fb0fcd9c99ae1295c06ff52529d", 206848),
1457 	ENTRY0("cia", "961218", "2cdacedf416e7a575de47412e1d164f8", 54784),
1458 	ENTRY0("claw", "970327", "4d3992e95530a301ca58939a197c6b1b", 130048),
1459 	ENTRY0("cleanair", "r2/190608", "3e5a972edf102956f6973c9fc7a8d388", 410302),
1460 	ENTRY0("codenamesilver", "170619", "8250de9dd95418d6cfa1b5f323254ac4", 357888),
1461 	ENTRY0("cointoss", "150217", "e19c6d27ccdae1fee28136f8efb829ec", 314426),
1462 	ENTRY0("coke", "990331", "8ee8282eceb70c6bb6b9c427d1e01aff", 107008),
1463 	ENTRY0("coldiron", "111119", "82f24d7b6d66e76871c64ea47b4a6f5e", 230400),
1464 	ENTRY0("colonists", "130911", "2f5bfc75a420df67718f542d67e9c118", 534020),
1465 	ENTRY0("coloromc", "120110", "95a3d47250d6cdacfb2c9aa334ae71db", 194560),
1466 	ENTRY0("comp96", "970626", "208b6f721e472f89654e6feb1b54b747", 84992),
1467 	ENTRY0("conankill", "050428", "eff6760b564715f763d6fc25fce8a7eb", 91136),
1468 	ENTRY0("dreamcorruptor", "171029", "1f4f956de3054621f928204c0e6b0d6d", 429160),
1469 	ENTRY0("cottage", "090715", "b2c6f964c0bd4d8a0c12009697ff7307", 616308),
1470 	ENTRY0("cottage", "090715", "994f78a6f2e9f062b0a34cfdf5e44c34", 134656),
1471 	ENTRY0("countdown1", "061219", "a4a901a3cb0dcc2c7440e344a8e12822", 128512),
1472 	ENTRY0("countdown2", "070110", "45adfc3347ba01e5bad33a848fd9bba4", 133120),
1473 	ENTRY0("countdown3", "070110", "08be83ed93d1504f3dab14b8ec80beb2", 144384),
1474 	ENTRY0("cove", "000525", "a84f448606c1b271a41b225244ef43a9", 130048),
1475 	ENTRY0("creepydemo", "100317", "e211ed2eef47d78f72330d98e0f9503f", 150016),
1476 	ENTRY0("crimescene", "130123", "508196f1cd974f789fdc2af69767a1d1", 320916),
1477 	ENTRY0("criticalbreach", "130817", "348fc7ef47cab92d0b7f286da3c3ab90", 268800),
1478 	ENTRY0("crobe", "111115", "d8b138a87f6226b8283c33c50c6f254c", 92160),
1479 	ENTRY0("cryptographer", "071216", "5c306d5f1cee2d4eabf199012a354ff8", 40448),
1480 	ENTRY0("csbb", "090625", "30bd815bc7d5943a0c8725e3b31ec373", 489984),
1481 	ENTRY0("ctdoom", "000920", "24e754f22952fa0dfd88fd1e50e4e4d0", 132608),
1482 	ENTRY0("curses", "951024", "636ca27c82d3af77142ea92e6522b9ba", 259072),
1483 	ENTRY0("curves", "010613", "c80a64ffb0a19c5cb89108fb36485d04", 524288),
1484 	ENTRY0("cycles", "020222", "cfe1bb9275f72a63e6b4d96fb39907b3", 121344),
1485 	ENTRY0("cyclops", "020505", "f4ab4dc7f8f8e0fc1f716b3a43273b58", 78336),
1486 	ENTRY0("crystalpalace", "111125", "70b49b3ed49f022f73796765008e1e6a", 310316),
1487 	ENTRY0("dday", "110720", "897fbdf9cb2468b09c30961524d36ae5", 266364),
1488 	ENTRY0("damnatiomemoriae", "061008", "c69e98feed6b49dcecc040a6babab455", 166474),
1489 	ENTRY0("darkiss1", "160130", "8c8f759915eedbf014b1c8d8ecc282db", 134144),
1490 	ENTRY0("dashslapney", "120510", "d934c25530f689c8c25ce71bf184b82a", 338426),
1491 	ENTRY0("dayinlife", "080406", "ad0b46d14e3a8d577a58f0d93d700f4f", 173558),
1492 	ENTRY0("dd4", "030207", "c5921ad782bc25cbd7e3f8c8b1412a4a", 163328),
1493 	ENTRY0("deadpavane", "131204", "cf0f923ae3b079c29608770aecdefdf1", 269270),
1494 	ENTRY0("deadreckoning", "030730", "1232dc599a00548bcc2d6453a01c5e50", 87040),
1495 	ENTRY0("deadsville", "081105", "58ddf8bfbd4a78aa722127193f6f54f5", 120320),
1496 	ENTRY0("deadmansgrave", "151101", "85750a3498daff7750b65f298858f175", 547808),
1497 	ENTRY0("deadmeat", "170527", "c0f127f032ade1f46267028371e68e5b", 252374),
1498 	ENTRY0("death", "030309", "4e013a77c165338cbf2662ba04465a9b", 120320),
1499 	ENTRY0("debate", "070412", "bc1c6db5b5fe43d6d11982907debeed4", 162816),
1500 	ENTRY0("deephome", "991210", "d30357d2b08ab21e8f2da0e74a3c87d7", 133120),
1501 	ENTRY0("degeneracy", "010331", "d42d960bcfc2a8e1fadc809b31c96f02", 167424),
1502 	ENTRY0("dejavuz", "930921", "ece489ece5cffa0b8575f44e094a115e", 22500),
1503 	ENTRY0("deliciousbreakfast", "111015", "393e71995dbb13c23a1b5dd5403341d7", 152852),
1504 	ENTRY0("delusions", "971121", "8e78eef73d07048d99514bab624fb9aa", 193024),
1505 	ENTRY0("detective", "000715", "c09fde6c6777c2c422de18668cf986a2", 108032),
1506 	ENTRY0("detention", "130827", "c2361faf8bbc8996fc0db8e71ef001da", 244684),
1507 	ENTRY0("devildoit", "000724", "c4c97ca9af421dc9a14849355e7f7a1f", 60416),
1508 	ENTRY0("devours", "050325", "f9be89a5a26be53b52c08b6cea0ed3d1", 160768),
1509 	ENTRY0("dewdrops", "050115", "32e07656bbfbc7b4d0b5fe8fd4d1ca7d", 109056),
1510 	ENTRY0("djinni", "001117", "107f0d7432596234db354dbe3cbb4b68", 105472),
1511 	ENTRY0("dogslife", "981015", "e6f0adca898d757c49c9d81a67d3b6cc", 67584),
1512 	ENTRY0("zunidoll", "971031", "128ad329e657c405f85ddbc19bd26538", 76800),
1513 	ENTRY0("dontgo", "120119", "5b153263f946a6013d80d07fa1573dbf", 195584),
1514 	ENTRY0("dontpeeyourself", "150807", "ffbdd3b0860e5a5b5ffbbdbb6ac4fc46", 211968),
1515 	ENTRY0("dontpushthemailbox", "191228", "d8fcacf89d5a5f1ec1b877775d137598", 332288),
1516 	ENTRY0("dotd", "050619", "48b47df16c2d32612fe2f09f234d99dd", 245248),
1517 	ENTRY0("downthematrix", "120521", "291d6e004fe0ace1dbaf79434fbd5403", 319976),
1518 	ENTRY0("dpod", "051012", "b573b31e2df3f90b396a6ddaf27e120e", 303104),
1519 	ENTRY0("dracula2", "080819", "446564750ebe364539c27f89a520bb08", 108544),
1520 	ENTRY0("dracula1", "070424", "42b5559ca5f01f7ef63ef4573d71326b", 87552),
1521 	ENTRY0("dragon", "040211", "744c35647fddfb830594596b4b350b71", 145408),
1522 	ENTRY0("dragonflies", "111130", "ff692bffb014fe109c3bfe2e072ac98b", 565060),
1523 	ENTRY0("dragontroll", "070120", "44e48cb9689e156d322a1de0a14d420e", 3584),
1524 	ENTRY0("dreamhold", "041231", "78eb852b88f9424647a4e18caa4c6707", 386560),
1525 	ENTRY0("dreamtooreal", "061128", "ac2bc1ebcfd2c8b5eed405c4f7fcb10c", 138124),
1526 	ENTRY0("drego", "", "8a983690928e36c8a77ed50bdbe98bd9", 132096),
1527 	ENTRY0("dual", "100225", "57f0e173be4258de1ce224e74172ea11", 430282),
1528 	ENTRY0("dumont", "990223", "c5b6b0c7dcf3e771207bc44a7a3eaa0b", 224768),
1529 	ENTRY0("eas", "011204", "5dffcdadd1f24333aa6cb03fefce22fe", 183296),
1530 	ENTRY0("cliffedge", "111030", "2bcba042a3b56fb010c9ab0e64cecad5", 324608),
1531 	ENTRY0("edifice", "980206", "e2fd79d86f7e77659ef60519d2423856", 181760),
1532 	ENTRY0("egyptianwalking", "151231", "ef80dd50c700becf2b4b254ce3ad3c9f", 334848),
1533 	ENTRY0("elephants", "120409", "6e9cbdf3128079d42abef931964ed835", 236032),
1534 	ENTRY0("eleven", "001231", "a573abd0e05318d72502e2ff3b48f5fa", 214528),
1535 	ENTRY0("eliza", "990207", "293e7e1e2790af326547cd7be6c44d92", 7680),
1536 	ENTRY0("enemies", "990115", "ff9fc17bf66ffbfba125d9a7c20c2c60", 289280),
1537 	ENTRY0("enigma", "160202", "743b7440094810ebe9b9d86d994ef07b", 418468),
1538 	ENTRY0("entangled", "200928", "773ad8d10e980531127a040679a4e3eb", 494080),
1539 	ENTRY0("enterprise", "020428", "791a68da0a0da75307ce60bcf6f07f55", 156672),
1540 	ENTRY0("entropy", "090516", "2acf5da303368989679bbb8ee71da5ea", 125440),
1541 	ENTRY0("epyk", "091111", "2d14b9b9499bc87ecad01215009fa2c7", 236988),
1542 	ENTRY0("erden", "980131", "6125e83116854253240b489a22e83b9f", 348160),
1543 	ENTRY0("eric", "000001", "6ed92a1deef039921701441bc371883a", 116224),
1544 	ENTRY0("escape", "130210", "988b6899f8d3c9bc4bbd3153ce1ab31f", 275358),
1545 	ENTRY0("escaperemember", "060705", "57b062c6f3e42cac8cb0775265c33c42", 284810),
1546 	ENTRY0("eurydice", "121206", "1f4112cdff2e5c924e54bfe06181ff49", 845206),
1547 	ENTRY0("f209", "970806", "98d739b8f6f5df78cbdc338dd50f89c5", 56832),
1548 	ENTRY0("fable", "000715", "603d4573ad89adabb7bf8d0b031705c0", 95744),
1549 	ENTRY0("faculty", "080116", "8998ea6435611921f97bb67fff0dd130", 218612),
1550 	ENTRY0("failsafe", "001218", "05293830576ae81e9a61f38cab731d38", 78336),
1551 	ENTRY0("fairyland", "190815", "b2dbb1186a00f46f7029df2278c7591a", 163328),
1552 	ENTRY0("farm", "020101", "9838d582cdd87814598eff791775a53d", 135168),
1553 	ENTRY0("fff", "080121", "c29786d16b5498656e19f06eb3d58d94", 100864),
1554 	ENTRY0("figaro", "100911", "b696b4578c9d4044edb137e3a87b0f50", 406596),
1555 	ENTRY0("figueres", "1", "c0d9ff83a9ff5eba8938934a339aee6d", 277992),
1556 	ENTRY0("findesick", "180802", "ccb98f2fa05f747e00c883c47e8ba31f", 331776),
1557 	ENTRY0("findthebed", "100708", "02d3f5a2fba50f42c750a902f04f54c8", 289224),
1558 	ENTRY0("finetuned", "020520", "354ff8d5758cd27f054d5f575dd37742", 293888),
1559 	ENTRY0("fingertipsfriend", "140106", "44cad06c5c79a7f99e53974a7d08c273", 423480),
1560 	ENTRY0("fingertipsmilk", "140312", "01d3504181777b30f96de20dfedda359", 278664),
1561 	ENTRY0("fmvpoker", "001227", "0d7bec942838ba2d42af2f836e2a8fc5", 24064),
1562 	ENTRY0("forestdemo", "121216", "f629bfa6755cd36f45dbc3fe12b97936", 243130),
1563 	ENTRY0("fork", "071205", "cc07f97369a7f20da06eabf4fa8f2e4a", 201728),
1564 	ENTRY0("forms", "970206", "7de27dd6539ed6ef1c6176ab030510dd", 91136),
1565 	ENTRY0("fracture", "010306", "d684caf97f01d447b37376ef7c708a85", 111104),
1566 	ENTRY0("fragileshells", "111109", "6232ef15b7508aab6072a85afb86908c", 547610),
1567 	ENTRY0("frankie", "040304", "1ce64a1c5a2d928cfb48b4d760246972", 91648),
1568 	ENTRY0("freefall", "951111", "3e7898a1e767a2de61336ff2ff4bb1f4", 3584),
1569 	ENTRY0("frobozzi", "990129", "3ca33fdafd15fed40ce32de557a84195", 184320),
1570 	ENTRY0("frozen", "960620", "e6185f87a3bfb42baf2f1de528a479a4", 63488),
1571 	ENTRY0("fyleet", "111115", "df1bc4b00ad8bc376a29c74ad7c23a22", 141824),
1572 	ENTRY0("fmvpoker", "000913", "3f4ee585aa91660d5483ef2f132fb1d3", 19456),
1573 	ENTRY0("firstday", "110119", "58c46cbeeaf96c3302515cb3e9aedcec", 454606),
1574 	ENTRY0("hiddennazi", "100911", "93521e3903e1fa63cfb7ababebd4c3e1", 367570),
1575 	ENTRY0("ga", "120510", "ec52eee6bc32f783edc18088b6abf943", 177664),
1576 	ENTRY0("galatea", "040208", "7d2f6474d49625ff3537f594f17d2469", 441992),
1577 	ENTRY0("gamer", "120415", "f5cdd32b3c0c1f09fe7c659103317365", 293356),
1578 	ENTRY0("gamlet", "041223", "c434581d222f89b85e67bea37aa702af", 260608),
1579 	ENTRY0("gardening", "080412", "2d9ff32f10bc569977984c9042afee4f", 394156),
1580 	ENTRY0("gatoron", "091116", "00ddc82b9268ea0968084e215057f21b", 123904),
1581 	ENTRY0("gaucho", "120805", "3ec2942af85d52ecd22c6ee3decf9b8b", 176640),
1582 	ENTRY0("gd", "010806", "5be045c6983f16f2d44e660f9f0192a2", 50176),
1583 	ENTRY0("geb", "051028", "8b731db0410993b8421e06dd7f3e37b2", 165376),
1584 	ENTRY0("geist", "140115", "96f54aaa29ddd0bbfa5db914150633a5", 244736),
1585 	ENTRY0("gerbilriot", "000513", "69d3926fdd11464a3a79bc10c03cd324", 79360),
1586 	ENTRY0("ghost", "290912", "3e737617d1eb7f551d858e1b9ad5dd3f", 210944),
1587 	ENTRY0("ghostmountain", "r2/210417", "9528c0c0996c41dd210bd023a6e1e28d", 43008),
1588 	ENTRY0("ghostmountain", "r3/210509", "3c09bc59d5d38fd11f3523cf330045a0", 43520),
1589 	ENTRY0("glass", "061008", "f687986dab7bd4e2f61d3f282c1ded4d", 373812),
1590 	ENTRY0("glik1", "111211", "1cfc3dd21b01fa968d36b6d58fe80862", 353620),
1591 	ENTRY0("gnuzoo", "160331", "1f9274506529a4c934f09cfe06cda804", 478060),
1592 	ENTRY0("godot", "960599", "953905ec43f6e595d1634adb37ed879e", 49152),
1593 	ENTRY0("goldilocks", "090410", "1e2b32a419bfc9703dda529f40c01782", 217600),
1594 	ENTRY0("golf", "010114", "5dd8638e40d97806c5eb9c05618db775", 195584),
1595 	ENTRY0("gostak", "020305", "06a39a234ada7e57733e1ab442909170", 88064),
1596 	ENTRY0("gourmet", "031116", "6a78f4aa50d962668a2bf7b0e788bafe", 360808),
1597 	ENTRY0("gourmetgaffe", "120624", "0c59f0c03fd36303ec02d370cee9b650", 257156),
1598 	ENTRY0("gowest", "120425", "2c1e329d9cde395785f8323a740a361e", 251988),
1599 	ENTRY0("greatxavio", "041204", "3725be7347d460cc3661b0268db55db5", 177664),
1600 	ENTRY0("greenrain", "100611", "f28e8e500d4fbc94d59f5bfdb9cf7f4d", 275516),
1601 	ENTRY0("growingup", "110825", "9bada495ce70bfcae2566f01b844d20a", 267720),
1602 	ENTRY0("grue", "170810", "578ee64d95f854174a256e75e90f2306", 365056),
1603 	ENTRY0("guard", "991231", "db56b6f0f381ba32f30749530ebdc25f", 410624),
1604 	ENTRY0("guess", "001210", "df6dcaadb7f2d25cbbeb1b357c716a32", 235008),
1605 	ENTRY0("guestreet", "100031", "2637075afb748532ebf851310158017e", 12800),
1606 	ENTRY0("gumshoe", "960331", "935eabe90b3904a0cde9811a463fcc39", 143360),
1607 	ENTRY0("gussdeath", "040131", "1c3d12957d1ecf3ce28b7fe36cb34111", 41472),
1608 	ENTRY0("halloweve", "111028", "0a209a7dc47242f906d8b782e4efb887", 324608),
1609 	ENTRY0("hamil", "111115", "3c6f7131752edfd7b78252112b3a6e66", 81920),
1610 	ENTRY0("hamhouse", "081124", "068b91ec4a227760e08f1ba48acaeb7a", 238080),
1611 	ENTRY0("hangar22", "110617", "a96bff6dae1e76771688f73e6570550e", 152064),
1612 	ENTRY0("happyeverafter", "130114", "921e9eec1c4049b630b0a00379bd7d5b", 121856),
1613 	ENTRY0("crabhat", "130216", "c7ccd1b68fd860cbaec5ee721e0a06e4", 154112),
1614 	ENTRY0("hauntedhouse", "170103", "6d1a6caced27d901c09896ac74de6022", 400078),
1615 	ENTRY0("hauntings", "111109", "931b910ab47044e8792c4d5adc5163e3", 225792),
1616 	ENTRY0("heist", "990217", "d37eab3288f34d5673f72d8697835e8e", 358400),
1617 	ENTRY0("heliopause", "100703", "423b5192b31eb0705a928b3900b6b208", 389388),
1618 	ENTRY0("welcometohell", "980816", "1c7493e0ca533b9cc04097d90b112b24", 51200),
1619 	ENTRY0("hellsbasement", "140826", "749bad5b6169b1cee259b9f21cfee75b", 275890),
1620 	ENTRY0("helpcollides", "030208", "2185bd75e8cc26ac7773effc300ec210", 286720),
1621 	ENTRY0("heroes", "011130", "1bfe7f301e15816e46c60edfae9030a5", 204800),
1622 	ENTRY0("heroinesmantle", "001211", "4beb00dfd7abed53bb529946662fc252", 523776),
1623 	ENTRY0("hiddenverbiage", "181127", "736af995f8cb87601fe170695efa7180", 477130),
1624 	ENTRY0("hidepachyderm", "151011", "304cbcbdbd9338fc60872270905ed6f0", 215040),
1625 	ENTRY0("hlainform", "050715", "e919e8ca4e2358b010d3a758a98609c8", 168960),
1626 	ENTRY0("hobbittruestory", "170425", "5964f6951be8da16fb350b9d0982c89e", 374272),
1627 	ENTRY0("hobbittruestory", "170601", "037bdb4c4518a9335f86b71a11a673e9", 414292),
1628 	ENTRY0("robotempire", "140601", "0be65fa2571465799544009bbf9cc083", 431986),
1629 	ENTRY0("home", "110204", "454bbecf0847b69f17748a04e225fca6", 156672),
1630 	ENTRY0("homecoming", "140903", "b3987678e4d9fcc95fa9718c3f9ce7a8", 1089176),
1631 	ENTRY0("hoosegow", "130320", "5d8d2858bb803b227ac923a654dd367c", 2024678),
1632 	ENTRY0("housekey1", "080112", "ddc18dd2a69887dec6c1d4d994d35a8e", 134144),
1633 	ENTRY0("housedream", "071204", "64709099677209a81c9edd196ef3e266", 312320),
1634 	ENTRY1("hellosword", "060113", "7c5289ab479a5aace75a5518969fedf3", 153600, Common::EN_ANY),
1635 	ENTRY0("humongouscave", "000001", "4d0a5a75192c8343315855f881874515", 332800),
1636 	ENTRY0("humongouscavehints", "000001", "d6581a6fcf31851267e1acc00c466e4b", 124928),
1637 	ENTRY0("hummingbird", "110101", "1b48ec7b38899b5747ad4a16be029889", 775268),
1638 	ENTRY0("hunterdark", "991119", "3c3288e7023f07e525d7301bb84ffba1", 116224),
1639 	ENTRY0("hyperrpg", "090630", "46d18c446800ea7cdaa7f1d370ab7c05", 198628),
1640 	ENTRY0("i0", "140603", "878cd0b3cb05340b49cf18999ba59fab", 219136),
1641 	ENTRY0("ibo", "120109", "b592aa3222e86ee1baaa45107cca6f83", 196608),
1642 	ENTRY0("iceweb", "160229", "b4f294ede4bcf5134a49d3a8d47cd2a0", 506932),
1643 	ENTRY0("icebreaker", "950912", "089919770f1b094dfdb111ca64ee7489", 49152),
1644 	ENTRY0("identity", "041121", "72fe1d48259be82d586bb4eb48ccaff9", 126976),
1645 	ENTRY0("ifaquarium", "100515", "5f99b211f5bef1c1d1e89762dd451cac", 235088),
1646 	ENTRY0("ifquake", "040812", "4c75b746abbae0e869ede0b06501f823", 133120),
1647 	ENTRY0("ifwhispers5", "120312", "ebdd62f2484dc87955055cb1093d9359", 326144),
1648 	ENTRY0("ill", "000218", "34f194a208f828c4c77d3954082d75a7", 73216),
1649 	ENTRY0("imiagination", "110608", "df766ac578a86f0b9d7231bddac5b09b", 252886),
1650 	ENTRY0("inamanor", "180117", "65b795d35855bb12e8914eeedd522c2c", 506996),
1651 	ENTRY0("inevita", "030428", "6152b19bbf3eb3dd4334004e7094dbe8", 213504),
1652 	ENTRY0("informatory", "981211", "c9eb276f103f83b8e7044c1f3930264b", 141312),
1653 	ENTRY0("inhumane", "950817", "e07f6bde81912a655468010fa13ed9f9", 68096),
1654 	ENTRY0("insight", "030209", "77cd4bd598e9f175faf8f84d6751c140", 151040),
1655 	ENTRY0("intangible", "131229", "b1941de7a9ce4efc9c21e7ba11072954", 304060),
1656 	ENTRY0("ifplayer", "130325", "d471621d98969c2c3050586af788a88f", 251826),
1657 	ENTRY0("interviewrockstar", "120223", "559b8521d944c959739095fc3f0e06b7", 243226),
1658 	ENTRY0("lionskin", "121106", "dfdc63b480603baf62a2ccb34533bf0a", 325570),
1659 	ENTRY0("invisibleadv", "100130", "f42de996030f1caeb1695c6923db2249", 336896),
1660 	ENTRY0("cubicle", "160411", "6a83df1b1ce0d799847c80741d2cc7df", 347684),
1661 	ENTRY0("pressedon", "130323", "26ece4d715035234a5d6d8275bd4de85", 246968),
1662 	ENTRY0("islandsfaraway", "100426", "67a890cf7b6bc8c2b40ff101a3a69784", 262616),
1663 	ENTRY0("intruder", "990210", "c42924c9879af8cb682d490aaf9841b0", 175104),
1664 	ENTRY0("iraqiinvasion", "080131", "427ff378923f675915b95993b5858704", 260780),
1665 	ENTRY0("iraqiinvasion", "080131", "c3ba7d2b115625e962e0614a5c381f4d", 259072),
1666 	ENTRY0("iraqiinvasion", "r88/080131/zblorb", "1670420ec9b3c4b8f7fc77ae0c469e8c", 260780),
1667 	ENTRY0("iraqiinvasion", "r88/080131/z8", "0aa77d630a8c395e656883718e2bd867", 259072),
1668 	ENTRY0("beanstalker", "180105", "6490a77e5f0d5e01b37c0ed29e017a56", 33812),
1669 	ENTRY0("jetblue", "051012", "e1b0f957e0a4967a0f5d66f9e7313944", 209920),
1670 	ENTRY0("jewelofknowledge", "990710", "38c384ce3d1c31791fe98859558dcb68", 225792),
1671 	ENTRY0("jigsaw", "951129", "44b8fdbadfc399f48a3367fade486e07", 304640),
1672 	ENTRY0("jigsawrules", "951128", "a1f0f980850e6b7e4ef79f93d549a227", 64000),
1673 	ENTRY0("jigsaw", "951129", "faefa6d593cebdd177167c24f7cfd373", 262144),
1674 	ENTRY0("juicehead", "150112", "54288e72711653d544da189152eaea0b", 272146),
1675 	ENTRY0("justanotherday", "170129", "33a1880b1813fbc0d7ceac6ca75dfe59", 616844),
1676 	ENTRY0("karn", "961207", "daa05c92a3a1b678c29fe8bbf64a09be", 165888),
1677 	ENTRY0("keepingdido", "120516", "56eb7cbeb898cbd892146d9795a91d4b", 332180),
1678 	ENTRY0("kentishplover", "200118", "d06991d44cdedc0ce4cbf17b3aa79f76", 162816),
1679 	ENTRY0("kidnapsea", "110608", "ddcf23cb530746544e0f416337dcf6bc", 191488),
1680 	ENTRY0("kierkegaardsspider", "120413", "19f457515033fd938856e6507b8a6bc1", 254414),
1681 	ENTRY0("kiiwii", "141113", "091ab4e450db053a419fb4a8ffe87a22", 255488),
1682 	ENTRY0("killingthedoctor", "010221", "6370cf6b47fee82e75f1edb6e4b7f7b0", 57344),
1683 	ENTRY0("kirby", "062776", "7750af7ab62cb01dd04e5b665d299d1e", 143360),
1684 	ENTRY0("kitten", "130320", "a55520ba5084b68bfb3d1ba9346dd2d6", 45056),
1685 	ENTRY0("kooku", "971119", "68dc431ab53ff87af1a3bc037122667e", 94208),
1686 	ENTRY0("lambs", "971010", "39b487be161e229f56badbec69466a5c", 47104),
1687 	ENTRY0("lambs2", "021230", "2f6596397a42fdd83407cb2520cffaea", 59904),
1688 	ENTRY0("largemachine", "010905", "abd265d7c2622ff6d9ca9ff5266cb802", 160768),
1689 	ENTRY0("lash", "000806", "1ff1bffe7386b44fc4d34a34fc59ed3e", 370176),
1690 	ENTRY0("ldodoom", "000801", "b4a663fc9adf6b344b7b64eb58ceff1f", 200192),
1691 	ENTRY0("leaptime", "081230", "aa7363833f61f3b5ac21d2d681ab74bb", 233984),
1692 	ENTRY0("lecture", "140813", "b8f9441556f6e785fade1e41d75458d3", 493520),
1693 	ENTRY0("lecture", "200414", "3fac793cf1a93f0f061dc6ca508315f5", 493520),
1694 	ENTRY0("lex", "120830", "29de1a490f09a9c756b28c00bcc95230", 368060),
1695 	ENTRY0("libraryfront", "951204", "e54ca81e93629a6e8ab2dbc84a6712b4", 72704),
1696 	ENTRY0("librarian", "130211", "ff40eb307c9ec5b015531201cb0bcf00", 247754),
1697 	ENTRY0("lifeordeath", "980702", "aa820dffedafe40d7d3f895ec8f30840", 51200),
1698 	ENTRY0("blacklily", "150318", "f74981accbff8eaa36e07bb175640ea2", 199124),
1699 	ENTRY0("limp", "980517", "9e36e35b17cbdebcd9d348de156b51df", 47104),
1700 	ENTRY0("nemeanlion", "081113", "c298fdabefb085ca297f0f0917e2fd4e", 77824),
1701 	ENTRY0("lists", "960823", "c4373396c5c8e499073b175349161359", 116224),
1702 	ENTRY0("livejoseph", "111227", "08e7c0024e7735cc4ef7e8cf0e04c112", 264782),
1703 	ENTRY0("llr3", "070314", "4c2e6391bf678f0563fee5492c7e73c7", 164864),
1704 	ENTRY0("lmstvg", "081227", "971bdd7f99e59ea1afe0629c2adaa9f4", 189508),
1705 	ENTRY0("lookingtothesky", "110313", "c83056d3ad3775af870fab9ef800a00e", 379738),
1706 	ENTRY0("motherloose", "981128", "87de736abcf52f27a00d09b74cfda240", 206336),
1707 	ENTRY0("lostspellmaker", "980116", "f569560e28e57b0cc15abe69292ddb63", 128000),
1708 	ENTRY0("lostpigandplace", "080406", "400ab3efad70e5b454452e89bf0625e5", 285184),
1709 	ENTRY0("lostpigandplace", "080406", "f7ede4fcda5d7ee1fd8831e7f8fd2256", 390256),
1710 	ENTRY0("lostsheep", "130000", "dfed127ff9f1300dca25fb9f7d126716", 190976),
1711 	ENTRY0("ludicorp", "031010", "65250e5c5cfcb403f9fb870ac7e30041", 101888),
1712 	ENTRY0("magictoyshop", "951018", "68d597fc1a7b22419033628967dad19f", 73216),
1713 	ENTRY0("magicmuffin", "120505", "b68fdf687db87217caef5e6c9de65f4a", 208660),
1714 	ENTRY0("makeitgood", "090921", "1f4feb2361e05361ee27bf82f8a3c559", 512606),
1715 	ENTRY0("mansion", "010505", "cb310588d3ebdfe419b16ed29f5bc8df", 107008),
1716 	ENTRY0("revenger", "000403", "1f658ebcb395be17154e732cc6306dc9", 88064),
1717 	ENTRY0("masquerade", "010122", "a88a4f7cc20883249db3aaae1aad871c", 225280),
1718 	ENTRY0("medusa", "030314", "f9e93b13a6f940ef0d25cfef559e36c8", 109056),
1719 	ENTRY0("mercurytrucking", "r0/990424", "d4e2a55d878dec5878e4cf9d43361d9b", 150016),
1720 	ENTRY0("mercy", "980217", "865d53d9764636ddf1bcaa2b703673a6", 97792),
1721 	ENTRY0("metamorphoses", "020222", "cb23d62a4dce52afd6104683aface9f6", 177664),
1722 	ENTRY0("mhpquest", "960613", "58b0832c491d961426b73a6b989e905a", 52736),
1723 	ENTRY0("midpoints", "010330", "1004502d7dea284be6c6298316c5f9c8", 94720),
1724 	ENTRY0("mimesis", "980110", "abd66d64b98d47ebc88f69d35816fdf8", 90112),
1725 	ENTRY0("mindelectric", "941008", "900aae2e5ef17d957e26e8bc0ef90b86", 70656),
1726 	ENTRY0("mines", "101029", "fb2d0e729e8b50d7d10f71b06317b3b3", 65536),
1727 	ENTRY0("christminster", "961117", "86e6349dfa3ef6153cd1c0ecb9b4fc6a", 228352),
1728 	ENTRY0("misdirection", "060304", "39a12ab5997240cf406f3c67001685fe", 221184),
1729 	ENTRY0("missinggrandpa", "120319", "3e315935045c1cdd15bb37a8e8700cc1", 590198),
1730 	ENTRY0("mobius", "061119", "ffafe18502f8c83789f904dde63f9938", 427364),
1731 	ENTRY0("monstermaker", "150817", "f0565d38e01ae2ec048b5f3b8ceb4de4", 285696),
1732 	ENTRY0("monzasphantom", "070219", "b5f91ecd114f3257ad269f1afb64b64e", 116092),
1733 	ENTRY0("moonshaped", "080710", "1cfa040aace3a4cb249818684fb43b9f", 447840),
1734 	ENTRY0("moonglow", "041011", "3ee29824d9875a4ae21e82b88813990e", 10239),
1735 	ENTRY0("moonwrecked", "110309", "1cc71e3087cb4f92fc244a5c72b8a078", 264668),
1736 	ENTRY0("more", "140604", "6e3ec8554b9c877c088fa586c965d896", 315392),
1737 	ENTRY0("mortlakemanor", "120304", "80d317fd404451e436e9c36de5445de8", 261632),
1738 	ENTRY0("mountain", "030317", "b84bb15597f7aa53ae407e2d996c0c6c", 103424),
1739 	ENTRY0("mousequest", "100509", "2993b235743e6a6a4d69063e80c187d9", 325062),
1740 	ENTRY0("mrp", "140620", "974627f05fc3e1c2260925a78171d73a", 175288),
1741 	ENTRY0("mst3k1", "960831", "362107be49493f6ed1ca7664d7884a66", 105984),
1742 	ENTRY0("mst3k1", "000715", "0a0748937d23bf380cd139de874df32d", 141312),
1743 	ENTRY0("mst3k2", "000715", "cf16a0b763735b06cebef3cd5fdf2c78", 121344),
1744 	ENTRY0("mulldoon", "000724", "84ef2f5f00c06d6cad6b0817844fade5", 468992),
1745 	ENTRY0("mulldoonmurders", "020214", "1dfc1e3605f6eebfca49e8fca17e957b", 231424),
1746 	ENTRY0("murdac", "111115", "790b5e8cf9677615d17ee75e89a99d4a", 78336),
1747 	ENTRY0("murdererleft", "120117", "cb99b94b046bd7b7db8912617f3da9c5", 196608),
1748 	ENTRY0("muse", "990922", "4dd315769b9d4c4782adaac1d42d0283", 175104),
1749 	ENTRY0("musician", "070820", "0b5aabdb180fdf0199f7779baab3e354", 142848),
1750 	ENTRY0("mylastduchess", "140510", "82cd30149bdfec0ae3a149b1f612dfa9", 258998),
1751 	ENTRY0("conceptisproven", "120620", "e5f443e775546084096fe11afb6a313f", 291292),
1752 	ENTRY0("oceantower", "110510", "27e6ac7767ac9dfe5f0082765f6a21b7", 306962),
1753 	ENTRY0("myangel", "001218", "f478be18002189fe31df1c499ceab89f", 257536),
1754 	ENTRY0("nameless", "131206", "197a58d317be0e6060c490bd40baf8a1", 472064),
1755 	ENTRY0("nautilisia", "130422", "aaa73314eca2a1731f5f212c7de11aef", 1796142),
1756 	ENTRY0("newday", "560827", "c43124915cd5677e0c2e89f081586e8b", 125440),
1757 	ENTRY0("nidus", "140416", "8eefda240f46c6b5516a3a1fdfa53497", 117248),
1758 	ENTRY0("nightcomputer", "961118", "c2ecd9885f53897d253ff11cb80f62ad", 74752),
1759 	ENTRY0("nightchristmas", "061224", "e4eea0aa89a8cb9a614c1e8122498425", 124894),
1760 	ENTRY0("nihilism", "151001", "9157c2d79e12924a91ed2fd4b3bb490a", 317952),
1761 	ENTRY0("ninepoints", "961127", "278e64924fed8e10b89819c0433daeb2", 74752),
1762 	ENTRY0("njag", "r3/210603", "313bcf0f118737b34ab2507928e1f47c", 174080),
1763 	ENTRY0("njag2", "000319", "b566c2127fdd479ae4afdb5f2d019403", 147456),
1764 	ENTRY0("noroom", "040117", "d3fd94d4560c15ff6bfb8327b56c97f4", 61952),
1765 	ENTRY0("northnorth", "141114", "447ba8bf4e026bd1c6995a3d9306d207", 347136),
1766 	ENTRY0("nudistsgonewild", "120425", "5f98bc9a14ff9a8c2cabd78238fafcb3", 180224),
1767 	ENTRY0("adventurelobjan", "961209", "e8cdbc003c5bc0965ad2f04a4a7806db", 147968),
1768 	ENTRY0("oad", "000913", "c4d1e88c95803bb9ae0e669c575feb67", 78336),
1769 	ENTRY0("odieus", "941021", "b75120eda34c37c87201405426329892", 50176),
1770 	ENTRY0("omniquest", "040127", "6d246b048e071dca1c2f47e64e76f10d", 95744),
1771 	ENTRY0("onegirl", "020113", "7ff5749ec2881b1343c06fc5950f928e", 173568),
1772 	ENTRY0("ogisoas", "101102", "673a5bb3476d15e3d54ddba3176d9568", 155648),
1773 	ENTRY0("onyourback", "130506", "c942e2c31131f799481e61ebd878b4f2", 173056),
1774 	ENTRY0("orevore", "071116", "fc4d75670412a50ffdc98e483adfaf5f", 415744),
1775 	ENTRY0("bloodless", "111217", "bf633d44d9ae34fb006aa1c135d24fe2", 188928),
1776 	ENTRY0("orion", "041123", "16995ce9a4abe4a4670471beda078611", 204288),
1777 	ENTRY0("ottumwa", "021409", "7bf33289ff4c6fbdfd467b387534b309", 123904),
1778 	ENTRY0("outofthepit", "110515", "dc78b694b2ca682084ac7efd769acd9d", 276932),
1779 	ENTRY0("paddlingmania", "314159", "8e995f6fdfcf7e96ee9cf6a142bc5053", 54784),
1780 	ENTRY0("paint", "980316", "2028550b59c1b2f0892e90545ba15adb", 9216),
1781 	ENTRY0("palebluelight", "110708", "94ada352a565eeae35738b0ecdd3ecfd", 355538),
1782 	ENTRY0("paperchase", "950503", "dd421533f35d62d0da704958e5b33d51", 57344),
1783 	ENTRY0("parallel", "080219", "b50ce87302a473152ae9d556dc5f9419", 158720),
1784 	ENTRY0("parallel", "140414", "2e50a0ce61383d3c28c23f2b142a0f03", 210900),
1785 	ENTRY0("paranoia", "981208", "1309a1b60d62af820d17ee812b0f8a61", 80384),
1786 	ENTRY0("paranoia", "090803", "887280c21df983c85eef98080abd182e", 137090),
1787 	ENTRY0("parc", "111115", "bd8698030864dacbf494226fc6b9dd0c", 98816),
1788 	ENTRY0("pasdedeux", "190923", "b7210c938e19393802dd4628153c494f", 601196),
1789 	ENTRY0("pathway", "080511", "8eb9bc735afa30d84fd4f913fc29bbc3", 264192),
1790 	ENTRY0("peacock", "000208", "5a4cdec49d14f905013ad9ae35ba17f8", 78336),
1791 	ENTRY0("zpegasus", "130708", "f65a086805d473b3ccbfb9971383ef65", 417200),
1792 	ENTRY0("pentari", "030206", "3879d37f7417f6ce2a0acb96faf00c86", 91136),
1793 	ENTRY0("perilousmagic", "990821", "56901ae08078fc15fb74a50e48101bbf", 66560),
1794 	ENTRY0("perrysworld", "070501", "6466fe74c657f960521237d5a3274b05", 124300),
1795 	ENTRY0("philosophersstone", "427301", "3684b64c0b5972908af83893ab662bf1", 93696),
1796 	ENTRY0("phlegm", "970804", "2f6f7667a3c2782aa0f24eeef7c7fec0", 70656),
1797 	ENTRY0("photographportrait", "040827", "0949e8e4d3e1e035913fc75112f40459", 264012),
1798 	ENTRY0("photopia", "120416", "3e9ea30956eb3e9494e6e5d9881a1307", 239616),
1799 	ENTRY0("piece", "970819", "5703a209e660a58f456b0ec99707c3fd", 105984),
1800 	ENTRY0("pigpancake", "110410", "7e6e0b1c90a9a01b4fbaea21ad729d55", 236446),
1801 	ENTRY0("piracy2", "100408", "86e2ed40f55413f29fa97bd6e4c31260", 249856),
1802 	ENTRY0("piraterailroad", "110920", "20d019cd1654f5d9d3c1bcffdbded2cc", 333500),
1803 	ENTRY0("iceprincess", "960901", "f00f7e3f96670613ee73ec51ef2b2957", 84480),
1804 	ENTRY0("praser5", "r4/050509", "d7f86984c2a35d0304a48989f56cb0aa", 35328),
1805 	ENTRY0("primer", "171025", "744648014bb7291f42eae31a79410d59", 255430),
1806 	ENTRY0("primrose", "r4/091222", "47b4978d4709f5783a674de899e2d73e", 620384),
1807 	ENTRY0("probing", "990919", "f7cbdd49ae15d380f66ab247c118f17d", 73216),
1808 	ENTRY0("promoted", "1.1", "b5ef006c83dcf2e2f175aebb64c7870a", 124928),
1809 	ENTRY0("puppetman", "040803", "ad3143a695c3406e7ede1f39dfb6ba63", 110080),
1810 	ENTRY0("punkpoints", "010108", "ffb32fb83c4480a3109755572819623a", 136704),
1811 	ENTRY0("putpbaa", "010618", "458a35f2318afa617fe4679f8c0ec9a5", 132096),
1812 	ENTRY0("pytho", "020223", "a5e3d0ebd1f81ca341cf93a721f6ed3c", 293376),
1813 	ENTRY0("muffinquest", "120326", "58eedaa233021cbd8f90ea503b0c3fc1", 438082),
1814 	ENTRY0("muffinquest3", "120505", "41462801e25ca195c377ad34ee080c9c", 439162),
1815 	ENTRY0("simpletheft2", "110601", "21c13d6583c2ce9714e9bdc31adcab82", 357818),
1816 	ENTRY0("quidditch1954", "121022", "ae9626ce114047e0d1247d226cd9cc4a", 330710),
1817 	ENTRY0("ralph", "040309", "ff6d29e293d82c49b4a5f4b21ce96655", 78848),
1818 	ENTRY0("rameses", "061023", "6ea654d98a64cb50eff35d7a613cdfb1", 167166),
1819 	ENTRY0("rans", "000918", "1577894d9022d221f9db27f7a96d4d4f", 180224),
1820 	ENTRY0("ranshints", "000917", "b509a63314d10abf17272244db3f3bb0", 64000),
1821 	ENTRY0("rachaelbadday", "070328", "3147589b43da574303bffb26c5f317ba", 269312),
1822 	ENTRY0("readinginmay", "120109", "9ae7c7c4f4162262ea3fdfe49c30c0e7", 196096),
1823 	ENTRY0("reddex", "200124", "c393172b2250524493ff34ac767baac6", 379392),
1824 	ENTRY0("relief", "000820", "91046311f44a670f51738fcf5dc5a6cd", 94720),
1825 	ENTRY0("reorsbushcave", "170416", "1d010db82d499b06e27c28375f867fcb", 329216),
1826 	ENTRY0("reorsbushcave", "170406", "f84a6d0aaebc242b5b12fdf3f9315a33", 1058880),
1827 	ENTRY0("reser", "050209", "ba7e7d973ce19279d7eacf9c5ef80136", 90112),
1828 	ENTRY0("resident", "970908", "ae5612cc75ac734de51d864c9e8d9976", 136704),
1829 	ENTRY0("retrofatale", "110713", "b7816c11b5dc619c9b1e37ffb6575577", 222208),
1830 	ENTRY0("reverb", "990110", "fb3d80d0f92857286a4fd7e6c2892293", 106496),
1831 	ENTRY0("reverzi", "991218", "31252071da0fb3dde08ae45f74a768f9", 9728),
1832 	ENTRY0("ribbons", "010702", "7c45bffcbbd611a499e0803805fa87ea", 110080),
1833 	ENTRY0("risenecropolis", "171208", "c01ccee1f849be82cccc85a1ab62d52b", 473566),
1834 	ENTRY0("risorg", "171114", "e6e6c0e75711a28aac39afe185bea1f6", 475616),
1835 	ENTRY0("robots", "980115", "0f9ad287635965ae521c62d29329eb2d", 6144),
1836 	ENTRY0("rogue", "980706", "c4e104c4dec6381ee1a8943aa4e008e5", 116736),
1837 	ENTRY0("roomserial", "120627", "9470b6e7a2cdcb43422e75deba20b864", 302080),
1838 	ENTRY0("rota", "060430", "ca0f6e049bf7b17407e28a3f88e19416", 671830),
1839 	ENTRY0("rpn", "090531", "d74a5da655a81e03447b4a241c1b5b21", 142720),
1840 	ENTRY0("ruins", "", "eaa31d111bb030109a2cef31f0e70022", 100352),
1841 	ENTRY0("rtdoom", "000831", "5a8494839033e8c4dd036b6875e1641e", 179200),
1842 	ENTRY0("samegame", "980731", "ffe1011cf0a3cae333825fcda58153da", 7168),
1843 	ENTRY0("samhain", "001021", "9cb11fc72283939161b456c1592b00d0", 69120),
1844 	ENTRY0("sanddancer", "r7/201004", "51f0263ed2ddc4916bedf7df03a316b3", 2157434),
1845 	ENTRY0("sangraal", "111115", "b663b3dd73ca57b4ddd6fafe7ec4ac0d", 150016),
1846 	ENTRY0("santassleighride", "081227", "a4b5276e5885ed3e93f1ae0319488404", 441730),
1847 	ENTRY0("saveprinceton", "041125", "13f9e45a4cbf39d541dea08b774377d1", 288256),
1848 	ENTRY0("savoirfaire", "040205", "eb122ee416ee8fa1e6f909b6de6ad9c0", 442212),
1849 	ENTRY0("scald", "180206", "07fb2e2748c3835bf4d1aaba70a708c7", 194048),
1850 	ENTRY0("informschool", "991217", "388c8e73dd3611e67ed335b6234f4e2e", 241664),
1851 	ENTRY0("schooldays", "092800", "2c3334c637e37b1b80ea089d6911477a", 192000),
1852 	ENTRY0("scopa", "110321", "621b223a5f02c7e49d18ae0d6b588d19", 101376),
1853 	ENTRY0("finalselection", "061009", "2dd1a94db68abf9626f55e8bd6fa91a7", 151040),
1854 	ENTRY0("sfiction", "120706", "662d83be00d1a832e37bdedc565c1a71", 275968),
1855 	ENTRY0("shadowgatez", "040616", "9015104db32c046798870273f0754d3c", 141824),
1856 	ENTRY0("sheepcrossing", "200928", "22c2f8a7784272952125344f9e52ccd0", 411456),
1857 	ENTRY0("sherlock1", "021024", "97577dc5e6be837277acd5c134620d92", 230912),
1858 	ENTRY0("sherlock2", "021101", "b4e67e63abe681449d5cc727b161e4ea", 285794),
1859 	ENTRY0("sherlock3", "021114", "605303b5dfddc04e590e6f060369463f", 220672),
1860 	ENTRY0("sherlock4", "021231", "7b231c7acafc9a4959c859b68578d528", 217600),
1861 	ENTRY0("shade", "001127", "e9ef7c17a40a4d0a30bb30c37ae1e4c5", 108544),
1862 	ENTRY0("shadowofmemories", "061124", "07b4c14e309c00f8adec901afbc0e58b", 179094),
1863 	ENTRY0("shadowsoldiers", "070625", "985406d500afb5e29a3b174b28b1f21e", 150418),
1864 	ENTRY0("shallow", "121109", "cc2d82b5453ec921e69a80c04e1f1ad7", 245696),
1865 	ENTRY0("sherbet", "961216", "46a865c6f01a800536463ffe93fb3d9d", 174592),
1866 	ENTRY0("shrapnel", "000212", "cce4edfddaa7ce948cacdb0fde52fb2d", 98304),
1867 	ENTRY0("siliconcastles", "1.1/r112/011119", "51d94f5e8684cae443e28c16e3e04fea", 211456),
1868 	ENTRY0("sixgrayrats", "150331", "1a2b10729ebb83a08a38f0c80020a34d", 428544),
1869 	ENTRY0("slackerx", "971009", "c7014f074407ddebc685dcd7bce5bd37", 55296),
1870 	ENTRY0("sleepcycle", "101217", "5c9c1b6c46c057099cdc6ad04f30407d", 253892),
1871 	ENTRY0("slouchingbedlam", "030925", "0f870671f3d7569d57eb79a8be9b4a28", 216576),
1872 	ENTRY0("snafufun", "990925", "2b04ac88022c9df74b4ae59cb3f75f27", 13312),
1873 	ENTRY0("snowquest", "100127", "2442363dd6f7f2ee6a6ca840ca9d9881", 1034206),
1874 	ENTRY0("sofar", "961218", "026e1c0b7ef555011df2a9f72a2db574", 300032),
1875 	ENTRY0("softporn", "971018", "6624ea7bffdef1e14e28f57a90b621b0", 105984),
1876 	ENTRY0("solitary", "040607", "18011f0b8e3cf6aa6403313bdec2df0e", 97280),
1877 	ENTRY0("somewhere", "080129", "abbd658087b2c7d0a52a5a787c75c0a3", 189952),
1878 	ENTRY0("soreality", "100127", "1a43e51209ae7a2fa51081aff804b3c6", 146944),
1879 	ENTRY0("neverplayed", "140327", "69d214a7a657a8ea7f2cb951b8bc3edd", 980260),
1880 	ENTRY0("spacestation", "040130", "1bcf00508a8054c366d07dd507f81b22", 137216),
1881 	ENTRY0("spaceinvaderz", "980710", "51ebab3a743c783ed284a582346b90ba", 22528),
1882 	ENTRY0("spadventure", "971030", "519630c6c94fd783104061e439d57a8c", 143360),
1883 	ENTRY0("spiritwrak", "960606", "bfa367d09a262d4efc83cb1ba1a99efc", 260096),
1884 	ENTRY0("sporkery1", "080111", "eebd7008071529686b367b6641b9c52b", 147968),
1885 	ENTRY0("spot", "021025", "0f1feec607bd423d9f1a95748dbd1245", 55296),
1886 	ENTRY0("spring", "080207", "e74ccd9b57ee13df8ad2d20c14cb76b4", 330240),
1887 	ENTRY0("spring2020", "200414", "a06ded7137168b94844ab002ee7aa7e8", 320000),
1888 	ENTRY0("spycatcher", "111115", "628c860890e6393f22d81af5c96e9bcb", 126464),
1889 	ENTRY0("starborn", "110116", "0f22fb91edc9e64ad292fd6a7ca39f2e", 418624),
1890 	ENTRY0("seeksorrow", "160602", "6108059cd52dc1aba9112b554d6aee0f", 1365918),
1891 	ENTRY0("starlightz", "130802", "86c1069f38ca76dad28c10d05dbdf59b", 359936),
1892 	ENTRY0("stealingthestolen", "161222", "6daa42b7ae7f933fcf2fa441e702ea70", 424914),
1893 	ENTRY0("stiffmst", "690609", "33746a619e4ac30a1b9be82349187062", 82432),
1894 	ENTRY0("stinkorswim", "090105", "7ed52b7400c044b4c3b47fa44154b5bb", 232448),
1895 	ENTRY0("stonecave", "091103", "87858ce7d11ae814029c5b550682c255", 220672),
1896 	ENTRY0("stormcellar", "081022", "c38434a33b97a9616956ce48a7d69404", 384600),
1897 	ENTRY0("strangeworld", "091012", "d7c09eadf30d77858c88dc0f6706ceaa", 247230),
1898 	ENTRY0("suicide", "101103", "a936b12bd8f8c80e5948f6035e1eb86b", 343040),
1899 	ENTRY0("sunburn", "150214", "598cc42e8184a840bab2d38c6d6dece0", 471332),
1900 	ENTRY0("sunburst", "070222", "9f1eee6db8dce7cfb803e5c430fe942a", 65532),
1901 	ENTRY0("sundayafternoon", "121213", "73d9c96d54922bcd58781aff41e449ed", 347136),
1902 	ENTRY0("briantimmons", "130114", "94545a75f7c9f0bc33a171a925f49af6", 544936),
1903 	ENTRY0("sushi", "010416", "a8a04fb57890e1cd1d13bae889a5e2af", 327668),
1904 	ENTRY0("sutwin", "970402", "b4fe3b29aab816470906ce3ae0613ba4", 31744),
1905 	ENTRY0("suvehnux", "071226", "e82d434c1c0a73a8755a9394a7c2e088", 248320),
1906 	ENTRY0("swineback", "060422", "853342a5b088a2998201123b0c5faa73", 111104),
1907 	ENTRY0("sycamoratree", "980107", "335cb583a295cfd8a3de4e9cd2a267ee", 54272),
1908 	ENTRY0("taipan", "020520", "0bd7a62517400c66fc961908688d1671", 37888),
1909 	ENTRY0("spiderandweb", "980226", "2bac499c020fcdd75b9c4b65e4c1d85d", 221184),
1910 	ENTRY0("tatctae", "970521", "21cf40691e0ba92d8e699b0fa3e18728", 378368),
1911 	ENTRY0("tauntingdonut", "080612", "4d8443e896e7f294cc4a250c6090f6cf", 167482),
1912 	ENTRY0("tblw", "121030", "4b6744d2b13fd85db5020788e0888f0d", 295424),
1913 	ENTRY0("tcoty", "060908", "8bff4a19b0c1b9aa661f6e00d86df3b4", 471950),
1914 	ENTRY0("teacherfeature", "071126", "be559856dd11f6b1fa5c5ed10f83f90a", 118784),
1915 	ENTRY0("williamtell", "021025", "4f098036ffdc7463000c4f81b6300123", 68096),
1916 	ENTRY0("telling", "060518", "cfcbfc5d4a7faad9724f7bae961ee71b", 316014),
1917 	ENTRY0("temple", "021118", "1592469a7f1f503789443d2f56f5113f", 107008),
1918 	ENTRY0("terrortabby", "080514", "86d448c209e93f1caa12a319406313fa", 204800),
1919 	ENTRY0("tesseract", "031227", "583899fe706bd1367e31ad5a9f1c8ed2", 93696),
1920 	ENTRY0("tgm", "050330", "e345e2527801880bffc74981571875c9", 44544),
1921 	ENTRY0("thatdamnremote", "091214", "2b10cdcc7a83f6e82d3909838e5b439f", 251490),
1922 	ENTRY0("thatdamnelevator", "160710", "4986a2629b35b9092b5bddf40df5417b", 415184),
1923 	ENTRY0("penury", "120528", "58939b4506dc1e27b36cb7e75a1e2479", 231424),
1924 	ENTRY0("penury", "120528", "5d0cb16db2d9e72ce9f27d3764a375a9", 250436),
1925 	ENTRY0("cenricfamilycurse", "131022", "f0496ff6c8bc01931f6034373fbf1d44", 281730),
1926 	ENTRY0("cenricfamilycurse", "131218", "4fa3db6430e3a54f88962a75857ebb2f", 289096),
1927 	ENTRY0("tcomremake", "121103", "a36310280c2a70393dfa8750ce31c3dd", 1174070),
1928 	ENTRY0("tcomremake", "121103", "2fd621df080f2b8c5fbe78ca99dc00c4", 176640),
1929 	ENTRY0("tcomremake", "121103", "aa9995de3edd044db0f10fee2ba0f3ba", 256500),
1930 	ENTRY0("house", "070714", "4b146b3d5b81a3b3359ed3f3059910ab", 468830),
1931 	ENTRY0("advhoudini", "120511", "51982015d7f804d5bf5a25e2906b281a", 579228),
1932 	ENTRY0("theatre", "951203", "8b3db2f9039696ffa0114d55ac219ab9", 185856),
1933 	ENTRY0("dayishothitler", "081206", "2bb145727b016ab76c35acfae729293e", 175616),
1934 	ENTRY0("doghouse", "101130", "6476e788310c44c52d5249a66d07d037", 712070),
1935 	ENTRY0("emptyroom", "100813", "9b3b2c5ae701ef457baaf3db6e2aa06e", 320960),
1936 	ENTRY0("forgottengirls", "120817", "421e83ead89a7a0f2fd05791f9b87db7", 410034),
1937 	ENTRY0("henribeauchamp", "080621", "d9088b3260fdaf30fa81cde478472eca", 179712),
1938 	ENTRY0("garliccage", "120209", "04a598fea9264a290e2c34f0b63f8042", 176640),
1939 	ENTRY0("grandquest", "091209", "3fd8b15a0282e9eb9ef642776bbd916e", 181760),
1940 	ENTRY0("thegreat", "010902", "285ad766a386886e814e6c22ed990a7f", 91648),
1941 	ENTRY0("greatpancake", "180117", "9f4e359b40bc53631937c2c44ee5082c", 264268),
1942 	ENTRY0("horriblepyramid", "131201", "b3dfa0f543f7ca3343ca62cc5ec7847f", 365004),
1943 	ENTRY0("houseoffear", "141121", "86812b0b8866038dcce67ba265e5bd5e", 572530),
1944 	ENTRY0("island", "130226", "6ee80981b5921ad6f159ed740b54dd1a", 354882),
1945 	ENTRY0("kazooist", "130105", "9ae3841d39c8b6f8dffa9c84408d9744", 204308),
1946 	ENTRY0("priceoffreedom", "120919", "589c7d77bae5aaa502807021e506fb6b", 178072),
1947 	ENTRY0("prize", "120827", "9dc341cb340b6950602c52bd8ef76305", 408786),
1948 	ENTRY0("nascarexperience", "130827", "d45dc3ab1f9898cf85a09854db0a6b17", 152576),
1949 	ENTRY0("smallroom", "100805", "5102ac48e17b26b69ab8737ceb00b3d5", 154112),
1950 	ENTRY0("theimpossiblebottle", "1",  "ca6e77c892f34f602ea25277a8ac6a20", 759930),
1951 	ENTRY0("spotlight", "140531", "ac25066421da9530f5f19c7245d0f6d9", 336384),
1952 	ENTRY0("stargods", "111216", "92a0b939e5d12178f74b3e23ece89ca1", 268288),
1953 	ENTRY0("thetempest", "", "b66d923bb90e5c0c84b79d0934e9a7b6", 155648),
1954 	ENTRY0("terribleoldmanse", "100819", "518a610437203e063fa550d5c240e664", 891570),
1955 	ENTRY0("townmusicians", "120125", "35624466eb61b2dcbc408cd6c75a6ab9", 414042),
1956 	ENTRY0("warblersnest", "131221", "147d80b524cf8ee812459c0a7426cb87", 863268),
1957 	ENTRY0("vergingpaths", "151027", "c6df1e824df593e8c4995502e6704571", 1131672),
1958 	ENTRY0("minimalistgame", "101102", "4ea052eed3e86283912bff5e817151fb", 151040),
1959 	ENTRY0("talemorning", "140109", "234a6da218d56ca47410f7e03c2b89a8", 286756),
1960 	ENTRY0("paperbagprincess", "150818", "fdf4a244b41e4a314cfa189ba85453cb", 398848),
1961 	ENTRY0("worldupsidedown", "151224", "1b7311638555848aaf3a50857ed4035b", 457496),
1962 	ENTRY0("takethedogout", "210328", "3cc6fd155953f3a5321f6e762ff2cd19", 434112),
1963 	ENTRY0("the5continent", "190719", "945907c269cf9e20a7584544df8db671", 171520),
1964 	ENTRY0("thecomputerlady", "190702", "025908635a0028671f099b10e0ad5141", 165376),
1965 	ENTRY0("thegrandtour", "190512", "d651655f0500e4f6997599d25bd23c2a", 159232),
1966 	ENTRY0("theinvestment", "200916", "d2375e3e699726214174dfe656894a02", 34664),
1967 	ENTRY0("thejob", "r4/210608", "dc2167b524b00040e7540251b1eec08d", 44032),
1968 	ENTRY0("thesproutpouch", "r42/170462", "70d182102f3544fdb72968f942ccf73c", 1057454),
1969 	ENTRY0("theenchantedcastle", "190527", "d06c767152545fc81b06ac004389afbb", 455630),
1970 	ENTRY0("themall", "r0/190718", "c63d87266eb12e24308d9046da2aab22", 87552),
1971 	ENTRY0("thorn", "030701", "63faf28ec7cad962816e9ed3a7310a74", 75776),
1972 	ENTRY0("threecows", "120208", "449fd20d3b0981ba6f8a7d929e56c820", 153088),
1973 	ENTRY0("threediopolis", "140817", "76929b10a1fddcbba4e704b9d7fecdc0", 584032),
1974 	ENTRY0("threemore", "120110", "d89d23f3cacd8541df1b1792362b206b", 155136),
1975 	ENTRY0("timefortea", "100617", "af469380d1ace75480a80f578091ac4f", 313344),
1976 	ENTRY0("tirehoax", "080104", "09b696f73a1d2d37ee376fac97a2c406", 228746),
1977 	ENTRY0("tk1", "950925", "7c93a305295c891ba9de5cad4c190f8c", 52224),
1978 	ENTRY0("tkatc", "151121", "cecca5aa05f7ea35550b473b90c3766e", 408576),
1979 	ENTRY0("tok", "100227", "1b3b24c4616bf7e47e99eacca7308153", 241590),
1980 	ENTRY0("downtowntokyo", "000615", "8d9ef45f2bc4fdb8eccf7d9991a2c76b", 107520),
1981 	ENTRY0("tower", "151228", "04de5c49bb3eecb4e4d1cb0fd5ea4a93", 391156),
1982 	ENTRY0("toxinx", "110519", "2223181742216f1c1bb74bca88dda729", 200704),
1983 	ENTRY0("trapped", "110413", "b05f8909d1bbedb97f6c50eac19d6b2a", 254362),
1984 	ENTRY0("tristamisland", "200925", "6fc31da7d0afb034f05b12da56d075a8", 56320),
1985 	ENTRY0("toask", "130614", "1491b55bbcb2a0e7b1bfe99b94a9d387", 524288),
1986 	ENTRY0("troll", "980518", "3e0f69e678dd289cd32bf41b2be58bd6", 64000),
1987 	ENTRY0("trw", "021229", "1fdb2baeefcabb635ddbbb3433b1b125", 126464),
1988 	ENTRY0("trystoffate", "970629", "7f7eb7e7df03025b9046139d042dd363", 165888),
1989 	ENTRY0("tubetrouble", "950901", "478a208e21def77097309c2b152a968e", 50176),
1990 	ENTRY0("tundra", "980127", "fd6f3bc3b4083ddbc7a090842bae2a9f", 73216),
1991 	ENTRY0("tutorial", "111030", "36147ba605eb49902f9d514a08638cd1", 468142),
1992 	ENTRY0("tutorialhotel", "100713", "2d57f52f53fa0845eb19ea97a29005fa", 154624),
1993 	ENTRY0("tuuli", "180501", "0b7e2bb3f6887f30fb98b54230acf039", 611734),
1994 	ENTRY0("typo", "041119", "549875ea83b4230896fa7d3fa18ba0a3", 100864),
1995 	ENTRY0("uhohdemo", "980218", "4e8b90354c96760f36bfbfa2ba4fc04c", 176640),
1996 	ENTRY0("underdoos", "970329", "3ef9b348b4223b901bdfacb854fee16e", 58880),
1997 	ENTRY0("undergroundz", "r2/191215", "c7eef6e46e4b4868fd140c0ec06f3e7d", 3458170),
1998 	ENTRY0("undergroundz", "r2/191215", "6d2d883d5cf75db5e026ebbf4988d663", 416256),
1999 	ENTRY0("underthebed", "120522", "96659568d70385c022a9ecc41fd6219c", 246272),
2000 	ENTRY0("unforgotten", "050930", "94966251577ca5807102f1acab09750e", 249856),
2001 	ENTRY0("ungodlyhour", "140927", "d91b088567ff78a3caaa863cfc6db7b0", 333874),
2002 	ENTRY0("uninvited", "121216", "2f364062b6d1f05c8b518a11d58c399b", 193536),
2003 	ENTRY0("uninvited", "121216", "c2b16596310202bf40c512c5de571858", 623410),
2004 	ENTRY0("uninvited", "r3/190918", "1e372c61557ec4a25a88f9eb8161c18c", 211456),
2005 	ENTRY0("unicornpool", "100914", "8bf72169c75e347b52aa592b544e1357", 111616),
2006 	ENTRY0("vacation", "060527", "0a0da195fa5c41a59028e69eeae2d9e0", 248320),
2007 	ENTRY0("vagueness", "080825", "6d3641b71d42516e573ff0cff90cd40e", 298402),
2008 	ENTRY0("vampiresun", "020405", "3364b9d9d1a754e1e3bab61a96957ed2", 254464),
2009 	ENTRY0("notinvenice", "120117", "191d800215e21a764394ec46efe9a728", 194560),
2010 	ENTRY0("vespers", "051128", "35377bb25ea1f3038377c8fb51795d6c", 309760),
2011 	ENTRY0("varicella", "990831", "f5791cd7d8ebfd568928eb2b888a5264", 501760),
2012 	ENTRY0("vigilance", "070106", "97364e2e3f4197bf9dcfeef8fa6e6ee9", 183296),
2013 	ENTRY0("vindaloo", "960613", "d4e69f29f435b55dff5057a1d0d5bd45", 53248),
2014 	ENTRY0("violet", "081123", "0941c8db96a7ef82ebf10fe6cdd1859e", 601262),
2015 	ENTRY0("virtuality", "100131", "a68fe31bf3cce9b3dea7da0d733f45b0", 397244),
2016 	ENTRY0("lackofvision", "980412", "25a2830653906a2225742505e1fd7cac", 47616),
2017 	ENTRY0("visitor", "000321", "9786e58864fdd7429c3218b07d023498", 56832),
2018 	ENTRY0("vosr", "060925", "73746a1dd6938ca4b034eb424936ffe7", 267776),
2019 	ENTRY0("wadewar3", "020512", "458b5b368a71329dcfc59223c449cf88", 143872),
2020 	ENTRY0("walkamongus", "r2/181202", "0a79a4dec57d44b6ee09fec8e868ea8e", 780152),
2021 	ENTRY0("walkinthepark", "100213", "d116d7a9a5160fc336b36f7e8a077a42", 145408),
2022 	ENTRY0("walkamongus", "181031", "5b6b726c28b897d299d4add5fcd3943e", 2292016),
2023 	ENTRY0("wallpaper", "061117", "b25d80417e7b783bdc377302a3b53138", 344978),
2024 	ENTRY0("warp", "640101", "3554d76096e5d06d9417e20a21e95ea0", 70144),
2025 	ENTRY0("wizardscastle", "000918", "b205946471d687d83b8dfc988734ab43", 34304),
2026 	ENTRY0("weapon", "010706", "b28a2d2ab4a2ba54e5c5d980764c26a4", 142336),
2027 	ENTRY0("weather", "960613", "00f90d5b28604243708ad41cc6a7dcea", 93696),
2028 	ENTRY0("thewedding", "970602", "40b0b13d420f894ebac54106f0e92ff8", 151552),
2029 	ENTRY0("thewedding", "100221", "b3749fb3d3999331bcd4415969cb6602", 255940),
2030 	ENTRY0("weirdcity", "140613", "0a434b5011389e47b391b707ccf6611a", 339786),
2031 	ENTRY0("weirdness", "030922", "e98bc679d94c0c1c6a241737f7c8ae28", 89600),
2032 	ENTRY0("welcometopuerto", "r1.1/20050101", "11a2ac552be710a810ce0f41862c40f4", 62976),
2033 	ENTRY0("wwwanderer", "080705", "a401b781048229b05b444bdbb68e5b71", 283592),
2034 	ENTRY0("wernersquest1", "020225", "e158f13e9f55eef58a0f7a6affec180e", 52736),
2035 	ENTRY0("wernersquest2", "020225", "6ebf8ffd5687674754473f4851df4c01", 52736),
2036 	ENTRY0("wernersquest3", "020225", "690a16946cacccaf2d5fd3ca2cf9fc4a", 52736),
2037 	ENTRY0("wernersquest4", "020225", "2098db329eff1b0d1cad56f89bd38723", 52736),
2038 	ENTRY0("weareunfinished", "160419", "28d307b40b627af2708c71aaf43a64d5", 413298),
2039 	ENTRY0("whispers", "050926", "360c24ec5c47ced2b03ce38c6e4e2e8d", 177152),
2040 	ENTRY0("whitehouses", "140511", "bfa0206e9903d19551db483f810efa09", 423362),
2041 	ENTRY0("wildflowers", "140825", "11df47a8f9ddebbe3ed903ef8c85597a", 518936),
2042 	ENTRY0("winchester", "020131", "9abc235bc791a3f38ee81aa6496112d0", 293888),
2043 	ENTRY0("windhall", "960828", "eced9e2a38a5b694ceab8ffa4c120b90", 320000),
2044 	ENTRY0("winterwonderland", "030227", "0994f3c477e8e221d9c70df72fb936df", 194560),
2045 	ENTRY0("wir1", "060503", "f9b1425b5c55f1b3f3caa50a7963be17", 652866),
2046 	ENTRY0("wir2", "060503", "c64dfefbc7a320126342f6a522a3b8bd", 514520),
2047 	ENTRY0("wireless", "040909", "2af916f6295f32533eadd97afccb11d8", 140800),
2048 	ENTRY0("insidewoman", "090628", "c9505d9dc5badfd95a6be7b4b4edc2a8", 478720),
2049 	ENTRY0("wossname", "000225", "ddf9652869c0892cc2d2150607dbf0c0", 77312),
2050 	ENTRY0("wrenlaw", "130429", "24e41af3de0fd4052ef537d0e82b067c", 1835620),
2051 	ENTRY0("wscholars", "071107", "03d438cfb4920cc831da090e0c150f2a", 587032),
2052 	ENTRY0("wump2ka", "041119", "64e790c40f04ab7fe2405807f0cecb9f", 174080),
2053 	ENTRY0("wumpus", "991216", "abdd37af526d03538cbb20d91a941489", 12800),
2054 	ENTRY0("wurm", "021126", "0ffbc60fcccaccf1abfa877acf293b2a", 4096),
2055 	ENTRY0("xenophobia", "111115", "d132c3b5defcef212f36e03a7c9a2e74", 124928),
2056 	ENTRY0("yagwad", "001121", "6d74b0e48dc46e589efd071e3d329f45", 167936),
2057 	ENTRY0("yakshaving", "101127", "3c4114a0999f2a68bd08c58fe0494a97", 394958),
2058 	ENTRY0("yomomma", "100228", "325cd63060b5509300c71af58902670c", 1081664),
2059 	ENTRY0("stewgoing", "150410", "93fdaa375c1db772b27918f096f43f53", 1604582),
2060 	ENTRY0("zlife", "960121", "36bc7d2fdd0bbac996466e05af239924", 6656),
2061 	ENTRY0("zassball", "980314", "ab906aa444b7fdd0a92119828616bb58", 12288),
2062 	ENTRY0("zbefunge", "021128", "6ae16ce61922211922edf777bb6113ce", 56320),
2063 	ENTRY0("zcamel", "000918", "96b316f9b7e133eaccbec98a4fb0cf46", 6656),
2064 	ENTRY0("zchess", "040124", "456fe3c2d3d986e8652c4a439e738686", 6656),
2065 	ENTRY0("zdungeon", "040826", "ddcf45ee10cc5f42ac1b273eb9a0d1f8", 188928),
2066 	ENTRY0("zedfunge", "031111", "3198856622768685e17ffba6b8313e49", 108032),
2067 	ENTRY0("zedit", "971103", "40a26af1581ebdbbd867b18229ce8187", 65024),
2068 	ENTRY0("zegro", "041112", "bb7a0ef8d23cfb88afb2dc1e40be9613", 261632),
2069 	ENTRY0("zenon", "100122", "2c82b81ac43fcfbf2abee4d8c4f98cad", 67584),
2070 	ENTRY0("zenspeak", "990217", "53a344bef35a5778307aeb937a31f001", 123392),
2071 	ENTRY0("zcatalog", "980519", "f5ad7533e0d33ced32429a04473ec3d0", 126976),
2072 	ENTRY0("zokoban", "990810", "e599ec4ff1eee51afbd6a3f8e8d8680e", 18944),
2073 	ENTRY0("zombies", "990524", "4535f316650ee6c76b95ced1100b12d0", 7680),
2074 	ENTRY0("zorkianstories1", "121014", "dbf1900ac273a3051cc2bd405aef4620", 380454),
2075 	ENTRY0("zorknplus9", "120517", "3d95fc9e6e60d372413bf10a90570b2e", 402874),
2076 	ENTRY0("zracer", "071203", "04d60a3f69b68955b008cf7a7b08017f", 40960),
2077 	ENTRY0("zsnake", "010201", "f6aca196d9a1de4f05df6af74327f8f8", 11264),
2078 	ENTRY0("ztornado", "030711", "dd3edc31ee39d186566a6386c29aafe1", 20992),
2079 	ENTRY0("ztrek", "000229", "99653ccefa7203a37e8f0ed71c88fa98", 29696),
2080 	ENTRY0("ztuu", "970828", "ee5f33204264a1316c6acdb1036d19a9", 229888),
2081 	ENTRY0("zugzwang", "990710", "e538e90a90a7c280a078b50d2ad2e44d", 58880),
2082 
2083 	// Painless Little Stupid Games
2084 	ENTRY0("plsg1", "110205", "1cb5c04a2373bbda0bb6abcc3d49ba84", 168960),
2085 	ENTRY0("plsg2", "110210", "c3868744b56fe4b3b8e8e5c1eac80864", 181760),
2086 	ENTRY0("plsg3", "110310", "a640d77b82894fde6b6b3d3cc89553f7", 180224),
2087 	ENTRY0("plsg4", "110414", "7eda62012f870848603ba669d3a3d305", 198144),
2088 	ENTRY0("plsg5", "110420", "f5c7139c859b8f5209115b79479314e2", 181248),
2089 	ENTRY0("plsg6", "110527", "e972666101acf79534d71686fa68f369", 185856),
2090 	ENTRY0("plsg7", "110630", "dd0a2e670a56cd937671b94394bc0fbb", 182784),
2091 	ENTRY0("plsg8", "110822", "24d0f12ead2634292dc07b634d65059a", 164864),
2092 	ENTRY0("plsg9", "110901", "32cddc8302fb9b566c83d4c8d5d928be", 206336),
2093 	ENTRY0("plsg10", "111118", "30705c933686364f9086a36aac9579df", 260096),
2094 
2095 	// Converted Scott Adams games
2096 	ENTRY0("adventurelandi5", "941017", "cde66d37efaff46f18e67b0f39e4d0cd", 43008),
2097 	ENTRY0("adventurelandi5", "961111", "21f1bd1815a8b3ba5730fe168ff88e59", 49152),
2098 	ENTRY0("scottsampleri5", "980329", "86c473c81e86637105108afa943c3ced", 23040),
2099 	ENTRY0("buckaroobanzaii5", "980329", "cdbf748cdcee3cade378cf62cfe01d43", 24064),
2100 	ENTRY0("thecounti5", "980329", "a0060ef9c9fa5cc3d3dbbc060f6451c2", 25088),
2101 	ENTRY0("mysteryfunhousei5", "980329", "4b78c1883356db8184b351c5a269fdce", 24064),
2102 	ENTRY0("ghosttowni5", "980329", "0240f4119bb9b8e8197f37049c9b4f82", 25600),
2103 	ENTRY0("goldenvoyagei5", "980329", "d986f2ac673abdce741c90e8b9fc3acf", 26112),
2104 	ENTRY0("marveladventurei5", "HULK-980329", "964dfa22fcd54d2674123951af79136b", 25600),
2105 	ENTRY0("strangeodysseyi5", "980329", "8216fc5ca7ed593d6a9c4265064d83a4", 24576),
2106 	ENTRY0("pirateadventurei5", "980329", "0c3d27eaa6563835bfb1aadd309e7a00", 24064),
2107 	ENTRY0("pyramidofdoomi5", "980329", "a6fc7fd81b7330bc254afbac17b29058", 26112),
2108 	ENTRY0("adventure14i5", "980329", "56e5d7c33d5403ed59a62f67744f4d02", 26624),
2109 	ENTRY0("savageisland1i5", "980329", "6f6cf307a97becb32524fe66a910587e", 24576),
2110 	ENTRY0("savageisland2i5", "980329", "a43ab1063e6a8d4849ad3b69f1e4cacb", 25600),
2111 	ENTRY0("missionimpossiblei5", "980329", "9c759b65e43e2d9d6aa02122248040ae", 24064),
2112 	ENTRY0("adventure13i5", "980329", "54cc89bbead7dac21455b9c00f32f604", 25088),
2113 	ENTRY0("questprobe2i5", "980329", "6b9cb86c332c092b3a93973ba9f4c946", 27136),
2114 	ENTRY0("voodoocastlei5", "980329", "bff285e6c9291fc6ba77c9743b610c2d", 24064),
2115 
2116 	// Mysterious Adventures by Brian Howarth
2117 	ENTRY0("goldenbatoni5", "980406", "408b31a15c429f7ca83b2ac80764ffa8", 20992),
2118 	ENTRY0("timemachinei5", "980406", "e0a0335705aab9642b7625f26c00eca2", 22016),
2119 	ENTRY0("arrowofdeath1i5", "980406", "a3827232bf54c339a5ec5ab906fd1857", 22016),
2120 	ENTRY0("arrowofdeath2i5", "980406", "5a437f2cbc4f99d8cd741e83e2abe4cd", 24064),
2121 	ENTRY0("pulsar7i5", "980406", "d93cc91cda58c75259b2c872921a17a8", 26112),
2122 	ENTRY0("circusi5", "980406", "be7a07e042f5d1b0cde3d3b1cd85dee3", 22528),
2123 	ENTRY0("feasibilityi5", "980406", "e0c46523e043bc75f8e04714396e17ff", 22528),
2124 	ENTRY0("akyrzi5", "980406", "61c29077bee55dce614a729705099282", 24064),
2125 	ENTRY0("perseusi5", "980406", "c1ab2f87658691f773599d9973bf72a1", 23040),
2126 	ENTRY0("10indiansi5", "980406", "b3e4b8376f7c553064ceff8f25936385", 22528),
2127 	ENTRY0("waxworksi5", "980406", "98e52d813cb28f899916ef7129c85a0e", 24064),
2128 	ENTRY0("goldenbatoni5", "041209", "817ca85193d842b9716d4b688d6fe9d1", 27644),
2129 	ENTRY0("timemachinei5", "041209", "460ad097aeb7b800f237692aaec8fda2", 28156),
2130 	ENTRY0("arrowofdeath1i5", "041209", "616f481469279a1184d1d8fcad84ed4e", 28156),
2131 	ENTRY0("arrowofdeath2i5", "041209", "058dbdf618b22e9dd47f42f7e98e6fdd", 30716),
2132 	ENTRY0("pulsar7i5", "041209", "41a2b9048af4600f43c829e2348b5fc6", 32764),
2133 	ENTRY0("circusi5", "041209", "0c5a65e665b773fc39bdcbe194ad99cc", 29180),
2134 	ENTRY0("feasibilityi5", "041209", "2159059c9b506af4f10c7cf9133fdd00", 28672),
2135 	ENTRY0("akyrzi5", "041209", "cfbef40e735057b6fbbde3991f6ee4c9", 31232),
2136 	ENTRY0("perseusi5", "041209", "1c0fef44034daa16ada548caac232337", 29696),
2137 	ENTRY0("10indiansi5", "041209", "63b01fa007b977be144bcd3a6f6e8dcf", 29180),
2138 	ENTRY0("waxworksi5", "041209", "859a006a14bd69b22135688248756ba0", 30720),
2139 	ENTRY0("goldenbatoni5", "110126", "9de3f1a8624e20409c92325b30a3b490", 156156),
2140 	ENTRY0("timemachinei5", "110126", "684e96c6adaccfd5f4138dce069d3fc3", 137728),
2141 	ENTRY0("arrowofdeath1i5", "110126", "3deca9c9fce4fb995e0681ecdfb39cf2", 173056),
2142 	ENTRY0("arrowofdeath2i5", "110126", "4a0c494ff4564e659a29fbd3d67696f6", 172540),
2143 	ENTRY0("pulsar7i5", "110126", "5d6897ee80078c0286a52589ae305633", 135168),
2144 	ENTRY0("circusi5", "110126", "72721053ed49e1d701146332215f63e9", 118780),
2145 	ENTRY0("feasibilityi5", "110126", "8f2f18c6fd76be74e612ee9b271055b1", 172540),
2146 	ENTRY0("akyrzi5", "110126", "92c5abee1a097f1e8e61f744ba9ddb3f", 119296),
2147 	ENTRY0("perseusi5", "110126", "39be8e28753aa0ac87c49b6dedb712a2", 132096),
2148 	ENTRY0("10indiansi5", "110126", "0c5d25323a3b649ea432025001edb638", 170492),
2149 	ENTRY0("waxworksi5", "110126", "c51e911d1228d8adfc07ed138bc90079", 116220),
2150 
2151 	// 1992 album Apollo 18, by They Might be Giants
2152 	ENTRY0("apollo1", "120315", "1aec299147675a5c6e10d548a4eeba05", 251100),
2153 	ENTRY0("apollo4", "120322", "83f92f1fc39bd699ac32935d8eefd35a", 426528),
2154 	ENTRY0("apollo5", "120324", "6c889ec9c330169740afafe7694030cf", 199680),
2155 	ENTRY0("apollo6", "120316", "a13d84152dc3b9ec5e6b489d987e8130", 906236),
2156 	ENTRY0("apollo7", "120324", "a08c999b6408a9c17e2f3ab55a82e919", 363458),
2157 	ENTRY0("apollo8", "120325", "1b0e0c32915e81873bc30f900bfdf371", 352706),
2158 	ENTRY0("apollo9", "120323", "e48c6dad0b11bde066c4e29da68f71ef", 448972),
2159 	ENTRY0("apollo11", "120304", "ad4b4d5a6d2c0c251a891cca5d47dfcd", 262406),
2160 	ENTRY0("apollo13", "120323", "b45ad2f48f3da1bbe8650a2df70ba625", 350570),
2161 	ENTRY0("apollo14", "120324", "dedd30cae688dc8a88bd79d8004ee6e0", 278016),
2162 	ENTRY0("apollo16", "120324", "e7cc8f53c82196ef2281e1345c5048df", 155648),
2163 	ENTRY0("apollo17", "120324", "cd6aef7581d5c7221d2b95b55d4d3961", 264822),
2164 	ENTRY0("apollo18", "120324", "604b89f3066da9a62922ff2c45a669ea", 327008),
2165 	ENTRY0("apollo20", "120324", "1cca9cd17cd354131ae0888307ec1ec2", 200192),
2166 	ENTRY0("apollo21", "120324", "6d6fc49e004828df9ca9fa2013a0a231", 199680),
2167 	ENTRY0("apollo22", "120323", "7284829f0999d3cfa9de81a97bc6f2e2", 385536),
2168 	ENTRY0("apollo23", "120324", "f7a7021baaa261e70d284e2c97e54115", 345088),
2169 	ENTRY0("apollo24", "120324", "c9bbd95fdfbe3fda922cfba0f57d201c", 310000),
2170 	ENTRY0("apollo25", "120322", "2ae649402f52358473f1a61bd8f0cfd4", 369664),
2171 	ENTRY0("apollo26", "120325", "1327ebd3016d873961f6ee35408a03fb", 251354),
2172 	ENTRY0("apollo27", "120324", "1cc4273e5417578445a6b528dd3cdff7", 208896),
2173 	ENTRY0("apollo28", "120324", "7c655dde263ec0e75289e4a77d2b53c3", 173056),
2174 	ENTRY0("apollo29", "120304", "f4d87b9a51126d095a2af8de5bb6ad04", 494298),
2175 	ENTRY0("apollo30", "120324", "53f36fb7ff374a59f77679cf3a5d1bd5", 207872),
2176 	ENTRY0("apollo31", "120314", "fb8cad57d9305ffbfc2dd69e6406a0fd", 197120),
2177 	ENTRY0("apollo32", "120323", "8ec4ee91cd1186c4deef126b40b78cfc", 151552),
2178 	ENTRY0("apollo34", "120325", "78f0a5bfce8eb2801350793738a2355f", 281600),
2179 	ENTRY0("apollo35", "120324", "bcce4073de352739be245f21685ef841", 336864),
2180 	ENTRY0("apollo36", "120324", "01f6f3552fff6a8eaaf5ad31c4c57f64", 209408),
2181 	ENTRY0("apollo37", "120323", "55b8607a451ab30d03314f815a30e40b", 327144),
2182 	ENTRY0("apollo38", "120321", "a760169a6643d08ff3db22be84caed37", 353734),
2183 
2184 
2185 	// Competition 2002
2186 	ENTRY0("constraints", "020927", "fa88eccd76bd2e9e3108b70aafe537ba", 176128),
2187 	ENTRY0("ftaegea", "r2/020926", "d8a67ae37dbcb99d5edc18f318fd56c1", 343040),
2188 	ENTRY0("hell0", "r0/050929", "63130fb3a0f3c62217ec99c14ebb4ed5", 111616),
2189 	ENTRY0("idthief", "020928", "eb85f09482a328a548dd96368eac50cc", 140288),
2190 	ENTRY0("jane", "020927", "dec64545b4f4345b74a17537e65b4732", 171520),
2191 	ENTRY0("janitor", "020927", "61035b376a21cafc434d8a5657e8804b", 146944),
2192 	ENTRY0("koan", "020904", "457eede8d32962bbf8e88938d3bf4685", 49152),
2193 	ENTRY0("mythtale", "020830", "c3e89166105e986b6708ee470aa50b13", 212480),
2194 	ENTRY0("photograph", "020926", "8b5edf2a02123aadbd28bff37a324a95", 196608),
2195 	ENTRY0("ramonandjonathan", "020926", "eea6527824140b1f6b0479e937ae3043", 64512),
2196 	ENTRY0("shamulet", "020926", "7bfdd75a3287c7b7874964e8e2480776", 74240),
2197 	ENTRY0("screen", "020926", "74d0c7f54d1e9e387f91d88e889ec0bf", 83968),
2198 	ENTRY0("bofh", "r2/020927", "3da1806e505c38de29821f0e841248d3", 127488),
2199 	ENTRY0("samuelgregor", "200108", "da6df678988e311dbdb9ecf3551ca482", 93696),
2200 	ENTRY0("moonlittower", "020927", "99126839757b62c48ddaaed723390f26", 138752),
2201 	ENTRY0("thetemple", "020925", "4d3bc8996e2af00aeac21d62c2278107", 107008),
2202 	ENTRY0("tookiessong", "020927", "3e09bbcf92dfe6b72aab33ad9d0d572a", 187392),
2203 	ENTRY0("whenhelpcollides", "020926", "07a8884764294f348784a615ad8ab69b", 285696),
2204 
2205 	// Competition 2003
2206 	ENTRY0("papermoon", "030927", "d455488b4d5b59b4e3f2e6270c6c4e55", 130048),
2207 	ENTRY0("adoo", "r2/030731", "3f281cd7b79218c53c6aa2ad5886ce4b", 100352),
2208 	ENTRY0("baluthar", "030926", "750377a64b3d502970e3bcf30adc9c5d", 121344),
2209 	ENTRY0("caffeination", "r0/030914", "90a60bdac3c6df759d37eccaa4563181", 197632),
2210 	ENTRY0("domicile", "r0/030928", "8a83149cb039ce6ebbb161b6007ca2bc", 149504),
2211 	ENTRY0("gourmet", "030927", "d10a75ea4d4485b24c513d9bfefdfe7f", 181760),
2212 	ENTRY0("internaldocuments", "030926", "7c1a2afee4f358c873b50fc504f59a96", 159232),
2213 	ENTRY0("noroom", "112358", "5a99c89364f0d2bb624461a44ef0b071", 60416),
2214 	ENTRY0("risorg", "030925", "37c4b5b109c7005ae663e989024720d4", 443392),
2215 	ENTRY0("atomicheart", "030921", "8afc2962b86883919e89a4ea4db25516", 138752),
2216 	ENTRY0("lardo", "r00/030830", "8741a6ccd5cb8123a0cd37c23f1721c9", 66048),
2217 
2218 	// Competition 2004
2219 	ENTRY0("devours", "040930", "646ce501f1a42de40fb48f945514e0c1", 155648),
2220 	ENTRY0("bellclap", "040930", "70be7c0e420f7236fae11c34589158db", 123904),
2221 	ENTRY0("blink", "040926", "7f8957455ed7187729239a73bd52b625", 88064),
2222 	ENTRY0("bluechairs", "040930", "a95e06ff11b68d1c6ab887e568cd0d60", 238080),
2223 	ENTRY0("bluesky", "r3/020408", "33502732a6b09eeacf61de7361307e10", 69120),
2224 	ENTRY0("playtorn", "041001", "5c36cf0d222d564a5e10851b842beca3", 191488),
2225 	ENTRY0("gamlet", "040926", "2222246b74477d475064bab951fc78d6", 249856),
2226 	ENTRY0("geb", "040930", "85c3f43cfe5d7b86799efc2f596ef0aa", 163840),
2227 	ENTRY0("identity", "r6/040928", "1e459aceb4c0071c970dca5484c5617b", 126464),
2228 	ENTRY0("mingsheng", "040907", "6a7b1758c832bf394f01882df288badd", 114176),
2229 	ENTRY0("murderaeroclub", "040921", "aff927b5be8d78a0900bf495f605395b", 108032),
2230 	ENTRY0("order00", "r0/040930", "3f365a5c640a60e8cbde6d71d3766f8b", 107520),
2231 	ENTRY0("splashdown", "040926", "518831b70285f9b6a2d57dac3aa55b93", 146944),
2232 	ENTRY0("stackoverflow", "040925", "5a6554d5af319b8b7e094da39ed6a3bb", 131072),
2233 	ENTRY0("stingwasp", "040622", "ca5589359f90fc20d9a6acb3312681f9", 239616),
2234 	ENTRY0("bigscoop", "040916", "2ca8203bd4ae6bfc4e76f5b430a8737d", 173056),
2235 	ENTRY0("greatxavio", "040930", "7391523964a284b86eb0e3da3da63f33", 164352),
2236 	ENTRY0("orion", "r9/040930", "04b16a3b081bd49ee702025a7b862116", 202240),
2237 	ENTRY0("typo", "040924", "827e420f98cfdc0b014203a53a11ff00", 96768),
2238 
2239 	// Competition 2005
2240 	ENTRY0("anewlife", "", "b767db9117f533064d3113e159ef03e8", 260608),
2241 	ENTRY0("beyond", "050930", "7c40cfec00e949e0c104b7b415ecb04a", 320512),
2242 	ENTRY0("drearylands", "050928", "25b26f262bdc8acca9e149d3ae2a0e4c", 97280),
2243 	ENTRY0("futuregame", "", "94a44dc4c563b1f4468b13b32ef601f0", 10752),
2244 	ENTRY0("hellosword", "050929", "ccbda9f1be8df8e5f656db548a002ed1", 152576),
2245 	ENTRY0("historyrepeating", "050930", "cd8fab96b41ee0949de6b769a635e2dc", 114176),
2246 	ENTRY0("internalvigilance", "051001", "93727f29c7a981ef006b4318e1231c3b", 182784),
2247 	ENTRY0("neonnirvana", "050919", "3a39bb725d9414edf2a7a561d43706c2", 171008),
2248 	ENTRY0("onoptimism", "050930", "489ef2faedfca7255b3c5aa0fd71c462", 152576),
2249 	ENTRY0("phantomcaverns", "280727", "3dff9322c3f141ff17b47fc1e9d98929", 97792),
2250 	ENTRY0("psycheslament", "050929", "67fd7b02ce32ef3da8ad54a5e483e382", 89088),
2251 	ENTRY0("snatches", "050930", "c0d612653fc6a3f4bd01f1b7ed492058", 183808),
2252 	ENTRY0("soa", "050927", "49e31704b96971f0e51bfa3dcad39c0f", 115200),
2253 	ENTRY0("colourpink", "050924", "1ed112b4d17b4a9f885f5cb7a9ead277", 268800),
2254 	ENTRY0("swordofmalice", "050908", "9b43f402cc13e02f57a464ca6f843b32", 96256),
2255 	ENTRY0("toughbeans", "050930", "5fbe477520b8b9b9fd3873687d829460", 220160),
2256 	ENTRY0("vespers", "050929", "a8ff87d7ab10b3e6825db32f093d1f08", 286720),
2257 
2258 	// Competition 2006
2259 	ENTRY0("anothergoddamnescape", "060927", "45a30649c871479e2060e95cc6bda3f4", 232448),
2260 	ENTRY0("cdst", "060929", "c91836c10f543523cd61a6b24020eb3d", 348152),
2261 	ENTRY0("delightfulwallpaper", "r4/060928", "4e0b9814068b066ff8a7703f59902f93", 342912),
2262 	ENTRY0("fightorflight", "060929", "80db0fdf1d6b3951fc954b48de1e0c83", 270336),
2263 	ENTRY0("gameproducer", "060928", "b4e0ff39edec9d291e78bfa95d6dcf22", 179200),
2264 	ENTRY0("hedge", "060929", "c7c17fffb437878b48990ed564960e5b", 216064),
2265 	ENTRY0("labyrinth", "060929", "abc2409764b3eee49a97ea90d58fc22d", 118272),
2266 	ENTRY0("legion", "060929", "678b0e73b1fb8e3280b955ed587dfc98", 190464),
2267 	ENTRY0("madamspider", "060929", "6a48aed360accae28e7d21e702fa1b9e", 166400),
2268 	ENTRY0("manalive1", "r2/000002", "27e3e2afffe206fca0f0f78f97c2f175", 175616),
2269 	ENTRY0("manalive2", "r2/000002", "de9b6bae4432ef6585d06f65fc93a7ed", 149504),
2270 	ENTRY0("mobius", "060929", "8535e1058ea7bd3ccbe098a40ddbdbd5", 425828),
2271 	ENTRY0("moonshaped", "060929", "aa2bf7a42417827ac31ce7d8d3453a1f", 323584),
2272 	ENTRY0("pathfinder", "060928", "f632512392d33c75fed4a0bc0f0c5fd5", 146432),
2273 	ENTRY0("polendina", "060929", "e7e3e0ab767c330635feb9b009bc14ff", 111104),
2274 	ENTRY0("sisyphus", "060915", "5af751766ddacab843bd190fe5a6fe46", 134144),
2275 	ENTRY0("starcity", "060928", "a7366438459f23661e8d178d8e690f49", 288256),
2276 	ENTRY0("strangegeometries", "060929", "eead1528f100a3340167a909a9f5e97d", 308224),
2277 	ENTRY0("apocalypseclock", "060801", "fe06ae2560d153af32bb29e74813d436", 92672),
2278 	ENTRY0("bibleretoldbread", "r7/100000", "e387804ec98ad477e6aa5911fbc74338", 191488),
2279 	ENTRY0("primrose", "060929", "d4a2ee947d42598eaa8f09c23c4ef2a4", 428544),
2280 	ENTRY0("towerofelephant", "060922", "74fa5a6e7d9b654ca2805edf6a7b0330", 281048),
2281 
2282 	// Competition 2007
2283 	ENTRY0("acrossthestars", "070929", "4dd6a382a08b2865ad22a99cff8746e4", 492544),
2284 	ENTRY0("acrossthestarshints", "", "32904e85480632a1764f4654b8f561f6", 121344),
2285 	ENTRY0("actofmurder", "070927", "2b8e594dc3d1d6b06153494bd47bb4db", 386048),
2286 	ENTRY0("beneathatransformation", "070927", "95b99d50b0c38cfd2907da023233ca82", 139776),
2287 	ENTRY0("deadlineenchanter", "", "0abf2e1124bf4da63a7efbd6cb239e57", 219648),
2288 	ENTRY0("eduardseminarist", "070926", "b02853e34c156c8feee8895c9f749490", 71168),
2289 	ENTRY0("foxfowl", "070927", "bf7ad79002812c5b08ef0c98a3f73053", 99840),
2290 	ENTRY0("bellwater", "070929", "67feb5edbb49ea993ca7a94f07556ce9", 348520),
2291 	ENTRY0("lostpig", "070917", "10dcc48e7312cc26eae89d1648af50c6", 317952),
2292 	ENTRY0("jackmills", "070923", "26689533940170a64107b27adce69cef", 422776),
2293 	ENTRY0("orevore", "070929", "aab0bd90d0a29605e8000590d0205c88", 410624),
2294 	ENTRY0("packrat", "070928", "71ab8ff0a6ea40b11e5c0c4990358bc9", 120320),
2295 	ENTRY0("pets", "070926", "c6a7ab54d9b9482cc459a9c975f48314", 146432),
2296 	ENTRY0("theimmortal", "070928", "2fee83a968aa436d25be899d3bdcc02e", 293376),
2297 	ENTRY0("wish", "070928", "c32139de52463c844ed063e0b0e6a227", 92160),
2298 
2299 	// Competition 2008
2300 	ENTRY0("afflicted", "080906", "20ecfc89ef0fca5a58d53f3bc6b7057e", 326656),
2301 	ENTRY0("anachronist", "080927", "6e3816a87b03e9c82f92b87c2ceea361", 243092),
2302 	ENTRY0("minionunderworld", "080922", "6e02c3844947612a8c6e3b0849568b2f", 108032),
2303 	ENTRY0("bishoes", "r3/080912", "616d0a27ebeaddba73cbee9c7a8406d6", 73728),
2304 	ENTRY0("draculascrypt", "080929", "e6be6ce15da3e50df3558c7c1a8a66b3", 238854),
2305 	ENTRY0("freedom", "r0/080929", "6e37889524794022328582687754d173", 69120),
2306 	ENTRY0("grief", "080929", "10ac0c11f6687f75d940c197dd79f88c", 287744),
2307 	ENTRY0("openingnight", "r3/080920", "56690c62b68ed95e6f5266c4bf5593de", 240128),
2308 	ENTRY0("piracy2", "080926", "e722ca46b86a2a86b979c791ac970646", 250880),
2309 	ENTRY0("redmoonz", "080905", "cb8f73a536cfd474c548b38d03e08c65", 178176),
2310 	ENTRY0("riverside", "080903", "965457e0208af211943cb88707059bd0", 191488),
2311 	ENTRY0("snacktime", "080929", "6cc88dd0f8c3fbea98fa16525a845b11", 339456),
2312 	ENTRY0("snacktime", "080929", "35e2fb47b2a3ef13377be9556d673bf7", 1331682),
2313 	ENTRY0("absoluteworstgame", "080614", "3c902f43a5393f41655df1f028057e65", 133632),
2314 	ENTRY0("thelighthouse", "080921", "8d29781a8de397439ba40645c9430803", 140800),
2315 	ENTRY0("thelucubrator", "080928", "110d123776a561ba8c14d72c8d534bf7", 191488),
2316 	ENTRY0("trein", "r2/080718", "515fc480d1276c6a83e4af57fcb40670", 341618),
2317 	ENTRY0("violet", "080126", "df37a3ee028b439580ff3f138ff200cf", 598190),
2318 	ENTRY0("whenmachinesattack", "080927", "448e05c036c352e6def70a32ee68128a", 424960),
2319 
2320 	// Competition 2009
2321 	ENTRY0("betatester", "090929", "157045ea9339e149dc4686ad229a27ef", 391168),
2322 	ENTRY0("byzantineperspective", "090930", "dbb1fbf7245f6801d1a8619a95211340", 1690344),
2323 	ENTRY0("condemned", "090930", "1a73a405571a1413481c47d63392ee3c", 257024),
2324 	ENTRY0("eruption", "r2/090616", "a1136a2e48d40399bfa17200503dbd04", 113664),
2325 	ENTRY0("gatoron", "090830", "99688a1be3791575a575c33fb98587b6", 122368),
2326 	ENTRY0("gleamingtheverb", "090930", "6971a0e1b91dffbe75b4efefe7f9540f", 148992),
2327 	ENTRY0("interface", "090929", "afae3500034d118e0fd732ccd0d858f6", 293286),
2328 	ENTRY0("snowquest", "090792", "7a558ea909edca386a9f225a744a9cca", 1022942),
2329 	ENTRY0("spelunkersquest", "090929", "81ce5c3f5aac8c3ac9a6c012cff4bda7", 297928),
2330 	ENTRY0("starhunter", "090930", "60e33decd1e4a5c1f13298688d4eea39", 134656),
2331 	ENTRY0("invisibleman", "090927", "fee503f8a8562bb7dc31ee606f23ca7d", 298496),
2332 	ENTRY0("duelinsnow", "090930", "b669e90797eb4ce3adf37fba9f1447d8", 383488),
2333 	ENTRY0("duelthatspanned", "090925", "e7808064e6569e31be830b07be97cbb5", 379904),
2334 	ENTRY0("thegrandquest", "090926", "bbb8e21c2c2f71ba29f74cd30940493e", 178176),
2335 	ENTRY0("zorkburiedchaos", "080126", "dd1cb30fccde813a3301a324e5d6ac02", 163218),
2336 
2337 	// Competition 2010
2338 	ENTRY0("quietevening", "100924", "14d27fc0f84c6eb9bbad0046938000db", 397964),
2339 	ENTRY0("deathoffthecuffz", "100926", "288dfb6066beba825f49d2c6080f9081", 311196),
2340 	ENTRY0("eastgrovehills", "100930", "e627884c529415399883702fb5abf43c", 417266),
2341 	ENTRY0("hummingbird", "100913", "4454cc4266f275a4d8a175aa21f5b0b5", 719972),
2342 	ENTRY0("heated", "100930", "148d0e98c403af802c3c8108a2e60d2d", 231424),
2343 	ENTRY0("mite", "100930", "fa6eb58ea0db68211fa924fa1530d234", 186368),
2344 	ENTRY0("ninjasfate", "100930", "a314c020fe002482c522c927d2012af1", 321024),
2345 	ENTRY0("penandpaint", "100930", "9a243dabd2227b95c49284dac825c946", 253440),
2346 	ENTRY0("asgard", "100928", "4b69b276e770d6ca6b0b7ff24c91bc13", 569460),
2347 	ENTRY0("bibleretoldlostsheep", "130000", "9559cb4601fbfe195b36cf5970f7619c", 190976),
2348 	ENTRY0("chronicler0", "r0/100930", "c16c8d34195c9f29c03629f20be7f800", 68608),
2349 	ENTRY0("gloriousrevolution", "100930", "123d7b02f338fe27f4b8f39ba2d15845", 854008),
2350 	ENTRY0("warblersnest", "100930", "526aaf64cec2fb85b63b2d329befc086", 799282),
2351 
2352 	// Competition 2011
2353 	ENTRY0("comedyerrormessages", "r2/111017", "9219e4a1ac32b67d508d661f0e00eb6c", 885682),
2354 	ENTRY0("andromedaawakeningz", "r2/111019", "7d82fa4cbcc943aefb3ddc65a38a0b7d", 527028),
2355 	ENTRY0("canamicah", "r2/111013", "0fb93ce7d872ba0f0f0dc948d5d249a4", 364544),
2356 	ENTRY0("santaland", "r2/110913", "e0e8181bbfe04b6cf55c3903153d5ae2", 410112),
2357 	ENTRY0("keepsake", "r3/110906", "293a92fcd66e8351a7062ed954df5d9e", 462088),
2358 	ENTRY0("lastdayofsummer", "r5/110930", "27a77f98d578a4ee5b0aadc6e81953e6", 372294),
2359 	ENTRY0("pfrank", "111103", "6e34d4ed01ef9548c960675e80de7f10", 351744),
2360 	ENTRY0("shipofwhimsy", "110930", "7cdedbedccd81556e59b4b8bad9e6123", 266274),
2361 	ENTRY0("tenthplague", "080126", "358056bdf0d1df7dad3ebbfc46e4f4e0", 379176),
2362 	ENTRY0("theguardian", "r2/111006", "e36bb34945160c5651d4539218bfad5e", 260096),
2363 	ENTRY0("vestiges", "111005", "aadd8e8c1d72d67ce2edb9a260099113", 268230),
2364 
2365 	// Competition 2012
2366 	ENTRY0("bodybargain", "r3/121021", "cf2fc83e9230a45317fdff11c3ee3fc5", 400000),
2367 	ENTRY0("changes", "r8/120930", "50d536eedd00ca0d566a369586f75db7", 450560),
2368 	ENTRY0("summerland", "r2/120011", "fc9152c7eefa6f12d99f94a7916481eb", 426542),
2369 	ENTRY0("fishbowl", "080126", "507c86a7456c7cfaf80fbaac1b716abc", 394822),
2370 	ENTRY0("lunarbase1", "120929", "8496b5fe70c738144e85031ea243f830", 311296),
2371 	ENTRY0("lunarbase1", "120929", "f1fe0b501a7af58a305d85ce3738c1e6", 1371878),
2372 	ENTRY0("murphyslaw", "120929", "3ad61af558113bb14c67024bb7ec9bb6", 567000),
2373 	ENTRY0("spiral", "r2/121106", "c9af41ec32033424b58f08e5798fe86b", 348160),
2374 	ENTRY0("testisready", "121004", "f23aa28f71f47cdc0c5b024eb4270b16", 514196),
2375 
2376 	// Competition 2013
2377 	ENTRY0("9lives", "130817", "0fff213f0d61c01c281d7180e016711e", 337374),
2378 	ENTRY0("furtherz", "r3/130929", "49f7ad5cd55692627c5535585368820e", 398556),
2379 	ENTRY0("paperbagprincess", "080126", "605f3334534d6cedbc982fba7849cda9", 313344),
2380 
2381 
2382 	// Danish games
2383 	ENTRY1("nissen", "171207", "c81784afb569b863098e8374dfdd4f32", 142848, Common::DA_DAN),
2384 
2385 	// Dutch games
2386 	ENTRY1("adv", "020822", "dff45a0d89ed78a204d49d18341d15ce", 153600, Common::NL_NLD),
2387 
2388 	// French games
2389 	ENTRY1("adv", "000531", "50027e3339900e1ca07f72e96396240e", 129536, Common::FR_FRA),
2390 	ENTRY1("championdebasketball", "180904", "92b21e4bc9163727c3dd586056f26fd8", 64000, Common::FR_FRA),
2391 	ENTRY1("dreamlands", "050908", "79cecc22e3f020a3ccc23912122785d4", 79872, Common::FR_FRA),
2392 	ENTRY1("espions", "070417", "7e59a5199b12376697deb4694cfac744", 124416, Common::FR_FRA),
2393 	ENTRY1("filaments", "030301", "0aa6d27086b546f6bd4dea84717da6ff", 337920, Common::FR_FRA),
2394 	ENTRY1("initiation", "070820", "3b50132dd7007bfe1b7cbc7147df37ee", 91136, Common::FR_FRA),
2395 	ENTRY1("interra", "070726", "11a8ae7f072f4946a8be92630af36336", 98304, Common::FR_FRA),
2396 	ENTRY1("kheper", "070829", "3612cef78d31e80632d6b69b48652306", 94208, Common::FR_FRA),
2397 	ENTRY1("verdeterre", "140228", "6665bda7c172285e281de2e120dac250", 1385176, Common::FR_FRA),
2398 	ENTRY1("lieuxcommuns", "070910", "d1032dc1a9635358e0aec29038fdb34e", 253952, Common::FR_FRA),
2399 	ENTRY1("lmpsd", "040921", "bb90b4548c5160b10a7b6cbfdb5384a9", 215040, Common::FR_FRA),
2400 	ENTRY1("ombre", "150820", "a3df02e2ecda768542f326480709db02", 137216, Common::FR_FRA),
2401 	ENTRY1("princesse", "131028", "16cdf0b604c538e12de37b4c1e806e79", 124928, Common::FR_FRA),
2402 	ENTRY1("sarvegne", "061101", "8c308818d08d924fdf69250fd5fdb210", 224768, Common::FR_FRA),
2403 	ENTRY1("katana", "070906", "133b2ba4e38fc5e4565dd8f22582b5a7", 562502, Common::FR_FRA),
2404 	ENTRY1("sdlc", "070917", "c80e6bf2a43340c87272f16bf3e64397", 67584, Common::FR_FRA),
2405 	ENTRY1("balcon", "070823", "6072d8d30e4e1546e72e851bd724bf78", 173440, Common::FR_FRA),
2406 	ENTRY1("templedefeu", "070731", "05b8c729867644a2b6c417297dcabea3", 131072, Common::FR_FRA),
2407 
2408 	// German games
2409 	ENTRY1("adv", "980419", "6a04a6b303f09359155eb23baa201efc", 126464, Common::DE_DEU),
2410 	ENTRY1("bearg", "000326", "b85bc696a58e11f6a0cf72f4cf08ad7c", 134656, Common::DE_DEU),
2411 	ENTRY1("bewerbung", "020429", "5b2a90b66bfcf4564b37dab92afe846a", 114688, Common::DE_DEU),
2412 	ENTRY1("deklinator", "040630", "1ca69e16e8e3e1941eb5c4cd403b2022", 103424, Common::DE_DEU),
2413 	ENTRY1("edendemo", "020401", "73a6cf485aa833ca895b0f860493cfce", 221618, Common::DE_DEU),
2414 	ENTRY1("halb2", "020523", "d424290a37b5efc67482e4fc9224bc0e", 30208, Common::DE_DEU),
2415 	ENTRY1("herr", "140620", "a6493768373d50096344f4319e7f074a", 208028, Common::DE_DEU),
2416 	ENTRY1("jazteg", "040522", "6635a44223e0017418acdeb0c78a9c7a", 192000, Common::DE_DEU),
2417 	ENTRY1("karisma", "130908", "48d6eb07a649a614b037722af9718bf2", 291328, Common::DE_DEU),
2418 	ENTRY1("knack", "081215", "b8fa6a55c469cd92d01985933ac093a3", 64388, Common::DE_DEU),
2419 	ENTRY1("o", "120412", "850ed6092daa2dcc87862404a2e88338", 240424, Common::DE_DEU),
2420 	ENTRY1("starrider", "040110", "6c42a3e46e29419d9d0e3786117ab94b", 222208, Common::DE_DEU),
2421 	ENTRY1("mchatton", "120413", "1485309be7aed1ed0ada396fe3eeb1ec", 290768, Common::DE_DEU),
2422 	ENTRY1("wasserhasser", "140105", "1d332f660aec117a4460d0555a2b30f6", 165336, Common::DE_DEU),
2423 	ENTRY1("wichtel", "021006", "f52166e02c6bd5e0311145683f415ef5", 88576, Common::DE_DEU),
2424 
2425 	// Italian games
2426 	ENTRY1("aldila", "r5/100115", "4b87d3038bdf6df986f44a6fc1d8772c", 349840, Common::IT_ITA),
2427 	ENTRY1("armando", "050429", "b74fb87510b6baa50307c2b63ba108de", 71168, Common::IT_ITA),
2428 	ENTRY1("ayon", "130730", "da1a2dab91d8ccec4b69d955487e9539", 232960, Common::IT_ITA),
2429 	ENTRY1("darkiss", "151120", "347db588b5663ab9be83048430d9f4a0", 156160, Common::IT_ITA),
2430 	ENTRY1("darkiss2", "150616", "899316750483830be4f38caf37ba7d7f", 219136, Common::IT_ITA),
2431 	ENTRY1("enigma", "111115", "6e9390f62c07038d44ab17167093c935", 111616, Common::IT_ITA),
2432 	ENTRY1("filamit", "030812", "edde5a37d24b112fb1cf3ff7fb133579", 333312, Common::IT_ITA),
2433 	ENTRY1("flamel", "010503", "02bb0beba5cf37e7a9b6fe3558e20cab", 198656, Common::IT_ITA),
2434 	ENTRY1("giardino", "150614", "f3244aa61ce6b3a4dd860c315bd24aa7", 124416, Common::IT_ITA),
2435 	ENTRY1("hellosword", "050929", "4ac3e9c0411d4ec87281d31ac7b3763d", 163840, Common::IT_ITA),
2436 	ENTRY1("hellosword", "060113", "a432a8286f9f76dae891699175332237", 166400, Common::IT_ITA),
2437 	ENTRY1("kangourou", "130503", "55449579a0ecd73fb788120dd0707bc0", 95744, Common::IT_ITA),
2438 	ENTRY1("koohinoor", "060717", "867d2f12ae29cd97aadc1a3c6b2e2a2a", 88576, Common::IT_ITA),
2439 	ENTRY1("luna", "110106", "28f1d106a70a0f50aee1d2628bc42055", 522076, Common::IT_ITA),
2440 	ENTRY1("poesia", "398874", "feabf26f662e70f4d15ac290b8884e3a", 197632, Common::IT_ITA),
2441 	ENTRY1("poesia", "398874", "c383d29e1237cfc4760b46a618f211d2", 196096, Common::IT_ITA),
2442 	ENTRY1("oldwest1", "020514", "0182ca4b8153fc90e7be355d1ef51c7e", 157184, Common::IT_ITA),
2443 	ENTRY1("rovo", "080424", "b2f570c667e32ea44c121b44cc6baeda", 113664, Common::IT_ITA),
2444 	ENTRY1("scarafaggio", "070906", "6e980b7108fd4af148308214d6efc6bf", 131584, Common::IT_ITA),
2445 	ENTRY1("sognodisangue", "150702", "d00baeb8f4cca59ba88b24b6e8b71246", 151552, Common::IT_ITA),
2446 	ENTRY1("strega", "081007", "71f9cbdeb334cc1de6fce6e1a53cecf3", 153088, Common::IT_ITA),
2447 	ENTRY1("tesla", "160613", "e2650593a2aadaef8fb9a5f3b8e10c27", 94720, Common::IT_ITA),
2448 	ENTRY1("villamorgana", "081014", "6be5dee7a5d1608362083850c9bfc679", 170256, Common::IT_ITA),
2449 	ENTRY1("zazie", "030113", "906b9a3e02b2080ce7f06595c8bdcbb3", 89600, Common::IT_ITA),
2450 	ENTRY1("zenfactorspa", "100524", "22373bcd74d843ce647c4bd7b6a4404b", 288256, Common::IT_ITA),
2451 	ENTRY1("zombie", "180820", "19a1369039b5226f86323ab19e7aea96", 135168, Common::IT_ITA),
2452 	ENTRY1("zorkita", "000031", "3d85a97ddfc1fb0f6bfbf1cb00b4df7b", 192512, Common::IT_ITA),
2453 	ENTRY1("zorkita", "v6/000031", "be15759f2273cdaf124dbc40436244b0", 192512, Common::IT_ITA),
2454 
2455 	// Russian games
2456 	ENTRY0("allroads", "070701", "427693ae57580bbc57f204c50437d3cc", 198656),
2457 	ENTRY0("bluechairs", "111222", "9d6af2460c034fa9078846180ec31f05", 338944),
2458 	ENTRY0("metamorphoses", "080518", "bc16740cc10500b0d1e1e8e768da6417", 203776),
2459 	ENTRY0("spiderandweb", "091122", "3ea174936bc6d56c3f4d0bd5fa1fe720", 321536),
2460 
2461 	// Slovenian games
2462 	ENTRY1("zenin", "070628", "bda2d35eb0614374d02bae623d3a22ec", 90112, Common::SK_SVK),
2463 
2464 	// Spanish games
2465 	ENTRY1("abalanzate", "001116", "d235b2e983f74f6176aea5b1d1418a78", 79872, Common::ES_ESP),
2466 	ENTRY1("afuera", "010101", "9ed80d0b530f38cce7a7b2c0f1b6ccd9", 116224, Common::ES_ESP),
2467 	ENTRY1("amanda", "091110", "11b63cb4c4ca11b86e835c1b00f9c5ae", 132096, Common::ES_ESP),
2468 	ENTRY1("amanda", "091110", "c373f508436b06081cd76039dc17582e", 342504, Common::ES_ESP),
2469 	ENTRY1("aque1", "000428", "5d16ddd8030635e10065b7e36ba5f59e", 86528, Common::ES_ESP),
2470 	ENTRY1("adv", "971209", "2c38b40ffbc8c29fff29acbbefa317e8", 126976, Common::ES_ESP),
2471 	ENTRY1("casi", "000311", "d9351b2b336b96f481bc42e222adc3e4", 97792, Common::ES_ESP),
2472 	ENTRY1("celos", "010403", "6f4dc34a02fe5eb872ffe99faa06fb79", 69632, Common::ES_ESP),
2473 	ENTRY1("celos", "r2/010403", "c484c34fc9f73ba9ee7e59b6387d3817", 69632, Common::ES_ESP),
2474 	ENTRY1("cerillera", "101213", "6bd57d7dd178cc4d3ef895c147e65087", 1154350, Common::ES_ESP),
2475 	ENTRY1("cerillera", "v1.2/101213", "d6319063e4bbd3878d468c799210107b", 1154350, Common::ES_ESP),
2476 	ENTRY1("churro", "020116", "885c3ffa9a9aeb8518746d69211bff4b", 225792, Common::ES_ESP),
2477 	ENTRY1("csa", "150201", "2efa23d92a10a64196ea6f01dea556c2", 72704, Common::ES_ESP),
2478 	ENTRY1("cueva", "150301", "e0a6f6e6949944b7793f2822af687f2f", 74752, Common::ES_ESP),
2479 	ENTRY1("ddddddcrj", "050616", "1b89e39bfdcf2ddd4675d8a8013746da", 66048, Common::ES_ESP),
2480 	ENTRY1("despert", "980909", "f6c469e0931c9f18f149e1b6da484436", 129536, Common::ES_ESP),
2481 	ENTRY1("draculasp2", "080819", "4de47380bf5d802f295a487eaf1499c6", 123392, Common::ES_ESP),
2482 	ENTRY1("draculasp", "071227", "53865e944daea77afeaf9cb909cfe85a", 101888, Common::ES_ESP),
2483 	ENTRY1("ascenso", "090409", "352b9bb39f2fff76b409025670169a98", 380434, Common::ES_ESP),
2484 	ENTRY1("regalo", "100104", "8d7ea3a09f39d1d2de103e5117ad3224", 336064, Common::ES_ESP),
2485 	ENTRY1("elultimohogar", "021225", "45edda9ec6eb400f409681d3f2b052d4", 122368, Common::ES_ESP),
2486 	ENTRY1("ergotdelima", "170616", "0bcc4c1c8cc24165cb8f02f17f00682d", 606834, Common::ES_ESP),
2487 	ENTRY1("forrajeo", "010101", "d86123253ae4b35570013dd87e48036a", 108032, Common::ES_ESP),
2488 	ENTRY1("fotopia", "991220", "bb067cca7cd769c20e7bb5dc9ed09c65", 214016, Common::ES_ESP),
2489 	ENTRY1("gorbag", "100104", "581e67f731d6b1d0d40bfc38cb531bf9", 199168, Common::ES_ESP),
2490 	ENTRY1("gorron", "020726", "67a7a86523a72c85b9cc0a0cf730ee75", 80896, Common::ES_ESP),
2491 	ENTRY1("goteras", "010102", "892f263e65c00fd92f6e384b2729acbe", 128000, Common::ES_ESP),
2492 	ENTRY1("hhorcus", "100818", "092849be8d49f1ef509a88a1bc5bbea8", 118262, Common::ES_ESP),
2493 	ENTRY1("i0", "000630", "d43fcdb06a748ea24f2329aba8c5761e", 218624, Common::ES_ESP),
2494 	ENTRY1("islas", "050531", "3d7cee978d4f69e41e8af1a8ccda2b9d", 369152, Common::ES_ESP),
2495 	ENTRY1("kerulen", "090720", "b1b024e24c78e37d424163c5b2a6f1ad", 105984, Common::ES_ESP),
2496 	ENTRY1("konix", "080505", "c9a4128b4874ec735f77295f590a3108", 74240, Common::ES_ESP),
2497 	ENTRY1("kunelar", "090409", "108dd4e7623634e6ff7ca976118dfa29", 220672, Common::ES_ESP),
2498 	ENTRY1("lldc", "666777", "024e9465504e1ab7bda9399602102876", 164864, Common::ES_ESP),
2499 	ENTRY1("megara", "091204", "6798f8acb0c0c60d1026a1e9a6469b55", 472716, Common::ES_ESP),
2500 	ENTRY1("absolutos", "080516", "9505fa8fc4f4c2d06730ce6c33f0fd43", 270222, Common::ES_ESP),
2501 	ENTRY1("macetas", "010102", "3e987e21093af65c8fce2e458ee3dafb", 234496, Common::ES_ESP),
2502 	ENTRY1("lamansion", "010103", "0acd4655161f834b562b5560353877bd", 138752, Common::ES_ESP),
2503 	ENTRY1("libroaburria", "r3/031202", "9267337f8592091ec23eb5b05aa8f17f", 110080, Common::ES_ESP),
2504 	ENTRY1("meeva", "021130", "4d988f4963d14f43cf61c44417be22ae", 135168, Common::ES_ESP),
2505 	ENTRY1("megara", "091204", "94b7019ed62d257344ef39727011c250", 214016, Common::ES_ESP),
2506 	ENTRY1("modusvivendi", "010101", "20795fdfe47bc6f6c519f3fe11e34c17", 234496, Common::ES_ESP),
2507 	ENTRY1("mpdroidone", "170820", "ea6bf4230bf6f267f76e191d84fb9804", 353792, Common::ES_ESP),
2508 	ENTRY1("navidad", "050110", "6fa3ccdcce7b0c45e608f2948a63646d", 102912, Common::ES_ESP),
2509 	ENTRY1("necedad", "010925", "fc25f03b71e39ddca21e2c93607ac660", 101888, Common::ES_ESP),
2510 	ENTRY1("culpatuya", "080723", "77cd0cbf40cd6badfa9edb9306108008", 198656, Common::ES_ESP),
2511 	ENTRY1("culpatuya", "080723", "01ef491a2099414817f2a20d0ae78dd2", 536956, Common::ES_ESP),
2512 	ENTRY1("ocaso", "020215", "017f1ee4813271b886347af89b4c917d", 164352, Common::ES_ESP),
2513 	ENTRY1("oculta", "050214", "06340073888cd6850b9d176ed3b1a251", 190464, Common::ES_ESP),
2514 	ENTRY1("olvido", "001230", "c7673107bf9909890480935b4d10ea24", 91648, Common::ES_ESP),
2515 	ENTRY1("osito", "021002", "7ab4fdbf2a13da9742350cf9f89121e6", 128512, Common::ES_ESP),
2516 	ENTRY1("panajo", "010102", "3969bf7b2dd00b342e6c0b4ec797919a", 124416, Common::ES_ESP),
2517 	ENTRY1("pesadillavoraz", "080430", "79f8cb30a31146e08465acd9038ba7e6", 604046, Common::ES_ESP),
2518 	ENTRY1("pincoya", "010102", "bafb201726dd331308cdf34ec1e478cb", 168960, Common::ES_ESP),
2519 	ENTRY1("playera", "010101", "9866408f548c8606e521075907b33ca7", 80896, Common::ES_ESP),
2520 	ENTRY1("protector", "010103", "3189852634dcc62258c4e3af727bac46", 154624, Common::ES_ESP),
2521 	ENTRY1("reflejos", "010101", "7edc3b30022e97978ea93ef5c22edccd", 144384, Common::ES_ESP),
2522 	ENTRY1("senten", "991225", "e578cb2626d969bba50d2ccd6d863ade", 90624, Common::ES_ESP),
2523 	ENTRY1("sombras", "021127", "72b83812567f8a4c9cd523b6a09a9c65", 121856, Common::ES_ESP),
2524 	ENTRY1("tokland", "001130", "7f5c796474c250f418a47fa9285e3116", 139776, Common::ES_ESP),
2525 	ENTRY1("torre", "000208", "2a5bca50855883c01ce4e7e30c7bd444", 126464, Common::ES_ESP),
2526 	ENTRY1("tuuli", "180501", "9382d5a2886dd7681203128a183ebae3", 671650, Common::ES_ESP),
2527 
2528 	// Swedish games
2529 	ENTRY1("aventyr", "071029", "fff0eb351b418ada4010d56c4298d6ac", 133632, Common::SE_SWE),
2530 	ENTRY1("drakmagi", "080419", "12739044930fc939b0adf0efd5432713", 98304, Common::SE_SWE),
2531 	ENTRY1("hotellet", "041212", "efb166d12edc19b19dd1d6e99d67800e", 109056, Common::SE_SWE),
2532 	ENTRY1("pangnyheten", "040916", "2049135115dff02b2baf1b7bfb59606c", 185856, Common::SE_SWE),
2533 	ENTRY1("storforsen", "041212", "5e3c06b6b0650f938d2831b2aac98153", 103936, Common::SE_SWE),
2534 	ENTRY1("stuga", "090712", "58eef72aada351e7e059202ab00342c4", 588800, Common::SE_SWE),
2535 	ENTRY1("stuga", "090712", "c9be7126299f47dfd395af5b951233ff", 122368, Common::SE_SWE),
2536 	ENTRY1("vanyar", "030613", "abbc2b2fa0f5e922b45a3f8698ba9ad1", 110080, Common::SE_SWE),
2537 
2538 	FROTZ_TABLE_END_MARKER
2539 };
2540 
2541 } // End of namespace ZCode
2542 } // End of namespace Glk
2543