MobyGames Scraper. Anybody Interested?

dustind900

Member
Supporter
RL Member
I have to ask. Was there an easy way to get the platform integers for the search function, or did you gather them manually?
 

brolly

Administrator
Developer
As a Java developer I'd be interested on checking this out if you are willing to share the project lamuelwms. I'm curious about it, does it only scrap game lists or does it also bring any extra info like dustin's WIP scrapper?
 

lamuelwms

New member
RL Member
Okay, here is the script that will populate a List<String> of system names and get the numerical ID of each system when passed the STRING name of the system: http://pastebin.com/UHvxsGXy

[EDIT]Pastbin apparently likes to make code look messy; but rest assured the code is far more handsome. So, I have added a JAVA file (in the ZIP which the routine looks like.) Also keep in mind that the service providers are compiled at runtime with Just in Time compiler that way users can edit the java files to directly affect how the program interacts, scrapes, etc. I will release the full source of the appliaction tonight or in the am once I button up the image indexing.

@Brolly; you got it, I'm almost done buttoning up this doodad and will have it available probably by tonight or early am! :)
 

Attachments

  • mobyGamesProvider.zip
    2.7 KB · Views: 35
Last edited:

dustind900

Member
Supporter
RL Member
Small update:
I can now get every link for every game on the site in less than a minute.

@lamuelwms
you said:
"gameScore = the user rating of the game (not the moby score (which is useless))"

but:
generalInfo.select(".fr.scoreBoxMed.scoreHi")
Is the moby score.

You should remove "scoreHi" from the selector, because that part isn't static. If the game has a low score it would be ".fr.scoreBoxMed.scoreLow" or if there was no score it would be ".fr.scoreBoxMed.scoreNone". Just use ".fr.scoreBoxMed" instead otherwise you wont get the correct data if the game does not have a high score.


@everyone
do we want trivia data? Credits?
 
Last edited:

lamuelwms

New member
RL Member
You should remove "scoreHi" from the selector, because that part isn't static. If the game has a low score it would be ".fr.scoreBoxMed.scoreLow" or if there was no score it would be ".fr.scoreBoxMed.scoreNone". Just use ".fr.scoreBoxMed" instead otherwise you wont get the correct data if the game does not have a high score.

yeah, i realized that this afternoon; it has already been completed; thanks for the heads up. :)

I attached a small demo with one scraper added. Please note: in order to run this application you must have JDK installed otherwise it will not be able to use the Just in Time compilers. To start the application just double click run.exe. This is a unoptimized unthreaded version so don't expect the speed to blow your mind or anything! ;) Furthermore, there are a few minor glitches that occur which I didn't feel the need to brush up as of yet due to the fact that I don't know if this is actually ever going to make it off the drawing board since our good friend diamond is already working on a multiuse scraper which seems to be doing the job quite well; if anything I might just make this application more as a lark then anything (hey, larks can be fun too!)

If anyone has any questions let me know; otherwise I'll be in my RadKad hobbit hole lol.
 

Attachments

  • dist.zip
    488.5 KB · Views: 18
Last edited:

ghutch92

New member
Supporter
RL Member
VIP
We have use for the trivia, but I don't think it should be in the xml. The random trivia facts would make for a cool fade in feature while waiting for 7zip.
 

brolly

Administrator
Developer
I don't use 7zip so no use for me :)
Besides 7zip will be so fast for most systems (exception being the optical based ones) that you wouldn't even have time to read the trivia.
Honestly I think dustin should try getting the most important stuff parsed properly first and then he might want to look into adding more stuff if there's interest.
 

dustind900

Member
Supporter
RL Member
Just got done coding the cover art function. In the xml it will probably look like:
Code:
<Artwork>
    <United States>
        <Front Cover>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Front Cover>
        <Back Cover>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Back Cover>
        <Media>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Media>
    </United States>
    <United Kingdom>
        <Front Cover>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Front Cover>
        <Back Cover>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Back Cover>
        <Media>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Media>
    </United Kingdom>
</Artwork>

Once I get the functions complete I will work on an app to go with them. I have no actual output function yet so if xml is not preferred we should decide on a file type. I can work with most any file type so if one is easier for you to parse brolly let me know. Do we want a whole system in one file or one file per game? Or both?
 
Last edited:

brolly

Administrator
Developer
dustin, don't do it that way if you use dynamically named tags you will never be able to assign a XSD file to validate your XMLs which is something you'll probably want to do.

I suggest something like this instead:
Code:
<Artworks>
    <Artwork region="United States">
        <Front Cover>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Front Cover>
        <Back Cover>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Back Cover>
        <Media>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Media>
    </Artwork>
    <Artwork region="United Kingdom">
        <Front Cover>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Front Cover>
        <Back Cover>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Back Cover>
        <Media>http://pics.mobygames.com/images/covers/large/1128442460-01.jpg</Media>
    </Artwork>
</Artworks>

Other than that, looks good to me!
XML is actually perfect for this, I'd say 1 system per file. Actually if you could also generate a simple XML file with all the games for a system, I mean game name and moby URL only nothing else this would be very handy. We could generate these files every few months and compare them with the previous one to check if any new games might have been added meanwhile to their database. These are much faster to generate of course since you won't need to go inside each game page.
 

dustind900

Member
Supporter
RL Member
Actually if you could also generate a simple XML file with all the games for a system, I mean game name and moby URL only nothing else this would be very handy.

like this?
Code:
<?xml version="1.0"?>
<menu>
	<header>
		<listname>NES</listname>
		<lastlistupdate>01/30/2015</lastlistupdate>
	</header>
	<game name="720">
		<url>http://www.mobygames.com/game/nes/720</url>
	</game>
	<game name="1942">
		<url>http://www.mobygames.com/game/nes/1942</url>
	</game>
	<game name="10-yard-fight_">
		<url>http://www.mobygames.com/game/nes/10-yard-fight_</url>
	</game>
	<game name="1943-the-battle-of-midway">
		<url>http://www.mobygames.com/game/nes/1943-the-battle-of-midway</url>
	</game>
	<game name="1991-du-ma-racing">
		<url>http://www.mobygames.com/game/nes/1991-du-ma-racing</url>
	</game>
	<game name="1999-hore-mita-koto-ka-seikimatsu">
		<url>http://www.mobygames.com/game/nes/1999-hore-mita-koto-ka-seikimatsu</url>
	</game>
	<game name="3-d-worldrunner">
		<url>http://www.mobygames.com/game/nes/3-d-worldrunner</url>
	</game>
	<game name="4-nin-uchi-mahjong">
		<url>http://www.mobygames.com/game/nes/4-nin-uchi-mahjong</url>
	</game>
	<game name="6-in-1">
		<url>http://www.mobygames.com/game/nes/6-in-1</url>
	</game>
	<game name="8-eyes">
		<url>http://www.mobygames.com/game/nes/8-eyes</url>
	</game>
	<game name="89-denn-kysei-uranai">
		<url>http://www.mobygames.com/game/nes/89-denn-kysei-uranai</url>
	</game>
	<game name="a-nightmare-on-elm-street_">
		<url>http://www.mobygames.com/game/nes/a-nightmare-on-elm-street_</url>
	</game>
	<game name="a-ressha-de-ik">
		<url>http://www.mobygames.com/game/nes/a-ressha-de-ik</url>
	</game>
	<game name="aa-yaky-jinsei-icchokusen">
		<url>http://www.mobygames.com/game/nes/aa-yaky-jinsei-icchokusen</url>
	</game>
	<game name="abadox-the-deadly-inner-war">
		<url>http://www.mobygames.com/game/nes/abadox-the-deadly-inner-war</url>
	</game>
	<game name="action-52">
		<url>http://www.mobygames.com/game/nes/action-52</url>
	</game>
	<game name="addams-family-pugsleys-scavenger-hunt">
		<url>http://www.mobygames.com/game/nes/addams-family-pugsleys-scavenger-hunt</url>
	</game>
	<game name="addams-family___">
		<url>http://www.mobygames.com/game/nes/addams-family___</url>
	</game>
	<game name="adian-no-tsue">
		<url>http://www.mobygames.com/game/nes/adian-no-tsue</url>
	</game>
	<game name="adventure-island">
		<url>http://www.mobygames.com/game/nes/adventure-island</url>
	</game>
	<game name="adventure-island-3">
		<url>http://www.mobygames.com/game/nes/adventure-island-3</url>
	</game>
	<game name="adventure-island-ii">
		<url>http://www.mobygames.com/game/nes/adventure-island-ii</url>
	</game>
	<game name="adventures-of-bayou-billy">
		<url>http://www.mobygames.com/game/nes/adventures-of-bayou-billy</url>
	</game>
	<game name="adventures-of-captain-comic">
		<url>http://www.mobygames.com/game/nes/adventures-of-captain-comic</url>
	</game>
	<game name="adventures-of-dino-riki">
		<url>http://www.mobygames.com/game/nes/adventures-of-dino-riki</url>
	</game>
	<game name="adventures-of-gilligans-island">
		<url>http://www.mobygames.com/game/nes/adventures-of-gilligans-island</url>
	</game>
	<game name="adventures-of-lolo">
		<url>http://www.mobygames.com/game/nes/adventures-of-lolo</url>
	</game>
	<game name="adventures-of-lolo-2">
		<url>http://www.mobygames.com/game/nes/adventures-of-lolo-2</url>
	</game>
	<game name="adventures-of-lolo-3">
		<url>http://www.mobygames.com/game/nes/adventures-of-lolo-3</url>
	</game>
	<game name="adventures-of-rad-gravity">
		<url>http://www.mobygames.com/game/nes/adventures-of-rad-gravity</url>
	</game>
	<game name="adventures-of-rocky-and-bullwinkle-and-friends">
		<url>http://www.mobygames.com/game/nes/adventures-of-rocky-and-bullwinkle-and-friends</url>
	</game>
	<game name="adventures-of-tom-sawyer">
		<url>http://www.mobygames.com/game/nes/adventures-of-tom-sawyer</url>
	</game>
	<game name="after-burner">
		<url>http://www.mobygames.com/game/nes/after-burner</url>
	</game>
	<game name="after-burner-ii">
		<url>http://www.mobygames.com/game/nes/after-burner-ii</url>
	</game>
	<game name="ai-sensei-no-oshiete-watashi-no-hoshi">
		<url>http://www.mobygames.com/game/nes/ai-sensei-no-oshiete-watashi-no-hoshi</url>
	</game>
	<game name="ai-senshi-nicol">
		<url>http://www.mobygames.com/game/nes/ai-senshi-nicol</url>
	</game>
	<game name="aiginas-prophecy">
		<url>http://www.mobygames.com/game/nes/aiginas-prophecy</url>
	</game>
	<game name="air-fortress">
		<url>http://www.mobygames.com/game/nes/air-fortress</url>
	</game>
	<game name="airball">
		<url>http://www.mobygames.com/game/nes/airball</url>
	</game>
	<game name="airwolf">
		<url>http://www.mobygames.com/game/nes/airwolf</url>
	</game>
	<game name="airwolf__">
		<url>http://www.mobygames.com/game/nes/airwolf__</url>
	</game>
	<game name="akagawa-jir-no-yrei-ressha">
		<url>http://www.mobygames.com/game/nes/akagawa-jir-no-yrei-ressha</url>
	</game>
	<game name="akira_">
		<url>http://www.mobygames.com/game/nes/akira_</url>
	</game>
	<game name="akuma-kun-makai-no-wana">
		<url>http://www.mobygames.com/game/nes/akuma-kun-makai-no-wana</url>
	</game>
	<game name="akumaj-special-boku-dracula-kun">
		<url>http://www.mobygames.com/game/nes/akumaj-special-boku-dracula-kun</url>
	</game>
	<game name="al-unser-jr-turbo-racing">
		<url>http://www.mobygames.com/game/nes/al-unser-jr-turbo-racing</url>
	</game>
	<game name="alfred-chicken">
		<url>http://www.mobygames.com/game/nes/alfred-chicken</url>
	</game>
	<game name="alien-syndrome">
		<url>http://www.mobygames.com/game/nes/alien-syndrome</url>
	</game>
	<game name="alien_______">
		<url>http://www.mobygames.com/game/nes/alien_______</url>
	</game>
	<game name="all-night-nippon-super-mario-bros">
		<url>http://www.mobygames.com/game/nes/all-night-nippon-super-mario-bros</url>
	</game>
	<game name="all-pro-basketball">
		<url>http://www.mobygames.com/game/nes/all-pro-basketball</url>
	</game>
	<game name="alpha-mission">
		<url>http://www.mobygames.com/game/nes/alpha-mission</url>
	</game>
	<game name="altered-beast">
		<url>http://www.mobygames.com/game/nes/altered-beast</url>
	</game>
	<game name="amagon">
		<url>http://www.mobygames.com/game/nes/amagon</url>
	</game>
	<game name="america-daitry-senkyo">
		<url>http://www.mobygames.com/game/nes/america-daitry-senkyo</url>
	</game>
	<game name="america-dan-ultra-quiz-shij-saidai-no-tatakai">
		<url>http://www.mobygames.com/game/nes/america-dan-ultra-quiz-shij-saidai-no-tatakai</url>
	</game>
	<game name="american-dream">
		<url>http://www.mobygames.com/game/nes/american-dream</url>
	</game>
	<game name="american-gladiators">
		<url>http://www.mobygames.com/game/nes/american-gladiators</url>
	</game>
	<game name="ankoku-shinwa-yamato-takeru-densetsu">
		<url>http://www.mobygames.com/game/nes/ankoku-shinwa-yamato-takeru-densetsu</url>
	</game>
	<game name="antarctic-adventure">
		<url>http://www.mobygames.com/game/nes/antarctic-adventure</url>
	</game>
	<game name="anticipation">
		<url>http://www.mobygames.com/game/nes/anticipation</url>
	</game>
	<game name="apple-town-monogatari-little-computer-people">
		<url>http://www.mobygames.com/game/nes/apple-town-monogatari-little-computer-people</url>
	</game>
	<game name="arch-rivals">
		<url>http://www.mobygames.com/game/nes/arch-rivals</url>
	</game>
	<game name="archon-the-light-and-the-dark">
		<url>http://www.mobygames.com/game/nes/archon-the-light-and-the-dark</url>
	</game>
	<game name="arctic">
		<url>http://www.mobygames.com/game/nes/arctic</url>
	</game>
	<game name="arctic-adventure-penguin-seal">
		<url>http://www.mobygames.com/game/nes/arctic-adventure-penguin-seal</url>
	</game>
	<game name="argus">
		<url>http://www.mobygames.com/game/nes/argus</url>
	</game>
	<game name="arkanoid">
		<url>http://www.mobygames.com/game/nes/arkanoid</url>
	</game>
	<game name="arkanoid-revenge-of-doh">
		<url>http://www.mobygames.com/game/nes/arkanoid-revenge-of-doh</url>
	</game>
	<game name="arkistas-ring">
		<url>http://www.mobygames.com/game/nes/arkistas-ring</url>
	</game>
	<game name="armadillo">
		<url>http://www.mobygames.com/game/nes/armadillo</url>
	</game>
	<game name="artelius">
		<url>http://www.mobygames.com/game/nes/artelius</url>
	</game>
	<game name="arumana-no-kiseki">
		<url>http://www.mobygames.com/game/nes/arumana-no-kiseki</url>
	</game>
	<game name="asmik-kun-land">
		<url>http://www.mobygames.com/game/nes/asmik-kun-land</url>
	</game>
	<game name="astrix">
		<url>http://www.mobygames.com/game/nes/astrix</url>
	</game>
	<game name="astro-fang-super-machine">
		<url>http://www.mobygames.com/game/nes/astro-fang-super-machine</url>
	</game>
	<game name="astyanax">
		<url>http://www.mobygames.com/game/nes/astyanax</url>
	</game>
	<game name="athena">
		<url>http://www.mobygames.com/game/nes/athena</url>
	</game>
	<game name="athletic-world">
		<url>http://www.mobygames.com/game/nes/athletic-world</url>
	</game>
	<game name="atlantis-no-nazo">
		<url>http://www.mobygames.com/game/nes/atlantis-no-nazo</url>
	</game>
	<game name="attack-animal-gakuen">
		<url>http://www.mobygames.com/game/nes/attack-animal-gakuen</url>
	</game>
	<game name="attack-of-the-killer-tomatoes">
		<url>http://www.mobygames.com/game/nes/attack-of-the-killer-tomatoes</url>
	</game>
	<game name="aussie-rules-footy">
		<url>http://www.mobygames.com/game/nes/aussie-rules-footy</url>
	</game>
	<game name="auto-upturn-">
		<url>http://www.mobygames.com/game/nes/auto-upturn-</url>
	</game>
	<game name="b-wings">
		<url>http://www.mobygames.com/game/nes/b-wings</url>
	</game>
	<game name="babel-no-t">
		<url>http://www.mobygames.com/game/nes/babel-no-t</url>
	</game>
	<game name="baby-boomer">
		<url>http://www.mobygames.com/game/nes/baby-boomer</url>
	</game>
	<game name="back-to-the-future">
		<url>http://www.mobygames.com/game/nes/back-to-the-future</url>
	</game>
	<game name="back-to-the-future-part-ii-iii">
		<url>http://www.mobygames.com/game/nes/back-to-the-future-part-ii-iii</url>
	</game>
	<game name="bad-dudes">
		<url>http://www.mobygames.com/game/nes/bad-dudes</url>
	</game>
	<game name="bad-news-baseball">
		<url>http://www.mobygames.com/game/nes/bad-news-baseball</url>
	</game>
	<game name="bad-street-brawler">
		<url>http://www.mobygames.com/game/nes/bad-street-brawler</url>
	</game>
	<game name="bakush-ai-no-gekij">
		<url>http://www.mobygames.com/game/nes/bakush-ai-no-gekij</url>
	</game>
	<game name="bakush-jinsei-gekij">
		<url>http://www.mobygames.com/game/nes/bakush-jinsei-gekij</url>
	</game>
	<game name="bakush-jinsei-gekij-2">
		<url>http://www.mobygames.com/game/nes/bakush-jinsei-gekij-2</url>
	</game>
	<game name="bakush-jinsei-gekij-3">
		<url>http://www.mobygames.com/game/nes/bakush-jinsei-gekij-3</url>
	</game>
	<game name="bakush-star-monomane-shitenn">
		<url>http://www.mobygames.com/game/nes/bakush-star-monomane-shitenn</url>
	</game>
	<game name="ballblazer">
		<url>http://www.mobygames.com/game/nes/ballblazer</url>
	</game>
	<game name="balloon-fight">
		<url>http://www.mobygames.com/game/nes/balloon-fight</url>
	</game>
	<game name="baltron">
		<url>http://www.mobygames.com/game/nes/baltron</url>
	</game>
	<game name="banana">
		<url>http://www.mobygames.com/game/nes/banana</url>
	</game>
	<game name="banana-prince">
		<url>http://www.mobygames.com/game/nes/banana-prince</url>
	</game>
	<game name="bandai-golf-challenge-pebble-beach">
		<url>http://www.mobygames.com/game/nes/bandai-golf-challenge-pebble-beach</url>
	</game>
	<game name="bandit-kings-of-ancient-china">
		<url>http://www.mobygames.com/game/nes/bandit-kings-of-ancient-china</url>
	</game>
	<game name="barbie">
		<url>http://www.mobygames.com/game/nes/barbie</url>
	</game>
	<game name="bards-tale-ii-the-destiny-knight">
		<url>http://www.mobygames.com/game/nes/bards-tale-ii-the-destiny-knight</url>
	</game>
	<game name="barker-bills-trick-shooting">
		<url>http://www.mobygames.com/game/nes/barker-bills-trick-shooting</url>
	</game>
	<game name="base-wars-cyber-stadium-series">
		<url>http://www.mobygames.com/game/nes/base-wars-cyber-stadium-series</url>
	</game>
	<game name="baseball">
		<url>http://www.mobygames.com/game/nes/baseball</url>
	</game>
	<game name="baseball-simulator-1000">
		<url>http://www.mobygames.com/game/nes/baseball-simulator-1000</url>
	</game>
	<game name="baseball-stars">
		<url>http://www.mobygames.com/game/nes/baseball-stars</url>
	</game>
	<game name="baseball-stars-2">
		<url>http://www.mobygames.com/game/nes/baseball-stars-2</url>
	</game>
	<game name="bases-loaded">
		<url>http://www.mobygames.com/game/nes/bases-loaded</url>
	</game>
	<game name="bases-loaded-3">
		<url>http://www.mobygames.com/game/nes/bases-loaded-3</url>
	</game>
	<game name="bases-loaded-4">
		<url>http://www.mobygames.com/game/nes/bases-loaded-4</url>
	</game>
	<game name="bases-loaded-ii-second-season">
		<url>http://www.mobygames.com/game/nes/bases-loaded-ii-second-season</url>
	</game>
	<game name="batman-return-of-the-joker">
		<url>http://www.mobygames.com/game/nes/batman-return-of-the-joker</url>
	</game>
	<game name="batman-returns_____">
		<url>http://www.mobygames.com/game/nes/batman-returns_____</url>
	</game>
	<game name="batman-the-video-game_">
		<url>http://www.mobygames.com/game/nes/batman-the-video-game_</url>
	</game>
	<game name="batsu-ter">
		<url>http://www.mobygames.com/game/nes/batsu-ter</url>
	</game>
	<game name="battle-chess">
		<url>http://www.mobygames.com/game/nes/battle-chess</url>
	</game>
	<game name="battle-city">
		<url>http://www.mobygames.com/game/nes/battle-city</url>
	</game>
	<game name="battle-of-olympus">
		<url>http://www.mobygames.com/game/nes/battle-of-olympus</url>
	</game>
	<game name="battleship__">
		<url>http://www.mobygames.com/game/nes/battleship__</url>
	</game>
	<game name="battletoads">
		<url>http://www.mobygames.com/game/nes/battletoads</url>
	</game>
	<game name="battletoads-double-dragon-the-ultimate-team">
		<url>http://www.mobygames.com/game/nes/battletoads-double-dragon-the-ultimate-team</url>
	</game>
	<game name="bee-52">
		<url>http://www.mobygames.com/game/nes/bee-52</url>
	</game>
	<game name="beetlejuice_">
		<url>http://www.mobygames.com/game/nes/beetlejuice_</url>
	</game>
	<game name="best-of-the-best-championship-karate">
		<url>http://www.mobygames.com/game/nes/best-of-the-best-championship-karate</url>
	</game>
	<game name="bible-adventures">
		<url>http://www.mobygames.com/game/nes/bible-adventures</url>
	</game>
	<game name="bible-buffet">
		<url>http://www.mobygames.com/game/nes/bible-buffet</url>
	</game>
	<game name="big-birds-hide-and-speak">
		<url>http://www.mobygames.com/game/nes/big-birds-hide-and-speak</url>
	</game>
	<game name="big-nose-freaks-out">
		<url>http://www.mobygames.com/game/nes/big-nose-freaks-out</url>
	</game>
	<game name="big-nose-the-caveman">
		<url>http://www.mobygames.com/game/nes/big-nose-the-caveman</url>
	</game>
	<game name="bigfoot">
		<url>http://www.mobygames.com/game/nes/bigfoot</url>
	</game>
	<game name="bikkuriman-world-gekit-sei-senshi">
		<url>http://www.mobygames.com/game/nes/bikkuriman-world-gekit-sei-senshi</url>
	</game>
	<game name="bill-elliotts-nascar-challenge">
		<url>http://www.mobygames.com/game/nes/bill-elliotts-nascar-challenge</url>
	</game>
	<game name="bill-teds-excellent-video-game-adventure">
		<url>http://www.mobygames.com/game/nes/bill-teds-excellent-video-game-adventure</url>
	</game>
	<game name="binary-land">
		<url>http://www.mobygames.com/game/nes/binary-land</url>
	</game>
	<game name="bio-miracle-bokutte-upa">
		<url>http://www.mobygames.com/game/nes/bio-miracle-bokutte-upa</url>
	</game>
	<game name="bio-senshi-dan-increaser-to-no-tatakai">
		<url>http://www.mobygames.com/game/nes/bio-senshi-dan-increaser-to-no-tatakai</url>
	</game>
	<game name="bionic-commando_">
		<url>http://www.mobygames.com/game/nes/bionic-commando_</url>
	</game>
	<game name="bird-week">
		<url>http://www.mobygames.com/game/nes/bird-week</url>
	</game>
	<game name="bishjo-control">
		<url>http://www.mobygames.com/game/nes/bishjo-control</url>
	</game>
	<game name="bishjo-shashinkan-moving-school">
		<url>http://www.mobygames.com/game/nes/bishjo-shashinkan-moving-school</url>
	</game>
	<game name="black-bass_">
		<url>http://www.mobygames.com/game/nes/black-bass_</url>
	</game>
	<game name="black-bass__">
		<url>http://www.mobygames.com/game/nes/black-bass__</url>
	</game>
	<game name="black-onyx">
		<url>http://www.mobygames.com/game/nes/black-onyx</url>
	</game>
	<game name="blackjack__">
		<url>http://www.mobygames.com/game/nes/blackjack__</url>
	</game>
	<game name="blades-of-steel">
		<url>http://www.mobygames.com/game/nes/blades-of-steel</url>
	</game>
	<game name="blaster-master">
		<url>http://www.mobygames.com/game/nes/blaster-master</url>
	</game>
	<game name="bloody-warriors-shan-go-no-gyakush">
		<url>http://www.mobygames.com/game/nes/bloody-warriors-shan-go-no-gyakush</url>
	</game>
	<game name="blue-marlin">
		<url>http://www.mobygames.com/game/nes/blue-marlin</url>
	</game>
	<game name="blues-brothers">
		<url>http://www.mobygames.com/game/nes/blues-brothers</url>
	</game>
	<game name="bo-jackson-baseball">
		<url>http://www.mobygames.com/game/nes/bo-jackson-baseball</url>
	</game>
	<game name="bokosuka-wars">
		<url>http://www.mobygames.com/game/nes/bokosuka-wars</url>
	</game>
	<game name="bomberman-">
		<url>http://www.mobygames.com/game/nes/bomberman-</url>
	</game>
	<game name="bomberman-ii">
		<url>http://www.mobygames.com/game/nes/bomberman-ii</url>
	</game>
	<game name="bonks-adventure">
		<url>http://www.mobygames.com/game/nes/bonks-adventure</url>
	</game>
	<game name="booby-kids">
		<url>http://www.mobygames.com/game/nes/booby-kids</url>
	</game>
	<game name="boulder-dash">
		<url>http://www.mobygames.com/game/nes/boulder-dash</url>
	</game>
	<game name="bram-stokers-dracula__">
		<url>http://www.mobygames.com/game/nes/bram-stokers-dracula__</url>
	</game>
	<game name="break-time-the-national-pool-tour">
		<url>http://www.mobygames.com/game/nes/break-time-the-national-pool-tour</url>
	</game>
	<game name="breakthru_">
		<url>http://www.mobygames.com/game/nes/breakthru_</url>
	</game>
	<game name="breeder">
		<url>http://www.mobygames.com/game/nes/breeder</url>
	</game>
	<game name="bubble-bath-babes">
		<url>http://www.mobygames.com/game/nes/bubble-bath-babes</url>
	</game>
	<game name="bubble-bobble">
		<url>http://www.mobygames.com/game/nes/bubble-bobble</url>
	</game>
	<game name="bubble-bobble-part-2_">
		<url>http://www.mobygames.com/game/nes/bubble-bobble-part-2_</url>
	</game>
	<game name="bucky-ohare">
		<url>http://www.mobygames.com/game/nes/bucky-ohare</url>
	</game>
	<game name="bugs-bunny-birthday-blowout">
		<url>http://www.mobygames.com/game/nes/bugs-bunny-birthday-blowout</url>
	</game>
	<game name="bugs-bunny-crazy-castle">
		<url>http://www.mobygames.com/game/nes/bugs-bunny-crazy-castle</url>
	</game>
	<game name="bump-n-jump">
		<url>http://www.mobygames.com/game/nes/bump-n-jump</url>
	</game>
	<game name="burai-fighter">
		<url>http://www.mobygames.com/game/nes/burai-fighter</url>
	</game>
	<game name="burgertime">
		<url>http://www.mobygames.com/game/nes/burgertime</url>
	</game>
	<game name="cabal">
		<url>http://www.mobygames.com/game/nes/cabal</url>
	</game>
	<game name="caesars-palace">
		<url>http://www.mobygames.com/game/nes/caesars-palace</url>
	</game>
	<game name="california-games">
		<url>http://www.mobygames.com/game/nes/california-games</url>
	</game>
	<game name="captain-america-and-the-avengers_">
		<url>http://www.mobygames.com/game/nes/captain-america-and-the-avengers_</url>
	</game>
	<game name="captain-ed">
		<url>http://www.mobygames.com/game/nes/captain-ed</url>
	</game>
	<game name="captain-planet-and-the-planeteers_">
		<url>http://www.mobygames.com/game/nes/captain-planet-and-the-planeteers_</url>
	</game>
	<game name="captain-silver">
		<url>http://www.mobygames.com/game/nes/captain-silver</url>
	</game>
	<game name="captain-skyhawk">
		<url>http://www.mobygames.com/game/nes/captain-skyhawk</url>
	</game>
	<game name="casino-kid">
		<url>http://www.mobygames.com/game/nes/casino-kid</url>
	</game>
	<game name="casino-kid-2">
		<url>http://www.mobygames.com/game/nes/casino-kid-2</url>
	</game>
	<game name="castle-of-deceit">
		<url>http://www.mobygames.com/game/nes/castle-of-deceit</url>
	</game>
	<game name="castle-of-dragon">
		<url>http://www.mobygames.com/game/nes/castle-of-dragon</url>
	</game>
	<game name="castle-quest">
		<url>http://www.mobygames.com/game/nes/castle-quest</url>
	</game>
	<game name="castlequest">
		<url>http://www.mobygames.com/game/nes/castlequest</url>
	</game>
	<game name="castlevania">
		<url>http://www.mobygames.com/game/nes/castlevania</url>
	</game>
	<game name="castlevania-ii-simons-quest">
		<url>http://www.mobygames.com/game/nes/castlevania-ii-simons-quest</url>
	</game>
	<game name="castlevania-iii-draculas-curse-">
		<url>http://www.mobygames.com/game/nes/castlevania-iii-draculas-curse-</url>
	</game>
	<game name="caveman-ugh-lympics">
		<url>http://www.mobygames.com/game/nes/caveman-ugh-lympics</url>
	</game>
	<game name="ch-jik-ysai-macross">
		<url>http://www.mobygames.com/game/nes/ch-jik-ysai-macross</url>
	</game>
	<game name="chackn-pop">
		<url>http://www.mobygames.com/game/nes/chackn-pop</url>
	</game>
	<game name="challenge-of-the-dragon">
		<url>http://www.mobygames.com/game/nes/challenge-of-the-dragon</url>
	</game>
	<game name="challenger">
		<url>http://www.mobygames.com/game/nes/challenger</url>
	</game>
	<game name="championship-bowling">
		<url>http://www.mobygames.com/game/nes/championship-bowling</url>
	</game>
	<game name="championship-lode-runner">
		<url>http://www.mobygames.com/game/nes/championship-lode-runner</url>
	</game>
	<game name="championship-pool">
		<url>http://www.mobygames.com/game/nes/championship-pool</url>
	</game>
	<game name="chaos-world">
		<url>http://www.mobygames.com/game/nes/chaos-world</url>
	</game>
	<game name="chase-hq">
		<url>http://www.mobygames.com/game/nes/chase-hq</url>
	</game>
	<game name="cheetahmen-ii">
		<url>http://www.mobygames.com/game/nes/cheetahmen-ii</url>
	</game>
	<game name="cheetahmen-ii-the-lost-levels">
		<url>http://www.mobygames.com/game/nes/cheetahmen-ii-the-lost-levels</url>
	</game>
	<game name="chessmaster_">
		<url>http://www.mobygames.com/game/nes/chessmaster_</url>
	</game>
	<game name="chester-field-ankoku-shin-e-no-chsen">
		<url>http://www.mobygames.com/game/nes/chester-field-ankoku-shin-e-no-chsen</url>
	</game>
	<game name="chiller">
		<url>http://www.mobygames.com/game/nes/chiller</url>
	</game>
	<game name="chip-n-dale-rescue-rangers">
		<url>http://www.mobygames.com/game/nes/chip-n-dale-rescue-rangers</url>
	</game>
	<game name="chjin-sentai-jetman">
		<url>http://www.mobygames.com/game/nes/chjin-sentai-jetman</url>
	</game>
	<game name="choplifter">
		<url>http://www.mobygames.com/game/nes/choplifter</url>
	</game>
	<game name="chubby-cherub">
		<url>http://www.mobygames.com/game/nes/chubby-cherub</url>
	</game>
	<game name="circus-caper">
		<url>http://www.mobygames.com/game/nes/circus-caper</url>
	</game>
	<game name="circus-charlie">
		<url>http://www.mobygames.com/game/nes/circus-charlie</url>
	</game>
	<game name="city-adventure-touch-mystery-of-triangle">
		<url>http://www.mobygames.com/game/nes/city-adventure-touch-mystery-of-triangle</url>
	</game>
	<game name="city-connection">
		<url>http://www.mobygames.com/game/nes/city-connection</url>
	</game>
	<game name="clash-at-demonhead">
		<url>http://www.mobygames.com/game/nes/clash-at-demonhead</url>
	</game>
	<game name="classic-concentration">
		<url>http://www.mobygames.com/game/nes/classic-concentration</url>
	</game>
	<game name="cleopatra-no-mah">
		<url>http://www.mobygames.com/game/nes/cleopatra-no-mah</url>
	</game>
	<game name="cliffhanger_">
		<url>http://www.mobygames.com/game/nes/cliffhanger_</url>
	</game>
	<game name="cloud-master">
		<url>http://www.mobygames.com/game/nes/cloud-master</url>
	</game>
	<game name="clu-clu-land">
		<url>http://www.mobygames.com/game/nes/clu-clu-land</url>
	</game>
	<game name="cobra-command">
		<url>http://www.mobygames.com/game/nes/cobra-command</url>
	</game>
	<game name="cobra-triangle">
		<url>http://www.mobygames.com/game/nes/cobra-triangle</url>
	</game>
	<game name="code-name-viper">
		<url>http://www.mobygames.com/game/nes/code-name-viper</url>
	</game>
	<game name="color-a-dinosaur">
		<url>http://www.mobygames.com/game/nes/color-a-dinosaur</url>
	</game>
	<game name="commando">
		<url>http://www.mobygames.com/game/nes/commando</url>
	</game>
	<game name="conflict_">
		<url>http://www.mobygames.com/game/nes/conflict_</url>
	</game>
	<game name="conquest-of-the-crystal-palace">
		<url>http://www.mobygames.com/game/nes/conquest-of-the-crystal-palace</url>
	</game>
	<game name="contra">
		<url>http://www.mobygames.com/game/nes/contra</url>
	</game>
	<game name="contra-force">
		<url>http://www.mobygames.com/game/nes/contra-force</url>
	</game>
	<game name="cool-world">
		<url>http://www.mobygames.com/game/nes/cool-world</url>
	</game>
	<game name="cosmic-spacehead">
		<url>http://www.mobygames.com/game/nes/cosmic-spacehead</url>
	</game>
	<game name="cosmic-wars">
		<url>http://www.mobygames.com/game/nes/cosmic-wars</url>
	</game>
	<game name="cowboy-kid">
		<url>http://www.mobygames.com/game/nes/cowboy-kid</url>
	</game>
	<game name="crackout">
		<url>http://www.mobygames.com/game/nes/crackout</url>
	</game>
	<game name="crash-n-the-boys-street-challenge">
		<url>http://www.mobygames.com/game/nes/crash-n-the-boys-street-challenge</url>
	</game>
	<game name="crazy-climber">
		<url>http://www.mobygames.com/game/nes/crazy-climber</url>
	</game>
	<game name="crisis-force">
		<url>http://www.mobygames.com/game/nes/crisis-force</url>
	</game>
	<game name="crossfire___">
		<url>http://www.mobygames.com/game/nes/crossfire___</url>
	</game>
	<game name="crystal-mines">
		<url>http://www.mobygames.com/game/nes/crystal-mines</url>
	</game>
	<game name="crystalis">
		<url>http://www.mobygames.com/game/nes/crystalis</url>
	</game>
	<game name="cyberball">
		<url>http://www.mobygames.com/game/nes/cyberball</url>
	</game>
	<game name="cybernoid-the-fighting-machine">
		<url>http://www.mobygames.com/game/nes/cybernoid-the-fighting-machine</url>
	</game>
	<game name="dai-2-ji-super-robot-taisen">
		<url>http://www.mobygames.com/game/nes/dai-2-ji-super-robot-taisen</url>
	</game>
	<game name="dai-meiro-meiky-no-tatsujin">
		<url>http://www.mobygames.com/game/nes/dai-meiro-meiky-no-tatsujin</url>
	</game>
	<game name="daisenryaku_">
		<url>http://www.mobygames.com/game/nes/daisenryaku_</url>
	</game>
	<game name="daiva-story-6-nirsartia-no-gyokuza">
		<url>http://www.mobygames.com/game/nes/daiva-story-6-nirsartia-no-gyokuza</url>
	</game>
	<game name="dance-aerobics">
		<url>http://www.mobygames.com/game/nes/dance-aerobics</url>
	</game>
	<game name="dancing-block">
		<url>http://www.mobygames.com/game/nes/dancing-block</url>
	</game>
	<game name="danny-sullivans-indy-heat">
		<url>http://www.mobygames.com/game/nes/danny-sullivans-indy-heat</url>
	</game>
	<game name="darkman">
		<url>http://www.mobygames.com/game/nes/darkman</url>
	</game>
	<game name="darkwing-duck">
		<url>http://www.mobygames.com/game/nes/darkwing-duck</url>
	</game>
	<game name="dash-galaxy-in-the-alien-asylum">
		<url>http://www.mobygames.com/game/nes/dash-galaxy-in-the-alien-asylum</url>
	</game>
	<game name="david-cranes-a-boy-and-his-blob-trouble-on-blobolonia">
		<url>http://www.mobygames.com/game/nes/david-cranes-a-boy-and-his-blob-trouble-on-blobolonia</url>
	</game>
	<game name="day-dreamin-davey">
		<url>http://www.mobygames.com/game/nes/day-dreamin-davey</url>
	</game>
	<game name="days-of-thunder">
		<url>http://www.mobygames.com/game/nes/days-of-thunder</url>
	</game>
	<game name="de-block">
		<url>http://www.mobygames.com/game/nes/de-block</url>
	</game>
	<game name="dead-zone">
		<url>http://www.mobygames.com/game/nes/dead-zone</url>
	</game>
	<game name="deadly-towers">
		<url>http://www.mobygames.com/game/nes/deadly-towers</url>
	</game>
	<game name="death-race">
		<url>http://www.mobygames.com/game/nes/death-race</url>
	</game>
	<game name="deathbots">
		<url>http://www.mobygames.com/game/nes/deathbots</url>
	</game>
	<game name="deep-dungeon-iii-yshi-e-no-tabi">
		<url>http://www.mobygames.com/game/nes/deep-dungeon-iii-yshi-e-no-tabi</url>
	</game>
	<game name="deep-dungeon-iv-kuro-no-yjutsushi">
		<url>http://www.mobygames.com/game/nes/deep-dungeon-iv-kuro-no-yjutsushi</url>
	</game>
	<game name="deep-dungeon-mad-senki-">
		<url>http://www.mobygames.com/game/nes/deep-dungeon-mad-senki-</url>
	</game>
	<game name="defender-of-the-crown">
		<url>http://www.mobygames.com/game/nes/defender-of-the-crown</url>
	</game>
	<game name="defenders-of-dynatron-city">
		<url>http://www.mobygames.com/game/nes/defenders-of-dynatron-city</url>
	</game>
	<game name="demon-sword">
		<url>http://www.mobygames.com/game/nes/demon-sword</url>
	</game>
	<game name="desert-commander">
		<url>http://www.mobygames.com/game/nes/desert-commander</url>
	</game>
	<game name="destination-earthstar">
		<url>http://www.mobygames.com/game/nes/destination-earthstar</url>
	</game>
	<game name="destiny-of-an-emperor">
		<url>http://www.mobygames.com/game/nes/destiny-of-an-emperor</url>
	</game>
	<game name="devil-world">
		<url>http://www.mobygames.com/game/nes/devil-world</url>
	</game>
	<game name="dezaemon">
		<url>http://www.mobygames.com/game/nes/dezaemon</url>
	</game>
	<game name="dick-tracy">
		<url>http://www.mobygames.com/game/nes/dick-tracy</url>
	</game>
	<game name="die-hard_">
		<url>http://www.mobygames.com/game/nes/die-hard_</url>
	</game>
	<game name="dig-dug">
		<url>http://www.mobygames.com/game/nes/dig-dug</url>
	</game>
	<game name="dig-dug-ii-trouble-in-paradise">
		<url>http://www.mobygames.com/game/nes/dig-dug-ii-trouble-in-paradise</url>
	</game>
	<game name="digger-t-rock-legend-of-the-lost-city">
		<url>http://www.mobygames.com/game/nes/digger-t-rock-legend-of-the-lost-city</url>
	</game>
	<game name="digital-devil-story-megami-tensei">
		<url>http://www.mobygames.com/game/nes/digital-devil-story-megami-tensei</url>
	</game>
	<game name="digital-devil-story-megami-tensei-ii">
		<url>http://www.mobygames.com/game/nes/digital-devil-story-megami-tensei-ii</url>
	</game>
	<game name="dirty-harry">
		<url>http://www.mobygames.com/game/nes/dirty-harry</url>
	</game>
	<game name="disney-adventures-in-the-magic-kingdom">
		<url>http://www.mobygames.com/game/nes/disney-adventures-in-the-magic-kingdom</url>
	</game>
	<game name="disneys-aladdin">
		<url>http://www.mobygames.com/game/nes/disneys-aladdin</url>
	</game>
	<game name="disneys-beauty-and-the-beast_">
		<url>http://www.mobygames.com/game/nes/disneys-beauty-and-the-beast_</url>
	</game>
	<game name="disneys-chip-n-dale-rescue-rangers-2">
		<url>http://www.mobygames.com/game/nes/disneys-chip-n-dale-rescue-rangers-2</url>
	</game>
	<game name="disneys-ducktales">
		<url>http://www.mobygames.com/game/nes/disneys-ducktales</url>
	</game>
	<game name="disneys-ducktales-2">
		<url>http://www.mobygames.com/game/nes/disneys-ducktales-2</url>
	</game>
	<game name="disneys-talespin_">
		<url>http://www.mobygames.com/game/nes/disneys-talespin_</url>
	</game>
	<game name="disneys-the-jungle-book">
		<url>http://www.mobygames.com/game/nes/disneys-the-jungle-book</url>
	</game>
	<game name="disneys-the-lion-king">
		<url>http://www.mobygames.com/game/nes/disneys-the-lion-king</url>
	</game>
	<game name="disneys-the-little-mermaid">
		<url>http://www.mobygames.com/game/nes/disneys-the-little-mermaid</url>
	</game>
	<game name="dizzy-prince-of-the-yolkfolk">
		<url>http://www.mobygames.com/game/nes/dizzy-prince-of-the-yolkfolk</url>
	</game>
	<game name="dj-vu-a-nightmare-comes-true">
		<url>http://www.mobygames.com/game/nes/dj-vu-a-nightmare-comes-true</url>
	</game>
	<game name="don-doko-don">
		<url>http://www.mobygames.com/game/nes/don-doko-don</url>
	</game>
	<game name="don-doko-don-2">
		<url>http://www.mobygames.com/game/nes/don-doko-don-2</url>
	</game>
	<game name="donald-land">
		<url>http://www.mobygames.com/game/nes/donald-land</url>
	</game>
	<game name="donkey-kong">
		<url>http://www.mobygames.com/game/nes/donkey-kong</url>
	</game>
	<game name="donkey-kong-3">
		<url>http://www.mobygames.com/game/nes/donkey-kong-3</url>
	</game>
	<game name="donkey-kong-classics">
		<url>http://www.mobygames.com/game/nes/donkey-kong-classics</url>
	</game>
	<game name="donkey-kong-jr-jr-sansuu-lesson">
		<url>http://www.mobygames.com/game/nes/donkey-kong-jr-jr-sansuu-lesson</url>
	</game>
	<game name="donkey-kong-jr-math">
		<url>http://www.mobygames.com/game/nes/donkey-kong-jr-math</url>
	</game>
	<game name="donkey-kong-junior">
		<url>http://www.mobygames.com/game/nes/donkey-kong-junior</url>
	</game>
	<game name="doordoor">
		<url>http://www.mobygames.com/game/nes/doordoor</url>
	</game>
	<game name="doraemon">
		<url>http://www.mobygames.com/game/nes/doraemon</url>
	</game>
	<game name="doraemon-giga-zombie-no-gyakush">
		<url>http://www.mobygames.com/game/nes/doraemon-giga-zombie-no-gyakush</url>
	</game>
	<game name="double-dare">
		<url>http://www.mobygames.com/game/nes/double-dare</url>
	</game>
	<game name="double-dragon">
		<url>http://www.mobygames.com/game/nes/double-dragon</url>
	</game>
	<game name="double-dragon-ii-the-revenge">
		<url>http://www.mobygames.com/game/nes/double-dragon-ii-the-revenge</url>
	</game>
	<game name="double-dragon-iii-the-sacred-stones">
		<url>http://www.mobygames.com/game/nes/double-dragon-iii-the-sacred-stones</url>
	</game>
	<game name="double-dribble">
		<url>http://www.mobygames.com/game/nes/double-dribble</url>
	</game>
	<game name="double-moon-densetsu">
		<url>http://www.mobygames.com/game/nes/double-moon-densetsu</url>
	</game>
	<game name="double-strike">
		<url>http://www.mobygames.com/game/nes/double-strike</url>
	</game>
	<game name="dough-boy">
		<url>http://www.mobygames.com/game/nes/dough-boy</url>
	</game>
	<game name="downtown-nekketsu-kshinkyoku-soreyuke-daiundkai">
		<url>http://www.mobygames.com/game/nes/downtown-nekketsu-kshinkyoku-soreyuke-daiundkai</url>
	</game>
	<game name="downtown-special-kunio-kun-no-jidaigeki-da-yo-zenin-shg">
		<url>http://www.mobygames.com/game/nes/downtown-special-kunio-kun-no-jidaigeki-da-yo-zenin-shg</url>
	</game>
	<game name="dr-chaos">
		<url>http://www.mobygames.com/game/nes/dr-chaos</url>
	</game>
	<game name="dr-jekyll-and-mr-hyde">
		<url>http://www.mobygames.com/game/nes/dr-jekyll-and-mr-hyde</url>
	</game>
	<game name="dr-mario">
		<url>http://www.mobygames.com/game/nes/dr-mario</url>
	</game>
	<game name="dragon-ball-3-gokden">
		<url>http://www.mobygames.com/game/nes/dragon-ball-3-gokden</url>
	</game>
	<game name="dragon-ball-daima-fukkatsu">
		<url>http://www.mobygames.com/game/nes/dragon-ball-daima-fukkatsu</url>
	</game>
	<game name="dragon-ball-z-gaiden-saiyajin-zetsumetsu-keikaku">
		<url>http://www.mobygames.com/game/nes/dragon-ball-z-gaiden-saiyajin-zetsumetsu-keikaku</url>
	</game>
	<game name="dragon-ball-z-ii-gekigami-freezer">
		<url>http://www.mobygames.com/game/nes/dragon-ball-z-ii-gekigami-freezer</url>
	</game>
	<game name="dragon-ball-z-iii-ressen-jinz-ningen">
		<url>http://www.mobygames.com/game/nes/dragon-ball-z-iii-ressen-jinz-ningen</url>
	</game>
	<game name="dragon-ball-z-kysh-saiyajin">
		<url>http://www.mobygames.com/game/nes/dragon-ball-z-kysh-saiyajin</url>
	</game>
	<game name="dragon-buster">
		<url>http://www.mobygames.com/game/nes/dragon-buster</url>
	</game>
	<game name="dragon-buster-ii-yami-no-fin">
		<url>http://www.mobygames.com/game/nes/dragon-buster-ii-yami-no-fin</url>
	</game>
	<game name="dragon-fighter">
		<url>http://www.mobygames.com/game/nes/dragon-fighter</url>
	</game>
	<game name="dragon-power">
		<url>http://www.mobygames.com/game/nes/dragon-power</url>
	</game>
	<game name="dragon-spirit">
		<url>http://www.mobygames.com/game/nes/dragon-spirit</url>
	</game>
	<game name="dragon-warrior">
		<url>http://www.mobygames.com/game/nes/dragon-warrior</url>
	</game>
	<game name="dragon-warrior-ii">
		<url>http://www.mobygames.com/game/nes/dragon-warrior-ii</url>
	</game>
	<game name="dragon-warrior-iii">
		<url>http://www.mobygames.com/game/nes/dragon-warrior-iii</url>
	</game>
	<game name="dragon-warrior-iv">
		<url>http://www.mobygames.com/game/nes/dragon-warrior-iv</url>
	</game>
	<game name="dragon-wars">
		<url>http://www.mobygames.com/game/nes/dragon-wars</url>
	</game>
	<game name="dragons-of-flame">
		<url>http://www.mobygames.com/game/nes/dragons-of-flame</url>
	</game>
	<game name="dragonstrike_">
		<url>http://www.mobygames.com/game/nes/dragonstrike_</url>
	</game>
	<game name="dropzone">
		<url>http://www.mobygames.com/game/nes/dropzone</url>
	</game>
	<game name="druid">
		<url>http://www.mobygames.com/game/nes/druid</url>
	</game>
	<game name="duck-hunt">
		<url>http://www.mobygames.com/game/nes/duck-hunt</url>
	</game>
	<game name="dudes-with-attitude">
		<url>http://www.mobygames.com/game/nes/dudes-with-attitude</url>
	</game>
	<game name="dungeon-magic-sword-of-the-elements">
		<url>http://www.mobygames.com/game/nes/dungeon-magic-sword-of-the-elements</url>
	</game>
	<game name="dusty-diamonds-all-star-softball">
		<url>http://www.mobygames.com/game/nes/dusty-diamonds-all-star-softball</url>
	</game>
	<game name="dynamite-bowl">
		<url>http://www.mobygames.com/game/nes/dynamite-bowl</url>
	</game>
	<game name="dynowarz-destruction-of-spondylus">
		<url>http://www.mobygames.com/game/nes/dynowarz-destruction-of-spondylus</url>
	</game>
	<game name="eggerland">
		<url>http://www.mobygames.com/game/nes/eggerland</url>
	</game>
	<game name="eggerland-meiky-no-fukkatsu">
		<url>http://www.mobygames.com/game/nes/eggerland-meiky-no-fukkatsu</url>
	</game>
	<game name="eggerland-sz-e-no-tabidachi">
		<url>http://www.mobygames.com/game/nes/eggerland-sz-e-no-tabidachi</url>
	</game>
	<game name="egypt">
		<url>http://www.mobygames.com/game/nes/egypt</url>
	</game>
	<game name="electrician">
		<url>http://www.mobygames.com/game/nes/electrician</url>
	</game>
	<game name="elevator-action">
		<url>http://www.mobygames.com/game/nes/elevator-action</url>
	</game>
	<game name="eliminator-boat-duel">
		<url>http://www.mobygames.com/game/nes/eliminator-boat-duel</url>
	</game>
	<game name="elite">
		<url>http://www.mobygames.com/game/nes/elite</url>
	</game>
	<game name="empire-city-1931">
		<url>http://www.mobygames.com/game/nes/empire-city-1931</url>
	</game>
	<game name="erika-to-satoru-no-yume-bken">
		<url>http://www.mobygames.com/game/nes/erika-to-satoru-no-yume-bken</url>
	</game>
	<game name="erunaaku-no-zaihou">
		<url>http://www.mobygames.com/game/nes/erunaaku-no-zaihou</url>
	</game>
	<game name="esper-dream">
		<url>http://www.mobygames.com/game/nes/esper-dream</url>
	</game>
	<game name="esper-dream-2-arata-naru-tatakai">
		<url>http://www.mobygames.com/game/nes/esper-dream-2-arata-naru-tatakai</url>
	</game>
	<game name="excitebike">
		<url>http://www.mobygames.com/game/nes/excitebike</url>
	</game>
	<game name="exciting-billiard">
		<url>http://www.mobygames.com/game/nes/exciting-billiard</url>
	</game>
	<game name="exciting-soccer-konami-cup">
		<url>http://www.mobygames.com/game/nes/exciting-soccer-konami-cup</url>
	</game>
	<game name="exed-exes">
		<url>http://www.mobygames.com/game/nes/exed-exes</url>
	</game>
	<game name="exerion">
		<url>http://www.mobygames.com/game/nes/exerion</url>
	</game>
	<game name="exodus-journey-to-the-promised-land">
		<url>http://www.mobygames.com/game/nes/exodus-journey-to-the-promised-land</url>
	</game>
	<game name="exodus-ultima-iii">
		<url>http://www.mobygames.com/game/nes/exodus-ultima-iii</url>
	</game>
	<game name="f-117a-stealth-fighter">
		<url>http://www.mobygames.com/game/nes/f-117a-stealth-fighter</url>
	</game>
	<game name="f-15-city-war">
		<url>http://www.mobygames.com/game/nes/f-15-city-war</url>
	</game>
	<game name="f-15-strike-eagle">
		<url>http://www.mobygames.com/game/nes/f-15-strike-eagle</url>
	</game>
	<game name="f1-circus">
		<url>http://www.mobygames.com/game/nes/f1-circus</url>
	</game>
	<game name="f1-race">
		<url>http://www.mobygames.com/game/nes/f1-race</url>
	</game>
	<game name="falsion">
		<url>http://www.mobygames.com/game/nes/falsion</url>
	</game>
	<game name="famicom-grand-prix-f1-race">
		<url>http://www.mobygames.com/game/nes/famicom-grand-prix-f1-race</url>
	</game>
	<game name="famicom-grand-prix-ii-3d-hot-rally">
		<url>http://www.mobygames.com/game/nes/famicom-grand-prix-ii-3d-hot-rally</url>
	</game>
	<game name="famicom-mukashibanashi-shin-onigashima">
		<url>http://www.mobygames.com/game/nes/famicom-mukashibanashi-shin-onigashima</url>
	</game>
	<game name="famicom-tantei-club-kieta-kkeisha">
		<url>http://www.mobygames.com/game/nes/famicom-tantei-club-kieta-kkeisha</url>
	</game>
	<game name="famicom-wars">
		<url>http://www.mobygames.com/game/nes/famicom-wars</url>
	</game>
	<game name="family-basic">
		<url>http://www.mobygames.com/game/nes/family-basic</url>
	</game>
	<game name="family-circuit">
		<url>http://www.mobygames.com/game/nes/family-circuit</url>
	</game>
	<game name="family-circuit-91">
		<url>http://www.mobygames.com/game/nes/family-circuit-91</url>
	</game>
	<game name="family-computer-golf-japan-course">
		<url>http://www.mobygames.com/game/nes/family-computer-golf-japan-course</url>
	</game>
	<game name="family-computer-golf-us-course">
		<url>http://www.mobygames.com/game/nes/family-computer-golf-us-course</url>
	</game>
	<game name="family-feud____">
		<url>http://www.mobygames.com/game/nes/family-feud____</url>
	</game>
	<game name="family-jockey">
		<url>http://www.mobygames.com/game/nes/family-jockey</url>
	</game>
	<game name="family-tennis">
		<url>http://www.mobygames.com/game/nes/family-tennis</url>
	</game>
	<game name="fantastic-adventures-of-dizzy">
		<url>http://www.mobygames.com/game/nes/fantastic-adventures-of-dizzy</url>
	</game>
	<game name="fantasy-zone">
		<url>http://www.mobygames.com/game/nes/fantasy-zone</url>
	</game>
	<game name="fantasy-zone-ii">
		<url>http://www.mobygames.com/game/nes/fantasy-zone-ii</url>
	</game>
	<game name="faria-a-world-of-mystery-and-danger">
		<url>http://www.mobygames.com/game/nes/faria-a-world-of-mystery-and-danger</url>
	</game>
	<game name="faxanadu">
		<url>http://www.mobygames.com/game/nes/faxanadu</url>
	</game>
	<game name="fc-portable-super-included-games">
		<url>http://www.mobygames.com/game/nes/fc-portable-super-included-games</url>
	</game>
	<game name="felix-the-cat">
		<url>http://www.mobygames.com/game/nes/felix-the-cat</url>
	</game>
	<game name="fengshenbang">
		<url>http://www.mobygames.com/game/nes/fengshenbang</url>
	</game>
	<game name="ferrari-grand-prix-challenge">
		<url>http://www.mobygames.com/game/nes/ferrari-grand-prix-challenge</url>
	</game>
	<game name="festers-quest">
		<url>http://www.mobygames.com/game/nes/festers-quest</url>
	</game>
	<game name="field-combat">
		<url>http://www.mobygames.com/game/nes/field-combat</url>
	</game>
	<game name="fighting-road">
		<url>http://www.mobygames.com/game/nes/fighting-road</url>
	</game>
	<game name="final-fantasy">
		<url>http://www.mobygames.com/game/nes/final-fantasy</url>
	</game>
	<game name="final-fantasy-ii">
		<url>http://www.mobygames.com/game/nes/final-fantasy-ii</url>
	</game>
	<game name="final-fantasy-iii">
		<url>http://www.mobygames.com/game/nes/final-fantasy-iii</url>
	</game>
	<game name="final-fantasy-iii___">
		<url>http://www.mobygames.com/game/nes/final-fantasy-iii___</url>
	</game>
	<game name="final-fantasy-vii_">
		<url>http://www.mobygames.com/game/nes/final-fantasy-vii_</url>
	</game>
	<game name="final-lap">
		<url>http://www.mobygames.com/game/nes/final-lap</url>
	</game>
	<game name="fire-emblem-ankoku-ry-to-hikari-no-tsurugi">
		<url>http://www.mobygames.com/game/nes/fire-emblem-ankoku-ry-to-hikari-no-tsurugi</url>
	</game>
	<game name="fire-emblem-gaiden">
		<url>http://www.mobygames.com/game/nes/fire-emblem-gaiden</url>
	</game>
	<game name="fire-n-ice">
		<url>http://www.mobygames.com/game/nes/fire-n-ice</url>
	</game>
	<game name="firehawk_">
		<url>http://www.mobygames.com/game/nes/firehawk_</url>
	</game>
	<game name="fisher-price-firehouse-rescue">
		<url>http://www.mobygames.com/game/nes/fisher-price-firehouse-rescue</url>
	</game>
	<game name="fisher-price-i-can-remember">
		<url>http://www.mobygames.com/game/nes/fisher-price-i-can-remember</url>
	</game>
	<game name="fisher-price-perfect-fit">
		<url>http://www.mobygames.com/game/nes/fisher-price-perfect-fit</url>
	</game>
	<game name="fist-of-the-north-star">
		<url>http://www.mobygames.com/game/nes/fist-of-the-north-star</url>
	</game>
	<game name="flappy">
		<url>http://www.mobygames.com/game/nes/flappy</url>
	</game>
	<game name="flight-of-the-intruder">
		<url>http://www.mobygames.com/game/nes/flight-of-the-intruder</url>
	</game>
	<game name="flintstones-the-rescue-of-dino-hoppy">
		<url>http://www.mobygames.com/game/nes/flintstones-the-rescue-of-dino-hoppy</url>
	</game>
	<game name="flintstones-the-surprise-at-dinosaur-peak">
		<url>http://www.mobygames.com/game/nes/flintstones-the-surprise-at-dinosaur-peak</url>
	</game>
	<game name="flying-dragon-the-secret-scroll-">
		<url>http://www.mobygames.com/game/nes/flying-dragon-the-secret-scroll-</url>
	</game>
	<game name="flying-warriors">
		<url>http://www.mobygames.com/game/nes/flying-warriors</url>
	</game>
	<game name="formation-z">
		<url>http://www.mobygames.com/game/nes/formation-z</url>
	</game>
	<game name="formula-1-sensation">
		<url>http://www.mobygames.com/game/nes/formula-1-sensation</url>
	</game>
	<game name="formula-one-built-to-win">
		<url>http://www.mobygames.com/game/nes/formula-one-built-to-win</url>
	</game>
	<game name="foxs-peter-pan-the-pirates-the-revenge-of-captain-hook">
		<url>http://www.mobygames.com/game/nes/foxs-peter-pan-the-pirates-the-revenge-of-captain-hook</url>
	</game>
	<game name="frankenstein-the-monster-returns">
		<url>http://www.mobygames.com/game/nes/frankenstein-the-monster-returns</url>
	</game>
	<game name="freedom-force_">
		<url>http://www.mobygames.com/game/nes/freedom-force_</url>
	</game>
	<game name="friday-the-13th">
		<url>http://www.mobygames.com/game/nes/friday-the-13th</url>
	</game>
	<game name="front-line">
		<url>http://www.mobygames.com/game/nes/front-line</url>
	</game>
	<game name="fun-house">
		<url>http://www.mobygames.com/game/nes/fun-house</url>
	</game>
	<game name="fun-shaolin-ken">
		<url>http://www.mobygames.com/game/nes/fun-shaolin-ken</url>
	</game>
	<game name="fun-shaolin-ken-ankoku-no-ma">
		<url>http://www.mobygames.com/game/nes/fun-shaolin-ken-ankoku-no-ma</url>
	</game>
	<game name="fushigi-no-umi-no-nadia">
		<url>http://www.mobygames.com/game/nes/fushigi-no-umi-no-nadia</url>
	</game>
	<game name="futebol">
		<url>http://www.mobygames.com/game/nes/futebol</url>
	</game>
	<game name="fuzzical-fighter">
		<url>http://www.mobygames.com/game/nes/fuzzical-fighter</url>
	</game>
	<game name="galactic-crusader">
		<url>http://www.mobygames.com/game/nes/galactic-crusader</url>
	</game>
	<game name="galaga">
		<url>http://www.mobygames.com/game/nes/galaga</url>
	</game>
	<game name="galaxian">
		<url>http://www.mobygames.com/game/nes/galaxian</url>
	</game>
	<game name="galaxy-5000">
		<url>http://www.mobygames.com/game/nes/galaxy-5000</url>
	</game>
	<game name="galivan">
		<url>http://www.mobygames.com/game/nes/galivan</url>
	</game>
	<game name="gall-force-eternal-story">
		<url>http://www.mobygames.com/game/nes/gall-force-eternal-story</url>
	</game>
	<game name="ganbare-goemon-2">
		<url>http://www.mobygames.com/game/nes/ganbare-goemon-2</url>
	</game>
	<game name="ganbare-goemon-gaiden-2-tenka-no-zaih">
		<url>http://www.mobygames.com/game/nes/ganbare-goemon-gaiden-2-tenka-no-zaih</url>
	</game>
	<game name="ganbare-goemon-gaiden-kieta-gon-kiseru">
		<url>http://www.mobygames.com/game/nes/ganbare-goemon-gaiden-kieta-gon-kiseru</url>
	</game>
	<game name="ganbare-goemon-karakuri-dch">
		<url>http://www.mobygames.com/game/nes/ganbare-goemon-karakuri-dch</url>
	</game>
	<game name="ganso-saiyki-super-monkey-daibken">
		<url>http://www.mobygames.com/game/nes/ganso-saiyki-super-monkey-daibken</url>
	</game>
	<game name="garfield-no-isshkan-a-week-of-garfield">
		<url>http://www.mobygames.com/game/nes/garfield-no-isshkan-a-week-of-garfield</url>
	</game>
	<game name="gargoyles-quest-ii">
		<url>http://www.mobygames.com/game/nes/gargoyles-quest-ii</url>
	</game>
	<game name="garry-kitchens-battletank">
		<url>http://www.mobygames.com/game/nes/garry-kitchens-battletank</url>
	</game>
	<game name="gauntlet-ii">
		<url>http://www.mobygames.com/game/nes/gauntlet-ii</url>
	</game>
	<game name="gauntlet___">
		<url>http://www.mobygames.com/game/nes/gauntlet___</url>
	</game>
	<game name="geimos-">
		<url>http://www.mobygames.com/game/nes/geimos-</url>
	</game>
	<game name="gemfire">
		<url>http://www.mobygames.com/game/nes/gemfire</url>
	</game>
	<game name="genghis-khan">
		<url>http://www.mobygames.com/game/nes/genghis-khan</url>
	</game>
	<game name="genghis-khan-ii-clan-of-the-gray-wolf">
		<url>http://www.mobygames.com/game/nes/genghis-khan-ii-clan-of-the-gray-wolf</url>
	</game>
	<game name="george-foremans-ko-boxing_">
		<url>http://www.mobygames.com/game/nes/george-foremans-ko-boxing_</url>
	</game>
	<game name="getsufma-den">
		<url>http://www.mobygames.com/game/nes/getsufma-den</url>
	</game>
	<game name="ghost-lion">
		<url>http://www.mobygames.com/game/nes/ghost-lion</url>
	</game>
	<game name="ghostbusters">
		<url>http://www.mobygames.com/game/nes/ghostbusters</url>
	</game>
	<game name="ghostbusters-ii__">
		<url>http://www.mobygames.com/game/nes/ghostbusters-ii__</url>
	</game>
	<game name="ghosts-n-goblins">
		<url>http://www.mobygames.com/game/nes/ghosts-n-goblins</url>
	</game>
	<game name="ghoul-school">
		<url>http://www.mobygames.com/game/nes/ghoul-school</url>
	</game>
	<game name="gi-joe-a-real-american-hero_">
		<url>http://www.mobygames.com/game/nes/gi-joe-a-real-american-hero_</url>
	</game>
	<game name="gi-joe-the-atlantis-factor-">
		<url>http://www.mobygames.com/game/nes/gi-joe-the-atlantis-factor-</url>
	</game>
	<game name="ginga-densh-galaxy-odyssey-">
		<url>http://www.mobygames.com/game/nes/ginga-densh-galaxy-odyssey-</url>
	</game>
	<game name="goal">
		<url>http://www.mobygames.com/game/nes/goal</url>
	</game>
	<game name="goal-two">
		<url>http://www.mobygames.com/game/nes/goal-two</url>
	</game>
	<game name="godzilla-2-war-of-the-monsters">
		<url>http://www.mobygames.com/game/nes/godzilla-2-war-of-the-monsters</url>
	</game>
	<game name="godzilla-monster-of-monsters">
		<url>http://www.mobygames.com/game/nes/godzilla-monster-of-monsters</url>
	</game>
	<game name="gold-medal-challenge-92">
		<url>http://www.mobygames.com/game/nes/gold-medal-challenge-92</url>
	</game>
	<game name="golf">
		<url>http://www.mobygames.com/game/nes/golf</url>
	</game>
	<game name="golf-grand-slam">
		<url>http://www.mobygames.com/game/nes/golf-grand-slam</url>
	</game>
	<game name="golgo-13-top-secret-episode">
		<url>http://www.mobygames.com/game/nes/golgo-13-top-secret-episode</url>
	</game>
	<game name="gomoku-narabe-renju-">
		<url>http://www.mobygames.com/game/nes/gomoku-narabe-renju-</url>
	</game>
	<game name="goonies">
		<url>http://www.mobygames.com/game/nes/goonies</url>
	</game>
	<game name="goonies-ii">
		<url>http://www.mobygames.com/game/nes/goonies-ii</url>
	</game>
	<game name="gorbys-pipeline">
		<url>http://www.mobygames.com/game/nes/gorbys-pipeline</url>
	</game>
	<game name="gotcha-the-sport">
		<url>http://www.mobygames.com/game/nes/gotcha-the-sport</url>
	</game>
	<game name="gradius">
		<url>http://www.mobygames.com/game/nes/gradius</url>
	</game>
	<game name="gradius-ii">
		<url>http://www.mobygames.com/game/nes/gradius-ii</url>
	</game>
	<game name="great-waldo-search">
		<url>http://www.mobygames.com/game/nes/great-waldo-search</url>
	</game>
	<game name="greg-normans-golf-power">
		<url>http://www.mobygames.com/game/nes/greg-normans-golf-power</url>
	</game>
	<game name="gremlins-2-the-new-batch__">
		<url>http://www.mobygames.com/game/nes/gremlins-2-the-new-batch__</url>
	</game>
	<game name="guardian-legend">
		<url>http://www.mobygames.com/game/nes/guardian-legend</url>
	</game>
	<game name="guerrilla-war">
		<url>http://www.mobygames.com/game/nes/guerrilla-war</url>
	</game>
	<game name="gumshoe">
		<url>http://www.mobygames.com/game/nes/gumshoe</url>
	</game>
	<game name="gun-nac">
		<url>http://www.mobygames.com/game/nes/gun-nac</url>
	</game>
	<game name="gunsmoke">
		<url>http://www.mobygames.com/game/nes/gunsmoke</url>
	</game>
	<game name="gyrodine">
		<url>http://www.mobygames.com/game/nes/gyrodine</url>
	</game>
	<game name="gyromite">
		<url>http://www.mobygames.com/game/nes/gyromite</url>
	</game>
	<game name="gyruss">
		<url>http://www.mobygames.com/game/nes/gyruss</url>
	</game>
	<game name="halley-wars">
		<url>http://www.mobygames.com/game/nes/halley-wars</url>
	</game>
	<game name="hammerin-harry">
		<url>http://www.mobygames.com/game/nes/hammerin-harry</url>
	</game>
	<game name="hana-no-star-kaid">
		<url>http://www.mobygames.com/game/nes/hana-no-star-kaid</url>
	</game>
	<game name="hanjuku-hero">
		<url>http://www.mobygames.com/game/nes/hanjuku-hero</url>
	</game>
	<game name="hao-kun-no-fushigina-tabi">
		<url>http://www.mobygames.com/game/nes/hao-kun-no-fushigina-tabi</url>
	</game>
	<game name="harlem-globetrotters">
		<url>http://www.mobygames.com/game/nes/harlem-globetrotters</url>
	</game>
	<game name="hatris">
		<url>http://www.mobygames.com/game/nes/hatris</url>
	</game>
	<game name="heavy-barrel">
		<url>http://www.mobygames.com/game/nes/heavy-barrel</url>
	</game>
	<game name="heavy-shreddin">
		<url>http://www.mobygames.com/game/nes/heavy-shreddin</url>
	</game>
	<game name="hello-kitty-world">
		<url>http://www.mobygames.com/game/nes/hello-kitty-world</url>
	</game>
	<game name="herakles-no-eik-2-titan-no-metsub">
		<url>http://www.mobygames.com/game/nes/herakles-no-eik-2-titan-no-metsub</url>
	</game>
	<game name="herakles-no-eik-tjin-maky-den">
		<url>http://www.mobygames.com/game/nes/herakles-no-eik-tjin-maky-den</url>
	</game>
	<game name="heroes-of-the-lance">
		<url>http://www.mobygames.com/game/nes/heroes-of-the-lance</url>
	</game>
	<game name="higemaru-makaijima-nanatsu-no-shima-daibken">
		<url>http://www.mobygames.com/game/nes/higemaru-makaijima-nanatsu-no-shima-daibken</url>
	</game>
	<game name="high-speed">
		<url>http://www.mobygames.com/game/nes/high-speed</url>
	</game>
	<game name="hillsfar">
		<url>http://www.mobygames.com/game/nes/hillsfar</url>
	</game>
	<game name="hinotori">
		<url>http://www.mobygames.com/game/nes/hinotori</url>
	</game>
	<game name="hiry-no-ken-iii-go-nin-no-ry-senshi">
		<url>http://www.mobygames.com/game/nes/hiry-no-ken-iii-go-nin-no-ry-senshi</url>
	</game>
	<game name="hissatsu-dj-yaburi">
		<url>http://www.mobygames.com/game/nes/hissatsu-dj-yaburi</url>
	</game>
	<game name="hogans-alley">
		<url>http://www.mobygames.com/game/nes/hogans-alley</url>
	</game>
	<game name="hokkaid-rensa-satsujin-okhotsk-ni-kiyu">
		<url>http://www.mobygames.com/game/nes/hokkaid-rensa-satsujin-okhotsk-ni-kiyu</url>
	</game>
	<game name="hokuto-no-ken">
		<url>http://www.mobygames.com/game/nes/hokuto-no-ken</url>
	</game>
	<game name="hokuto-no-ken-3-shinseiki-sz-seiken-retsuden">
		<url>http://www.mobygames.com/game/nes/hokuto-no-ken-3-shinseiki-sz-seiken-retsuden</url>
	</game>
	<game name="hokuto-no-ken-4-shichisei-haken-den-hokuto-shinken-no-kanata-e">
		<url>http://www.mobygames.com/game/nes/hokuto-no-ken-4-shichisei-haken-den-hokuto-shinken-no-kanata-e</url>
	</game>
	<game name="hole-in-one-professional">
		<url>http://www.mobygames.com/game/nes/hole-in-one-professional</url>
	</game>
	<game name="hollywood-squares">
		<url>http://www.mobygames.com/game/nes/hollywood-squares</url>
	</game>
	<game name="holy-diver">
		<url>http://www.mobygames.com/game/nes/holy-diver</url>
	</game>
	<game name="home-alone-2-lost-in-new-york_">
		<url>http://www.mobygames.com/game/nes/home-alone-2-lost-in-new-york_</url>
	</game>
	<game name="home-alone__">
		<url>http://www.mobygames.com/game/nes/home-alone__</url>
	</game>
	<game name="hon-shgi-nait-9-dan-shgi-hiden">
		<url>http://www.mobygames.com/game/nes/hon-shgi-nait-9-dan-shgi-hiden</url>
	</game>
	<game name="honey-peach">
		<url>http://www.mobygames.com/game/nes/honey-peach</url>
	</game>
	<game name="hook__">
		<url>http://www.mobygames.com/game/nes/hook__</url>
	</game>
	<game name="hoops">
		<url>http://www.mobygames.com/game/nes/hoops</url>
	</game>
	<game name="hoshi-o-miru-hito">
		<url>http://www.mobygames.com/game/nes/hoshi-o-miru-hito</url>
	</game>
	<game name="hostage-rescue-mission">
		<url>http://www.mobygames.com/game/nes/hostage-rescue-mission</url>
	</game>
	<game name="hot-slots">
		<url>http://www.mobygames.com/game/nes/hot-slots</url>
	</game>
	<game name="hottman-no-chitei-tanken">
		<url>http://www.mobygames.com/game/nes/hottman-no-chitei-tanken</url>
	</game>
	<game name="hudson-hawk">
		<url>http://www.mobygames.com/game/nes/hudson-hawk</url>
	</game>
	<game name="hunt-for-red-october__">
		<url>http://www.mobygames.com/game/nes/hunt-for-red-october__</url>
	</game>
	<game name="hydlide">
		<url>http://www.mobygames.com/game/nes/hydlide</url>
	</game>
	<game name="hyper-sports">
		<url>http://www.mobygames.com/game/nes/hyper-sports</url>
	</game>
	<game name="i-am-a-teacher-super-mario-no-sweater">
		<url>http://www.mobygames.com/game/nes/i-am-a-teacher-super-mario-no-sweater</url>
	</game>
	<game name="ice-climber">
		<url>http://www.mobygames.com/game/nes/ice-climber</url>
	</game>
	<game name="ice-hockey">
		<url>http://www.mobygames.com/game/nes/ice-hockey</url>
	</game>
	<game name="idol-hakkenden">
		<url>http://www.mobygames.com/game/nes/idol-hakkenden</url>
	</game>
	<game name="ikari-iii-the-rescue">
		<url>http://www.mobygames.com/game/nes/ikari-iii-the-rescue</url>
	</game>
	<game name="ikari-warriors">
		<url>http://www.mobygames.com/game/nes/ikari-warriors</url>
	</game>
	<game name="ikari-warriors-ii-victory-road">
		<url>http://www.mobygames.com/game/nes/ikari-warriors-ii-victory-road</url>
	</game>
	<game name="ike-ike-nekketsu-hockey-bu-subete-koronde-dairant">
		<url>http://www.mobygames.com/game/nes/ike-ike-nekketsu-hockey-bu-subete-koronde-dairant</url>
	</game>
	<game name="ikinari-musician">
		<url>http://www.mobygames.com/game/nes/ikinari-musician</url>
	</game>
	<game name="ikki">
		<url>http://www.mobygames.com/game/nes/ikki</url>
	</game>
	<game name="imagefight">
		<url>http://www.mobygames.com/game/nes/imagefight</url>
	</game>
	<game name="immortal">
		<url>http://www.mobygames.com/game/nes/immortal</url>
	</game>
	<game name="impossible-mission-ii">
		<url>http://www.mobygames.com/game/nes/impossible-mission-ii</url>
	</game>
	<game name="incredible-crash-dummies_">
		<url>http://www.mobygames.com/game/nes/incredible-crash-dummies_</url>
	</game>
	<game name="indiana-jones-and-the-last-crusade">
		<url>http://www.mobygames.com/game/nes/indiana-jones-and-the-last-crusade</url>
	</game>
	<game name="indiana-jones-and-the-last-crusade-the-action-game">
		<url>http://www.mobygames.com/game/nes/indiana-jones-and-the-last-crusade-the-action-game</url>
	</game>
	<game name="indiana-jones-and-the-temple-of-doom">
		<url>http://www.mobygames.com/game/nes/indiana-jones-and-the-temple-of-doom</url>
	</game>
	<game name="infiltrator-ii">
		<url>http://www.mobygames.com/game/nes/infiltrator-ii</url>
	</game>
	<game name="insector-x">
		<url>http://www.mobygames.com/game/nes/insector-x</url>
	</game>
	<game name="international-cricket">
		<url>http://www.mobygames.com/game/nes/international-cricket</url>
	</game>
	<game name="iron-tank-the-invasion-of-normandy">
		<url>http://www.mobygames.com/game/nes/iron-tank-the-invasion-of-normandy</url>
	</game>
	<game name="ironsword-wizards-warriors-ii">
		<url>http://www.mobygames.com/game/nes/ironsword-wizards-warriors-ii</url>
	</game>
	<game name="ishido-the-way-of-stones">
		<url>http://www.mobygames.com/game/nes/ishido-the-way-of-stones</url>
	</game>
	<game name="ishin-no-arashi">
		<url>http://www.mobygames.com/game/nes/ishin-no-arashi</url>
	</game>
	<game name="isolated-warrior">
		<url>http://www.mobygames.com/game/nes/isolated-warrior</url>
	</game>
	<game name="itadaki-street-watashi-no-omise-ni-yotte-tte">
		<url>http://www.mobygames.com/game/nes/itadaki-street-watashi-no-omise-ni-yotte-tte</url>
	</game>
	<game name="ivan-ironman-stewarts-super-off-road">
		<url>http://www.mobygames.com/game/nes/ivan-ironman-stewarts-super-off-road</url>
	</game>
	<game name="jack-nicklaus-greatest-18-holes-of-major-championship-golf">
		<url>http://www.mobygames.com/game/nes/jack-nicklaus-greatest-18-holes-of-major-championship-golf</url>
	</game>
	<game name="jackal">
		<url>http://www.mobygames.com/game/nes/jackal</url>
	</game>
	<game name="jackie-chans-action-kung-fu">
		<url>http://www.mobygames.com/game/nes/jackie-chans-action-kung-fu</url>
	</game>
	<game name="jajamaru-no-daibken">
		<url>http://www.mobygames.com/game/nes/jajamaru-no-daibken</url>
	</game>
	<game name="james-bond-jr">
		<url>http://www.mobygames.com/game/nes/james-bond-jr</url>
	</game>
	<game name="jaws">
		<url>http://www.mobygames.com/game/nes/jaws</url>
	</game>
	<game name="jeopardy-25th-anniversary-edition">
		<url>http://www.mobygames.com/game/nes/jeopardy-25th-anniversary-edition</url>
	</game>
	<game name="jeopardy-junior-edition">
		<url>http://www.mobygames.com/game/nes/jeopardy-junior-edition</url>
	</game>
	<game name="jeopardy_____">
		<url>http://www.mobygames.com/game/nes/jeopardy_____</url>
	</game>
	<game name="jesus-kyfu-no-bio-monster">
		<url>http://www.mobygames.com/game/nes/jesus-kyfu-no-bio-monster</url>
	</game>
	<game name="jetsons-cogswells-caper">
		<url>http://www.mobygames.com/game/nes/jetsons-cogswells-caper</url>
	</game>
	<game name="jim-hensons-muppet-adventure-no-1-chaos-at-the-carnival">
		<url>http://www.mobygames.com/game/nes/jim-hensons-muppet-adventure-no-1-chaos-at-the-carnival</url>
	</game>
	<game name="jimmy-connors-tennis">
		<url>http://www.mobygames.com/game/nes/jimmy-connors-tennis</url>
	</game>
	<game name="jj-tobidase-daisakusen-part-2">
		<url>http://www.mobygames.com/game/nes/jj-tobidase-daisakusen-part-2</url>
	</game>
	<game name="jleague-fighting-soccer-the-king-of-ace-strikers">
		<url>http://www.mobygames.com/game/nes/jleague-fighting-soccer-the-king-of-ace-strikers</url>
	</game>
	<game name="joe-mac-caveman-ninja">
		<url>http://www.mobygames.com/game/nes/joe-mac-caveman-ninja</url>
	</game>
	<game name="john-elways-quarterback">
		<url>http://www.mobygames.com/game/nes/john-elways-quarterback</url>
	</game>
	<game name="jordan-vs-bird-one-on-one">
		<url>http://www.mobygames.com/game/nes/jordan-vs-bird-one-on-one</url>
	</game>
	<game name="joshua-the-battle-of-jericho">
		<url>http://www.mobygames.com/game/nes/joshua-the-battle-of-jericho</url>
	</game>
	<game name="journey-to-silius">
		<url>http://www.mobygames.com/game/nes/journey-to-silius</url>
	</game>
	<game name="joust">
		<url>http://www.mobygames.com/game/nes/joust</url>
	</game>
	<game name="joy-mecha-fight">
		<url>http://www.mobygames.com/game/nes/joy-mecha-fight</url>
	</game>
	<game name="jurassic-park___">
		<url>http://www.mobygames.com/game/nes/jurassic-park___</url>
	</game>
	<game name="just-breed">
		<url>http://www.mobygames.com/game/nes/just-breed</url>
	</game>
	<game name="kabuki-quantum-fighter">
		<url>http://www.mobygames.com/game/nes/kabuki-quantum-fighter</url>
	</game>
	<game name="kaette-kita-mario-bros">
		<url>http://www.mobygames.com/game/nes/kaette-kita-mario-bros</url>
	</game>
	<game name="kaguya-hime-densetsu">
		<url>http://www.mobygames.com/game/nes/kaguya-hime-densetsu</url>
	</game>
	<game name="kaiketsu-yanchamaru-2-karakuri-land">
		<url>http://www.mobygames.com/game/nes/kaiketsu-yanchamaru-2-karakuri-land</url>
	</game>
	<game name="kaiketsu-yanchamaru-3-taiketsu-zringen">
		<url>http://www.mobygames.com/game/nes/kaiketsu-yanchamaru-3-taiketsu-zringen</url>
	</game>
	<game name="kalin-no-tsurugi">
		<url>http://www.mobygames.com/game/nes/kalin-no-tsurugi</url>
	</game>
	<game name="kanshakudama-nage-kantar-no-tkaid-gojsan-tsugi">
		<url>http://www.mobygames.com/game/nes/kanshakudama-nage-kantar-no-tkaid-gojsan-tsugi</url>
	</game>
	<game name="karate-champ">
		<url>http://www.mobygames.com/game/nes/karate-champ</url>
	</game>
	<game name="karate-kid">
		<url>http://www.mobygames.com/game/nes/karate-kid</url>
	</game>
	<game name="karateka">
		<url>http://www.mobygames.com/game/nes/karateka</url>
	</game>
	<game name="karnov">
		<url>http://www.mobygames.com/game/nes/karnov</url>
	</game>
	<game name="kart-fighter">
		<url>http://www.mobygames.com/game/nes/kart-fighter</url>
	</game>
	<game name="kick-challenger-air-foot">
		<url>http://www.mobygames.com/game/nes/kick-challenger-air-foot</url>
	</game>
	<game name="kick-master">
		<url>http://www.mobygames.com/game/nes/kick-master</url>
	</game>
	<game name="kick-off">
		<url>http://www.mobygames.com/game/nes/kick-off</url>
	</game>
	<game name="kickle-cubicle">
		<url>http://www.mobygames.com/game/nes/kickle-cubicle</url>
	</game>
	<game name="kid-icarus">
		<url>http://www.mobygames.com/game/nes/kid-icarus</url>
	</game>
	<game name="kid-klown-in-night-mayor-world">
		<url>http://www.mobygames.com/game/nes/kid-klown-in-night-mayor-world</url>
	</game>
	<game name="kid-kool-and-the-quest-for-the-seven-wonder-herbs">
		<url>http://www.mobygames.com/game/nes/kid-kool-and-the-quest-for-the-seven-wonder-herbs</url>
	</game>
	<game name="kid-niki-radical-ninja">
		<url>http://www.mobygames.com/game/nes/kid-niki-radical-ninja</url>
	</game>
	<game name="kieta-princess">
		<url>http://www.mobygames.com/game/nes/kieta-princess</url>
	</game>
	<game name="kiki-kaikai-dotou-hen">
		<url>http://www.mobygames.com/game/nes/kiki-kaikai-dotou-hen</url>
	</game>
	<game name="kineko-the-monitor-puzzle-vol-ii">
		<url>http://www.mobygames.com/game/nes/kineko-the-monitor-puzzle-vol-ii</url>
	</game>
	<game name="kinetic-connection">
		<url>http://www.mobygames.com/game/nes/kinetic-connection</url>
	</game>
	<game name="king-kong-2-ikari-no-megaton-punch">
		<url>http://www.mobygames.com/game/nes/king-kong-2-ikari-no-megaton-punch</url>
	</game>
	<game name="king-neptunes-adventure">
		<url>http://www.mobygames.com/game/nes/king-neptunes-adventure</url>
	</game>
	<game name="king-of-kings-the-early-years">
		<url>http://www.mobygames.com/game/nes/king-of-kings-the-early-years</url>
	</game>
	<game name="kings-knight">
		<url>http://www.mobygames.com/game/nes/kings-knight</url>
	</game>
	<game name="kings-of-the-beach">
		<url>http://www.mobygames.com/game/nes/kings-of-the-beach</url>
	</game>
	<game name="kings-quest-v-absence-makes-the-heart-go-yonder_">
		<url>http://www.mobygames.com/game/nes/kings-quest-v-absence-makes-the-heart-go-yonder_</url>
	</game>
	<game name="kirbys-adventure">
		<url>http://www.mobygames.com/game/nes/kirbys-adventure</url>
	</game>
	<game name="kiteretsu-daihyakka">
		<url>http://www.mobygames.com/game/nes/kiteretsu-daihyakka</url>
	</game>
	<game name="klax">
		<url>http://www.mobygames.com/game/nes/klax</url>
	</game>
	<game name="knight-lore">
		<url>http://www.mobygames.com/game/nes/knight-lore</url>
	</game>
	<game name="knight-rider_">
		<url>http://www.mobygames.com/game/nes/knight-rider_</url>
	</game>
	<game name="knightmare-ii-the-maze-of-galious">
		<url>http://www.mobygames.com/game/nes/knightmare-ii-the-maze-of-galious</url>
	</game>
	<game name="koko-adventure">
		<url>http://www.mobygames.com/game/nes/koko-adventure</url>
	</game>
	<game name="konami-hyper-soccer">
		<url>http://www.mobygames.com/game/nes/konami-hyper-soccer</url>
	</game>
	<game name="koneko-monogatari-the-adventures-of-chatran">
		<url>http://www.mobygames.com/game/nes/koneko-monogatari-the-adventures-of-chatran</url>
	</game>
	<game name="krazy-kreatures">
		<url>http://www.mobygames.com/game/nes/krazy-kreatures</url>
	</game>
	<game name="krion-conquest">
		<url>http://www.mobygames.com/game/nes/krion-conquest</url>
	</game>
	<game name="krustys-fun-house">
		<url>http://www.mobygames.com/game/nes/krustys-fun-house</url>
	</game>
	<game name="kryu-densetsu-villgust-gaiden">
		<url>http://www.mobygames.com/game/nes/kryu-densetsu-villgust-gaiden</url>
	</game>
	<game name="kshien">
		<url>http://www.mobygames.com/game/nes/kshien</url>
	</game>
	<game name="kung-fu-heroes">
		<url>http://www.mobygames.com/game/nes/kung-fu-heroes</url>
	</game>
	<game name="kung-fu-master">
		<url>http://www.mobygames.com/game/nes/kung-fu-master</url>
	</game>
	<game name="kunio-kun-no-nekketsu-soccer-league-">
		<url>http://www.mobygames.com/game/nes/kunio-kun-no-nekketsu-soccer-league-</url>
	</game>
	<game name="kyatto-ninden-teyandee">
		<url>http://www.mobygames.com/game/nes/kyatto-ninden-teyandee</url>
	</game>
	<game name="kyry-sentai-zyuranger">
		<url>http://www.mobygames.com/game/nes/kyry-sentai-zyuranger</url>
	</game>
	<game name="labyrinth__">
		<url>http://www.mobygames.com/game/nes/labyrinth__</url>
	</game>
	<game name="lagrange-point">
		<url>http://www.mobygames.com/game/nes/lagrange-point</url>
	</game>
	<game name="laser-invasion">
		<url>http://www.mobygames.com/game/nes/laser-invasion</url>
	</game>
	<game name="last-action-hero____">
		<url>http://www.mobygames.com/game/nes/last-action-hero____</url>
	</game>
	<game name="last-armageddon">
		<url>http://www.mobygames.com/game/nes/last-armageddon</url>
	</game>
	<game name="last-ninja-2-back-with-a-vengeance">
		<url>http://www.mobygames.com/game/nes/last-ninja-2-back-with-a-vengeance</url>
	</game>
	<game name="last-starfighter_">
		<url>http://www.mobygames.com/game/nes/last-starfighter_</url>
	</game>
	<game name="law-of-the-west">
		<url>http://www.mobygames.com/game/nes/law-of-the-west</url>
	</game>
	<game name="layla">
		<url>http://www.mobygames.com/game/nes/layla</url>
	</game>
	<game name="lee-trevinos-fighting-golf">
		<url>http://www.mobygames.com/game/nes/lee-trevinos-fighting-golf</url>
	</game>
	<game name="legacy-of-the-wizard">
		<url>http://www.mobygames.com/game/nes/legacy-of-the-wizard</url>
	</game>
	<game name="legend-of-kage">
		<url>http://www.mobygames.com/game/nes/legend-of-kage</url>
	</game>
	<game name="legend-of-prince-valiant">
		<url>http://www.mobygames.com/game/nes/legend-of-prince-valiant</url>
	</game>
	<game name="legend-of-zelda">
		<url>http://www.mobygames.com/game/nes/legend-of-zelda</url>
	</game>
	<game name="legendary-wings">
		<url>http://www.mobygames.com/game/nes/legendary-wings</url>
	</game>
	<game name="legends-of-the-diamond">
		<url>http://www.mobygames.com/game/nes/legends-of-the-diamond</url>
	</game>
	<game name="lemmings">
		<url>http://www.mobygames.com/game/nes/lemmings</url>
	</game>
	<game name="lempereur">
		<url>http://www.mobygames.com/game/nes/lempereur</url>
	</game>
	<game name="lethal-weapon_">
		<url>http://www.mobygames.com/game/nes/lethal-weapon_</url>
	</game>
	<game name="life-force">
		<url>http://www.mobygames.com/game/nes/life-force</url>
	</game>
	<game name="little-league-baseball-championship-series">
		<url>http://www.mobygames.com/game/nes/little-league-baseball-championship-series</url>
	</game>
	<game name="little-nemo-the-dream-master">
		<url>http://www.mobygames.com/game/nes/little-nemo-the-dream-master</url>
	</game>
	<game name="little-ninja-brothers">
		<url>http://www.mobygames.com/game/nes/little-ninja-brothers</url>
	</game>
	<game name="little-red-hood">
		<url>http://www.mobygames.com/game/nes/little-red-hood</url>
	</game>
	<game name="little-samson">
		<url>http://www.mobygames.com/game/nes/little-samson</url>
	</game>
	<game name="lode-runner">
		<url>http://www.mobygames.com/game/nes/lode-runner</url>
	</game>
	<game name="lone-ranger">
		<url>http://www.mobygames.com/game/nes/lone-ranger</url>
	</game>
	<game name="loopz">
		<url>http://www.mobygames.com/game/nes/loopz</url>
	</game>
	<game name="lost-word-of-jenny-ushinawareta-message">
		<url>http://www.mobygames.com/game/nes/lost-word-of-jenny-ushinawareta-message</url>
	</game>
	<game name="lot-lot">
		<url>http://www.mobygames.com/game/nes/lot-lot</url>
	</game>
	<game name="low-g-man">
		<url>http://www.mobygames.com/game/nes/low-g-man</url>
	</game>
	<game name="lunar-pool">
		<url>http://www.mobygames.com/game/nes/lunar-pool</url>
	</game>
	<game name="mach-rider">
		<url>http://www.mobygames.com/game/nes/mach-rider</url>
	</game>
	<game name="mad-max">
		<url>http://www.mobygames.com/game/nes/mad-max</url>
	</game>
	<game name="mafat-conspiracy">
		<url>http://www.mobygames.com/game/nes/mafat-conspiracy</url>
	</game>
	<game name="magic-candle-volume-1">
		<url>http://www.mobygames.com/game/nes/magic-candle-volume-1</url>
	</game>
	<game name="magic-darts">
		<url>http://www.mobygames.com/game/nes/magic-darts</url>
	</game>
	<game name="magic-johnsons-fast-break">
		<url>http://www.mobygames.com/game/nes/magic-johnsons-fast-break</url>
	</game>
	<game name="magic-of-scheherazade">
		<url>http://www.mobygames.com/game/nes/magic-of-scheherazade</url>
	</game>
	<game name="magician">
		<url>http://www.mobygames.com/game/nes/magician</url>
	</game>
	<game name="magmax">
		<url>http://www.mobygames.com/game/nes/magmax</url>
	</game>
	<game name="mahjang-companion">
		<url>http://www.mobygames.com/game/nes/mahjang-companion</url>
	</game>
	<game name="mahjong-taikai">
		<url>http://www.mobygames.com/game/nes/mahjong-taikai</url>
	</game>
	<game name="mahjong__">
		<url>http://www.mobygames.com/game/nes/mahjong__</url>
	</game>
	<game name="major-league-baseball_">
		<url>http://www.mobygames.com/game/nes/major-league-baseball_</url>
	</game>
	<game name="maniac-mansion">
		<url>http://www.mobygames.com/game/nes/maniac-mansion</url>
	</game>
	<game name="mappy">
		<url>http://www.mobygames.com/game/nes/mappy</url>
	</game>
	<game name="mappy-kids">
		<url>http://www.mobygames.com/game/nes/mappy-kids</url>
	</game>
	<game name="mappy-land">
		<url>http://www.mobygames.com/game/nes/mappy-land</url>
	</game>
	<game name="marble-madness">
		<url>http://www.mobygames.com/game/nes/marble-madness</url>
	</game>
	<game name="mario-bros">
		<url>http://www.mobygames.com/game/nes/mario-bros</url>
	</game>
	<game name="mario-is-missing">
		<url>http://www.mobygames.com/game/nes/mario-is-missing</url>
	</game>
	<game name="marios-time-machine">
		<url>http://www.mobygames.com/game/nes/marios-time-machine</url>
	</game>
	<game name="master-chu-and-the-drunkard-hu">
		<url>http://www.mobygames.com/game/nes/master-chu-and-the-drunkard-hu</url>
	</game>
	<game name="matsumoto-tru-no-kabushiki-hisshgaku">
		<url>http://www.mobygames.com/game/nes/matsumoto-tru-no-kabushiki-hisshgaku</url>
	</game>
	<game name="maxi-15-">
		<url>http://www.mobygames.com/game/nes/maxi-15-</url>
	</game>
	<game name="mc-kids">
		<url>http://www.mobygames.com/game/nes/mc-kids</url>
	</game>
	<game name="mechanized-attack">
		<url>http://www.mobygames.com/game/nes/mechanized-attack</url>
	</game>
	<game name="mega-man-">
		<url>http://www.mobygames.com/game/nes/mega-man-</url>
	</game>
	<game name="mega-man-2">
		<url>http://www.mobygames.com/game/nes/mega-man-2</url>
	</game>
	<game name="mega-man-3">
		<url>http://www.mobygames.com/game/nes/mega-man-3</url>
	</game>
	<game name="mega-man-4">
		<url>http://www.mobygames.com/game/nes/mega-man-4</url>
	</game>
	<game name="mega-man-5">
		<url>http://www.mobygames.com/game/nes/mega-man-5</url>
	</game>
	<game name="mega-man-6">
		<url>http://www.mobygames.com/game/nes/mega-man-6</url>
	</game>
	<game name="meiky-jiin-dababa">
		<url>http://www.mobygames.com/game/nes/meiky-jiin-dababa</url>
	</game>
	<game name="menace-beach">
		<url>http://www.mobygames.com/game/nes/menace-beach</url>
	</game>
	<game name="mendel-palace">
		<url>http://www.mobygames.com/game/nes/mendel-palace</url>
	</game>
	<game name="mermaids-of-atlantis-the-riddle-of-the-magic-bubble">
		<url>http://www.mobygames.com/game/nes/mermaids-of-atlantis-the-riddle-of-the-magic-bubble</url>
	</game>
	<game name="metal-fighter">
		<url>http://www.mobygames.com/game/nes/metal-fighter</url>
	</game>
	<game name="metal-gear">
		<url>http://www.mobygames.com/game/nes/metal-gear</url>
	</game>
	<game name="metal-max">
		<url>http://www.mobygames.com/game/nes/metal-max</url>
	</game>
	<game name="metal-slader-glory">
		<url>http://www.mobygames.com/game/nes/metal-slader-glory</url>
	</game>
	<game name="metal-storm">
		<url>http://www.mobygames.com/game/nes/metal-storm</url>
	</game>
	<game name="metalmech-man-machine">
		<url>http://www.mobygames.com/game/nes/metalmech-man-machine</url>
	</game>
	<game name="metro-cross">
		<url>http://www.mobygames.com/game/nes/metro-cross</url>
	</game>
	<game name="metroid">
		<url>http://www.mobygames.com/game/nes/metroid</url>
	</game>
	<game name="michael-andrettis-world-gp">
		<url>http://www.mobygames.com/game/nes/michael-andrettis-world-gp</url>
	</game>
	<game name="mickey-mousecapade">
		<url>http://www.mobygames.com/game/nes/mickey-mousecapade</url>
	</game>
	<game name="mickeys-adventures-in-numberland">
		<url>http://www.mobygames.com/game/nes/mickeys-adventures-in-numberland</url>
	</game>
	<game name="mickeys-safari-in-letterland">
		<url>http://www.mobygames.com/game/nes/mickeys-safari-in-letterland</url>
	</game>
	<game name="micro-machines">
		<url>http://www.mobygames.com/game/nes/micro-machines</url>
	</game>
	<game name="mig-29-soviet-fighter">
		<url>http://www.mobygames.com/game/nes/mig-29-soviet-fighter</url>
	</game>
	<game name="might-and-magic-book-one-secret-of-the-inner-sanctum">
		<url>http://www.mobygames.com/game/nes/might-and-magic-book-one-secret-of-the-inner-sanctum</url>
	</game>
	<game name="mighty-bombjack">
		<url>http://www.mobygames.com/game/nes/mighty-bombjack</url>
	</game>
	<game name="mighty-final-fight">
		<url>http://www.mobygames.com/game/nes/mighty-final-fight</url>
	</game>
	<game name="mike-tysons-punch-out">
		<url>http://www.mobygames.com/game/nes/mike-tysons-punch-out</url>
	</game>
	<game name="millipede">
		<url>http://www.mobygames.com/game/nes/millipede</url>
	</game>
	<game name="milons-secret-castle">
		<url>http://www.mobygames.com/game/nes/milons-secret-castle</url>
	</game>
	<game name="mini-putt">
		<url>http://www.mobygames.com/game/nes/mini-putt</url>
	</game>
	<game name="miracle-piano-teaching-system">
		<url>http://www.mobygames.com/game/nes/miracle-piano-teaching-system</url>
	</game>
	<game name="miracle-warriors-seal-of-the-dark-lord">
		<url>http://www.mobygames.com/game/nes/miracle-warriors-seal-of-the-dark-lord</url>
	</game>
	<game name="mirai-senshi-lios">
		<url>http://www.mobygames.com/game/nes/mirai-senshi-lios</url>
	</game>
	<game name="mission-cobra">
		<url>http://www.mobygames.com/game/nes/mission-cobra</url>
	</game>
	<game name="mission-impossible___">
		<url>http://www.mobygames.com/game/nes/mission-impossible___</url>
	</game>
	<game name="mitsume-ga-tooru">
		<url>http://www.mobygames.com/game/nes/mitsume-ga-tooru</url>
	</game>
	<game name="moai-kun">
		<url>http://www.mobygames.com/game/nes/moai-kun</url>
	</game>
	<game name="mobile-suit-z-gundam-hot-scramble">
		<url>http://www.mobygames.com/game/nes/mobile-suit-z-gundam-hot-scramble</url>
	</game>
	<game name="moero-judo-warriors">
		<url>http://www.mobygames.com/game/nes/moero-judo-warriors</url>
	</game>
	<game name="momotar-densetsu">
		<url>http://www.mobygames.com/game/nes/momotar-densetsu</url>
	</game>
	<game name="momotar-densetsu-gaiden">
		<url>http://www.mobygames.com/game/nes/momotar-densetsu-gaiden</url>
	</game>
	<game name="momotar-dentetsu">
		<url>http://www.mobygames.com/game/nes/momotar-dentetsu</url>
	</game>
	<game name="money-game">
		<url>http://www.mobygames.com/game/nes/money-game</url>
	</game>
	<game name="monopoly______">
		<url>http://www.mobygames.com/game/nes/monopoly______</url>
	</game>
	<game name="monster-in-my-pocket">
		<url>http://www.mobygames.com/game/nes/monster-in-my-pocket</url>
	</game>
	<game name="monster-party">
		<url>http://www.mobygames.com/game/nes/monster-party</url>
	</game>
	<game name="monster-truck-rally-">
		<url>http://www.mobygames.com/game/nes/monster-truck-rally-</url>
	</game>
	<game name="moon-crystal">
		<url>http://www.mobygames.com/game/nes/moon-crystal</url>
	</game>
	<game name="moon-ranger">
		<url>http://www.mobygames.com/game/nes/moon-ranger</url>
	</game>
	<game name="morita-shgi">
		<url>http://www.mobygames.com/game/nes/morita-shgi</url>
	</game>
	<game name="mother">
		<url>http://www.mobygames.com/game/nes/mother</url>
	</game>
	<game name="motor-city-patrol">
		<url>http://www.mobygames.com/game/nes/motor-city-patrol</url>
	</game>
	<game name="motorace-usa">
		<url>http://www.mobygames.com/game/nes/motorace-usa</url>
	</game>
	<game name="mr-gimmick">
		<url>http://www.mobygames.com/game/nes/mr-gimmick</url>
	</game>
	<game name="mrchen-veil">
		<url>http://www.mobygames.com/game/nes/mrchen-veil</url>
	</game>
	<game name="mry-senki-madara">
		<url>http://www.mobygames.com/game/nes/mry-senki-madara</url>
	</game>
	<game name="ms-pac-man">
		<url>http://www.mobygames.com/game/nes/ms-pac-man</url>
	</game>
	<game name="mule">
		<url>http://www.mobygames.com/game/nes/mule</url>
	</game>
	<game name="murder-club">
		<url>http://www.mobygames.com/game/nes/murder-club</url>
	</game>
	<game name="murder-on-the-mississippi">
		<url>http://www.mobygames.com/game/nes/murder-on-the-mississippi</url>
	</game>
	<game name="musashi-no-bken">
		<url>http://www.mobygames.com/game/nes/musashi-no-bken</url>
	</game>
	<game name="musashi-no-ken-tadaima-shugy-ch">
		<url>http://www.mobygames.com/game/nes/musashi-no-ken-tadaima-shugy-ch</url>
	</game>
	<game name="muscle">
		<url>http://www.mobygames.com/game/nes/muscle</url>
	</game>
	<game name="mutant-virus">
		<url>http://www.mobygames.com/game/nes/mutant-virus</url>
	</game>
	<game name="mystery-quest">
		<url>http://www.mobygames.com/game/nes/mystery-quest</url>
	</game>
	<game name="myth-history-in-the-making">
		<url>http://www.mobygames.com/game/nes/myth-history-in-the-making</url>
	</game>
	<game name="nagagutsu-o-haita-neko-sekai-issh-80-nichi-daibken">
		<url>http://www.mobygames.com/game/nes/nagagutsu-o-haita-neko-sekai-issh-80-nichi-daibken</url>
	</game>
	<game name="namida-no-skoban-special-">
		<url>http://www.mobygames.com/game/nes/namida-no-skoban-special-</url>
	</game>
	<game name="nantettatte-baseball">
		<url>http://www.mobygames.com/game/nes/nantettatte-baseball</url>
	</game>
	<game name="narc">
		<url>http://www.mobygames.com/game/nes/narc</url>
	</game>
	<game name="navyblue">
		<url>http://www.mobygames.com/game/nes/navyblue</url>
	</game>
	<game name="nazo-no-magazine-disk-nazoler-land-dai-2-g">
		<url>http://www.mobygames.com/game/nes/nazo-no-magazine-disk-nazoler-land-dai-2-g</url>
	</game>
	<game name="nazo-no-magazine-disk-nazoler-land-dai-3-g-">
		<url>http://www.mobygames.com/game/nes/nazo-no-magazine-disk-nazoler-land-dai-3-g-</url>
	</game>
	<game name="nazo-no-magazine-disk-nazoler-land-skan-g">
		<url>http://www.mobygames.com/game/nes/nazo-no-magazine-disk-nazoler-land-skan-g</url>
	</game>
	<game name="nazo-no-magazine-disk-nazoler-land-special-quiz-o-sagase">
		<url>http://www.mobygames.com/game/nes/nazo-no-magazine-disk-nazoler-land-special-quiz-o-sagase</url>
	</game>
	<game name="nazo-no-murasamej">
		<url>http://www.mobygames.com/game/nes/nazo-no-murasamej</url>
	</game>
	<game name="nekketsu-kakut-densetsu">
		<url>http://www.mobygames.com/game/nes/nekketsu-kakut-densetsu</url>
	</game>
	<game name="nekketsu-street-basket-ganbare-dunk-heroes">
		<url>http://www.mobygames.com/game/nes/nekketsu-street-basket-ganbare-dunk-heroes</url>
	</game>
	<game name="nes-open-tournament-golf">
		<url>http://www.mobygames.com/game/nes/nes-open-tournament-golf</url>
	</game>
	<game name="nes-play-action-football">
		<url>http://www.mobygames.com/game/nes/nes-play-action-football</url>
	</game>
	<game name="new-ghostbusters-ii">
		<url>http://www.mobygames.com/game/nes/new-ghostbusters-ii</url>
	</game>
	<game name="new-zealand-story">
		<url>http://www.mobygames.com/game/nes/new-zealand-story</url>
	</game>
	<game name="nfl">
		<url>http://www.mobygames.com/game/nes/nfl</url>
	</game>
	<game name="nigel-mansells-world-championship-racing">
		<url>http://www.mobygames.com/game/nes/nigel-mansells-world-championship-racing</url>
	</game>
	<game name="nightshade">
		<url>http://www.mobygames.com/game/nes/nightshade</url>
	</game>
	<game name="niji-no-silkroad">
		<url>http://www.mobygames.com/game/nes/niji-no-silkroad</url>
	</game>
	<game name="ninja-crusaders">
		<url>http://www.mobygames.com/game/nes/ninja-crusaders</url>
	</game>
	<game name="ninja-gaiden">
		<url>http://www.mobygames.com/game/nes/ninja-gaiden</url>
	</game>
	<game name="ninja-gaiden-ii-the-dark-sword-of-chaos">
		<url>http://www.mobygames.com/game/nes/ninja-gaiden-ii-the-dark-sword-of-chaos</url>
	</game>
	<game name="ninja-gaiden-iii-the-ancient-ship-of-doom">
		<url>http://www.mobygames.com/game/nes/ninja-gaiden-iii-the-ancient-ship-of-doom</url>
	</game>
	<game name="ninja-hattori-kun">
		<url>http://www.mobygames.com/game/nes/ninja-hattori-kun</url>
	</game>
	<game name="ninja-jajamaru-kun">
		<url>http://www.mobygames.com/game/nes/ninja-jajamaru-kun</url>
	</game>
	<game name="ninja-kid">
		<url>http://www.mobygames.com/game/nes/ninja-kid</url>
	</game>
	<game name="ninja-kun-maj-no-bken">
		<url>http://www.mobygames.com/game/nes/ninja-kun-maj-no-bken</url>
	</game>
	<game name="nintendo-campus-challenge-1991">
		<url>http://www.mobygames.com/game/nes/nintendo-campus-challenge-1991</url>
	</game>
	<game name="nintendo-world-championships-1990">
		<url>http://www.mobygames.com/game/nes/nintendo-world-championships-1990</url>
	</game>
	<game name="nintendo-world-cup">
		<url>http://www.mobygames.com/game/nes/nintendo-world-cup</url>
	</game>
	<game name="nishimura-kytar-mystery-blue-train-satsujinjiken">
		<url>http://www.mobygames.com/game/nes/nishimura-kytar-mystery-blue-train-satsujinjiken</url>
	</game>
	<game name="noahs-ark">
		<url>http://www.mobygames.com/game/nes/noahs-ark</url>
	</game>
	<game name="nobunagas-ambition">
		<url>http://www.mobygames.com/game/nes/nobunagas-ambition</url>
	</game>
	<game name="nobunagas-ambition-ii">
		<url>http://www.mobygames.com/game/nes/nobunagas-ambition-ii</url>
	</game>
	<game name="nobunagas-ambition-lord-of-darkness">
		<url>http://www.mobygames.com/game/nes/nobunagas-ambition-lord-of-darkness</url>
	</game>
	<game name="north-south">
		<url>http://www.mobygames.com/game/nes/north-south</url>
	</game>
	<game name="nuts-milk">
		<url>http://www.mobygames.com/game/nes/nuts-milk</url>
	</game>
	<game name="oeka-kids-anpanman-no-hiragana-daisuki">
		<url>http://www.mobygames.com/game/nes/oeka-kids-anpanman-no-hiragana-daisuki</url>
	</game>
	<game name="onyanko-town">
		<url>http://www.mobygames.com/game/nes/onyanko-town</url>
	</game>
	<game name="operation-europe-path-to-victory-1939-45">
		<url>http://www.mobygames.com/game/nes/operation-europe-path-to-victory-1939-45</url>
	</game>
	<game name="operation-secret-storm">
		<url>http://www.mobygames.com/game/nes/operation-secret-storm</url>
	</game>
	<game name="operation-wolf">
		<url>http://www.mobygames.com/game/nes/operation-wolf</url>
	</game>
	<game name="orb-3d">
		<url>http://www.mobygames.com/game/nes/orb-3d</url>
	</game>
	<game name="otaku-no-seiza-an-adventure-in-the-otaku-galaxy">
		<url>http://www.mobygames.com/game/nes/otaku-no-seiza-an-adventure-in-the-otaku-galaxy</url>
	</game>
	<game name="othello">
		<url>http://www.mobygames.com/game/nes/othello</url>
	</game>
	<game name="otocky">
		<url>http://www.mobygames.com/game/nes/otocky</url>
	</game>
	<game name="outlanders">
		<url>http://www.mobygames.com/game/nes/outlanders</url>
	</game>
	<game name="over-horizon">
		<url>http://www.mobygames.com/game/nes/over-horizon</url>
	</game>
	<game name="overlord-">
		<url>http://www.mobygames.com/game/nes/overlord-</url>
	</game>
	<game name="pac-land">
		<url>http://www.mobygames.com/game/nes/pac-land</url>
	</game>
	<game name="pac-man">
		<url>http://www.mobygames.com/game/nes/pac-man</url>
	</game>
	<game name="pac-mania">
		<url>http://www.mobygames.com/game/nes/pac-mania</url>
	</game>
	<game name="pachicom">
		<url>http://www.mobygames.com/game/nes/pachicom</url>
	</game>
	<game name="palamedes">
		<url>http://www.mobygames.com/game/nes/palamedes</url>
	</game>
	<game name="palamedes-ii-star-twinkles">
		<url>http://www.mobygames.com/game/nes/palamedes-ii-star-twinkles</url>
	</game>
	<game name="panic-restaurant">
		<url>http://www.mobygames.com/game/nes/panic-restaurant</url>
	</game>
	<game name="paperboy">
		<url>http://www.mobygames.com/game/nes/paperboy</url>
	</game>
	<game name="paperboy-2">
		<url>http://www.mobygames.com/game/nes/paperboy-2</url>
	</game>
	<game name="parallel-world">
		<url>http://www.mobygames.com/game/nes/parallel-world</url>
	</game>
	<game name="parasol-stars-the-story-of-bubble-bobble-iii">
		<url>http://www.mobygames.com/game/nes/parasol-stars-the-story-of-bubble-bobble-iii</url>
	</game>
	<game name="parodius">
		<url>http://www.mobygames.com/game/nes/parodius</url>
	</game>
	<game name="peek-a-boo-poker">
		<url>http://www.mobygames.com/game/nes/peek-a-boo-poker</url>
	</game>
	<game name="penguin-kun-wars">
		<url>http://www.mobygames.com/game/nes/penguin-kun-wars</url>
	</game>
	<game name="pesterminator-the-western-exterminator">
		<url>http://www.mobygames.com/game/nes/pesterminator-the-western-exterminator</url>
	</game>
	<game name="phantom-fighter">
		<url>http://www.mobygames.com/game/nes/phantom-fighter</url>
	</game>
	<game name="pictionary-the-game-of-video-quick-draw">
		<url>http://www.mobygames.com/game/nes/pictionary-the-game-of-video-quick-draw</url>
	</game>
	<game name="pin-bot">
		<url>http://www.mobygames.com/game/nes/pin-bot</url>
	</game>
	<game name="pinball-">
		<url>http://www.mobygames.com/game/nes/pinball-</url>
	</game>
	<game name="pinball-quest">
		<url>http://www.mobygames.com/game/nes/pinball-quest</url>
	</game>
	<game name="ping-pong">
		<url>http://www.mobygames.com/game/nes/ping-pong</url>
	</game>
	<game name="pipe-dream">
		<url>http://www.mobygames.com/game/nes/pipe-dream</url>
	</game>
	<game name="pizza-pop">
		<url>http://www.mobygames.com/game/nes/pizza-pop</url>
	</game>
	<game name="platoon">
		<url>http://www.mobygames.com/game/nes/platoon</url>
	</game>
	<game name="plotting">
		<url>http://www.mobygames.com/game/nes/plotting</url>
	</game>
	<game name="pocket-zaurus-j-ken-no-nazo">
		<url>http://www.mobygames.com/game/nes/pocket-zaurus-j-ken-no-nazo</url>
	</game>
	<game name="pool-of-radiance">
		<url>http://www.mobygames.com/game/nes/pool-of-radiance</url>
	</game>
	<game name="pooyan">
		<url>http://www.mobygames.com/game/nes/pooyan</url>
	</game>
	<game name="popeye">
		<url>http://www.mobygames.com/game/nes/popeye</url>
	</game>
	<game name="popeye-no-eigo-asobi">
		<url>http://www.mobygames.com/game/nes/popeye-no-eigo-asobi</url>
	</game>
	<game name="portopia-renzoku-satsujin-jiken">
		<url>http://www.mobygames.com/game/nes/portopia-renzoku-satsujin-jiken</url>
	</game>
	<game name="pow-prisoners-of-war">
		<url>http://www.mobygames.com/game/nes/pow-prisoners-of-war</url>
	</game>
	<game name="power-blade">
		<url>http://www.mobygames.com/game/nes/power-blade</url>
	</game>
	<game name="power-blade-ii">
		<url>http://www.mobygames.com/game/nes/power-blade-ii</url>
	</game>
	<game name="power-blazer">
		<url>http://www.mobygames.com/game/nes/power-blazer</url>
	</game>
	<game name="power-punch-2">
		<url>http://www.mobygames.com/game/nes/power-punch-2</url>
	</game>
	<game name="pradikus-conflict">
		<url>http://www.mobygames.com/game/nes/pradikus-conflict</url>
	</game>
	<game name="predator_">
		<url>http://www.mobygames.com/game/nes/predator_</url>
	</game>
	<game name="prince-of-persia">
		<url>http://www.mobygames.com/game/nes/prince-of-persia</url>
	</game>
	<game name="princess-tomato-in-the-salad-kingdom">
		<url>http://www.mobygames.com/game/nes/princess-tomato-in-the-salad-kingdom</url>
	</game>
	<game name="pro-sport-hockey">
		<url>http://www.mobygames.com/game/nes/pro-sport-hockey</url>
	</game>
	<game name="pro-wrestling">
		<url>http://www.mobygames.com/game/nes/pro-wrestling</url>
	</game>
	<game name="professional-mahjong-gok">
		<url>http://www.mobygames.com/game/nes/professional-mahjong-gok</url>
	</game>
	<game name="pulsar-no-hikari-space-wars-simulation">
		<url>http://www.mobygames.com/game/nes/pulsar-no-hikari-space-wars-simulation</url>
	</game>
	<game name="punisher_">
		<url>http://www.mobygames.com/game/nes/punisher_</url>
	</game>
	<game name="puss-n-boots-peros-great-adventure">
		<url>http://www.mobygames.com/game/nes/puss-n-boots-peros-great-adventure</url>
	</game>
	<game name="puyo-puyo">
		<url>http://www.mobygames.com/game/nes/puyo-puyo</url>
	</game>
	<game name="puzzle">
		<url>http://www.mobygames.com/game/nes/puzzle</url>
	</game>
	<game name="puzznic">
		<url>http://www.mobygames.com/game/nes/puzznic</url>
	</game>
	<game name="pyramid">
		<url>http://www.mobygames.com/game/nes/pyramid</url>
	</game>
	<game name="qbert">
		<url>http://www.mobygames.com/game/nes/qbert</url>
	</game>
	<game name="qix">
		<url>http://www.mobygames.com/game/nes/qix</url>
	</game>
	<game name="quarth">
		<url>http://www.mobygames.com/game/nes/quarth</url>
	</game>
	<game name="quattro-adventure">
		<url>http://www.mobygames.com/game/nes/quattro-adventure</url>
	</game>
	<game name="quattro-arcade_">
		<url>http://www.mobygames.com/game/nes/quattro-arcade_</url>
	</game>
	<game name="quattro-sports">
		<url>http://www.mobygames.com/game/nes/quattro-sports</url>
	</game>
	<game name="quest-of-ki">
		<url>http://www.mobygames.com/game/nes/quest-of-ki</url>
	</game>
	<game name="race-america">
		<url>http://www.mobygames.com/game/nes/race-america</url>
	</game>
	<game name="racket-attack">
		<url>http://www.mobygames.com/game/nes/racket-attack</url>
	</game>
	<game name="rackets-rivals">
		<url>http://www.mobygames.com/game/nes/rackets-rivals</url>
	</game>
	<game name="rad-action">
		<url>http://www.mobygames.com/game/nes/rad-action</url>
	</game>
	<game name="rad-racer">
		<url>http://www.mobygames.com/game/nes/rad-racer</url>
	</game>
	<game name="rad-racer-ii">
		<url>http://www.mobygames.com/game/nes/rad-racer-ii</url>
	</game>
	<game name="rad-racket-deluxe-tennis-ii">
		<url>http://www.mobygames.com/game/nes/rad-racket-deluxe-tennis-ii</url>
	</game>
	<game name="radia-senki-reimeihen">
		<url>http://www.mobygames.com/game/nes/radia-senki-reimeihen</url>
	</game>
	<game name="raid-2020">
		<url>http://www.mobygames.com/game/nes/raid-2020</url>
	</game>
	<game name="raid-on-bungeling-bay">
		<url>http://www.mobygames.com/game/nes/raid-on-bungeling-bay</url>
	</game>
	<game name="rainbow-islands">
		<url>http://www.mobygames.com/game/nes/rainbow-islands</url>
	</game>
	<game name="rainbow-islands_">
		<url>http://www.mobygames.com/game/nes/rainbow-islands_</url>
	</game>
	<game name="rally-bike">
		<url>http://www.mobygames.com/game/nes/rally-bike</url>
	</game>
	<game name="rambo_">
		<url>http://www.mobygames.com/game/nes/rambo_</url>
	</game>
	<game name="rampage">
		<url>http://www.mobygames.com/game/nes/rampage</url>
	</game>
	<game name="rampart">
		<url>http://www.mobygames.com/game/nes/rampart</url>
	</game>
	<game name="rbi-baseball">
		<url>http://www.mobygames.com/game/nes/rbi-baseball</url>
	</game>
	<game name="rbi-baseball-2">
		<url>http://www.mobygames.com/game/nes/rbi-baseball-2</url>
	</game>
	<game name="rbi-baseball-3">
		<url>http://www.mobygames.com/game/nes/rbi-baseball-3</url>
	</game>
	<game name="rc-pro-am">
		<url>http://www.mobygames.com/game/nes/rc-pro-am</url>
	</game>
	<game name="rc-pro-am-ii">
		<url>http://www.mobygames.com/game/nes/rc-pro-am-ii</url>
	</game>
	<game name="remote-control">
		<url>http://www.mobygames.com/game/nes/remote-control</url>
	</game>
	<game name="ren-stimpy-show-buckeroo">
		<url>http://www.mobygames.com/game/nes/ren-stimpy-show-buckeroo</url>
	</game>
	<game name="renegade">
		<url>http://www.mobygames.com/game/nes/renegade</url>
	</game>
	<game name="replicart">
		<url>http://www.mobygames.com/game/nes/replicart</url>
	</game>
	<game name="ring-king_">
		<url>http://www.mobygames.com/game/nes/ring-king_</url>
	</game>
	<game name="ripple-island">
		<url>http://www.mobygames.com/game/nes/ripple-island</url>
	</game>
	<game name="river-city-ransom">
		<url>http://www.mobygames.com/game/nes/river-city-ransom</url>
	</game>
	<game name="road-fighter">
		<url>http://www.mobygames.com/game/nes/road-fighter</url>
	</game>
	<game name="road-runner">
		<url>http://www.mobygames.com/game/nes/road-runner</url>
	</game>
	<game name="roadblasters">
		<url>http://www.mobygames.com/game/nes/roadblasters</url>
	</game>
	<game name="robin-hood-prince-of-thieves">
		<url>http://www.mobygames.com/game/nes/robin-hood-prince-of-thieves</url>
	</game>
	<game name="robocop">
		<url>http://www.mobygames.com/game/nes/robocop</url>
	</game>
	<game name="robocop-2">
		<url>http://www.mobygames.com/game/nes/robocop-2</url>
	</game>
	<game name="robocop-3">
		<url>http://www.mobygames.com/game/nes/robocop-3</url>
	</game>
	<game name="robodemons">
		<url>http://www.mobygames.com/game/nes/robodemons</url>
	</game>
	<game name="robowarrior">
		<url>http://www.mobygames.com/game/nes/robowarrior</url>
	</game>
	<game name="rock-n-ball">
		<url>http://www.mobygames.com/game/nes/rock-n-ball</url>
	</game>
	<game name="rocket-ranger">
		<url>http://www.mobygames.com/game/nes/rocket-ranger</url>
	</game>
	<game name="rocketeer_">
		<url>http://www.mobygames.com/game/nes/rocketeer_</url>
	</game>
	<game name="rockin-kats">
		<url>http://www.mobygames.com/game/nes/rockin-kats</url>
	</game>
	<game name="rodland">
		<url>http://www.mobygames.com/game/nes/rodland</url>
	</game>
	<game name="roger-clemens-mvp-baseball">
		<url>http://www.mobygames.com/game/nes/roger-clemens-mvp-baseball</url>
	</game>
	<game name="rokudenashi-blues">
		<url>http://www.mobygames.com/game/nes/rokudenashi-blues</url>
	</game>
	<game name="rollerball">
		<url>http://www.mobygames.com/game/nes/rollerball</url>
	</game>
	<game name="rollerblade-racer">
		<url>http://www.mobygames.com/game/nes/rollerblade-racer</url>
	</game>
	<game name="rollergames">
		<url>http://www.mobygames.com/game/nes/rollergames</url>
	</game>
	<game name="rolling-thunder">
		<url>http://www.mobygames.com/game/nes/rolling-thunder</url>
	</game>
	<game name="romance-of-the-three-kingdoms">
		<url>http://www.mobygames.com/game/nes/romance-of-the-three-kingdoms</url>
	</game>
	<game name="romance-of-the-three-kingdoms-ii">
		<url>http://www.mobygames.com/game/nes/romance-of-the-three-kingdoms-ii</url>
	</game>
	<game name="romancia-dragon-slayer-jr">
		<url>http://www.mobygames.com/game/nes/romancia-dragon-slayer-jr</url>
	</game>
	<game name="roundball-2-on-2-challenge">
		<url>http://www.mobygames.com/game/nes/roundball-2-on-2-challenge</url>
	</game>
	<game name="route-16-turbo">
		<url>http://www.mobygames.com/game/nes/route-16-turbo</url>
	</game>
	<game name="rushn-attack">
		<url>http://www.mobygames.com/game/nes/rushn-attack</url>
	</game>
	<game name="rygar">
		<url>http://www.mobygames.com/game/nes/rygar</url>
	</game>
	<game name="saint-seiya-gon-densetsu">
		<url>http://www.mobygames.com/game/nes/saint-seiya-gon-densetsu</url>
	</game>
	<game name="saint-seiya-gon-densetsu-kanketsu-hen">
		<url>http://www.mobygames.com/game/nes/saint-seiya-gon-densetsu-kanketsu-hen</url>
	</game>
	<game name="saiyki-world">
		<url>http://www.mobygames.com/game/nes/saiyki-world</url>
	</game>
	<game name="sangokushi-ii-ha-no-tairiku">
		<url>http://www.mobygames.com/game/nes/sangokushi-ii-ha-no-tairiku</url>
	</game>
	<game name="sanma-no-meitantei">
		<url>http://www.mobygames.com/game/nes/sanma-no-meitantei</url>
	</game>
	<game name="sans-1-nen-keisan-game">
		<url>http://www.mobygames.com/game/nes/sans-1-nen-keisan-game</url>
	</game>
	<game name="sans-2-nen-keisan-game">
		<url>http://www.mobygames.com/game/nes/sans-2-nen-keisan-game</url>
	</game>
	<game name="sans-3-nen-keisan-game">
		<url>http://www.mobygames.com/game/nes/sans-3-nen-keisan-game</url>
	</game>
	<game name="sans-4-nen-keisan-game">
		<url>http://www.mobygames.com/game/nes/sans-4-nen-keisan-game</url>
	</game>
	<game name="sans-56-nen-keisan-game">
		<url>http://www.mobygames.com/game/nes/sans-56-nen-keisan-game</url>
	</game>
	<game name="sasa">
		<url>http://www.mobygames.com/game/nes/sasa</url>
	</game>
	<game name="scat-special-cybernetic-attack-team">
		<url>http://www.mobygames.com/game/nes/scat-special-cybernetic-attack-team</url>
	</game>
	<game name="sd-gundam-world-gachapon-senshi-2-capsule-senki">
		<url>http://www.mobygames.com/game/nes/sd-gundam-world-gachapon-senshi-2-capsule-senki</url>
	</game>
	<game name="sd-gundam-world-gachapon-senshi-scramble-wars">
		<url>http://www.mobygames.com/game/nes/sd-gundam-world-gachapon-senshi-scramble-wars</url>
	</game>
	<game name="sd-hero-skessen-taose-aku-no-gundan">
		<url>http://www.mobygames.com/game/nes/sd-hero-skessen-taose-aku-no-gundan</url>
	</game>
	<game name="secret-scout-in-the-temple-of-demise">
		<url>http://www.mobygames.com/game/nes/secret-scout-in-the-temple-of-demise</url>
	</game>
	<game name="section-z">
		<url>http://www.mobygames.com/game/nes/section-z</url>
	</game>
	<game name="seicross">
		<url>http://www.mobygames.com/game/nes/seicross</url>
	</game>
	<game name="seikima-ii-akuma-no-gyakush">
		<url>http://www.mobygames.com/game/nes/seikima-ii-akuma-no-gyakush</url>
	</game>
	<game name="seirei-gari">
		<url>http://www.mobygames.com/game/nes/seirei-gari</url>
	</game>
	<game name="sesame-street-1-2-3">
		<url>http://www.mobygames.com/game/nes/sesame-street-1-2-3</url>
	</game>
	<game name="sesame-street-1-2-3a-b-c">
		<url>http://www.mobygames.com/game/nes/sesame-street-1-2-3a-b-c</url>
	</game>
	<game name="sesame-street-a-b-c">
		<url>http://www.mobygames.com/game/nes/sesame-street-a-b-c</url>
	</game>
	<game name="sesame-street-countdown">
		<url>http://www.mobygames.com/game/nes/sesame-street-countdown</url>
	</game>
	<game name="shadow-of-the-ninja">
		<url>http://www.mobygames.com/game/nes/shadow-of-the-ninja</url>
	</game>
	<game name="shadowgate">
		<url>http://www.mobygames.com/game/nes/shadowgate</url>
	</game>
	<game name="shanghai">
		<url>http://www.mobygames.com/game/nes/shanghai</url>
	</game>
	<game name="shanghai-ii">
		<url>http://www.mobygames.com/game/nes/shanghai-ii</url>
	</game>
	<game name="shatterhand">
		<url>http://www.mobygames.com/game/nes/shatterhand</url>
	</game>
	<game name="sheng-huo-lie-zhuan">
		<url>http://www.mobygames.com/game/nes/sheng-huo-lie-zhuan</url>
	</game>
	<game name="sherlock-holmes-hakushaku-reij-ykai-jiken-">
		<url>http://www.mobygames.com/game/nes/sherlock-holmes-hakushaku-reij-ykai-jiken-</url>
	</game>
	<game name="shi-kin-joh">
		<url>http://www.mobygames.com/game/nes/shi-kin-joh</url>
	</game>
	<game name="shingen-the-ruler">
		<url>http://www.mobygames.com/game/nes/shingen-the-ruler</url>
	</game>
	<game name="shinobi">
		<url>http://www.mobygames.com/game/nes/shinobi</url>
	</game>
	<game name="shockwave">
		<url>http://www.mobygames.com/game/nes/shockwave</url>
	</game>
	<game name="shooting-range">
		<url>http://www.mobygames.com/game/nes/shooting-range</url>
	</game>
	<game name="short-ordereggsplode">
		<url>http://www.mobygames.com/game/nes/short-ordereggsplode</url>
	</game>
	<game name="shufflepuck-cafe">
		<url>http://www.mobygames.com/game/nes/shufflepuck-cafe</url>
	</game>
	<game name="sid-meiers-pirates">
		<url>http://www.mobygames.com/game/nes/sid-meiers-pirates</url>
	</game>
	<game name="side-pocket">
		<url>http://www.mobygames.com/game/nes/side-pocket</url>
	</game>
	<game name="silent-assault">
		<url>http://www.mobygames.com/game/nes/silent-assault</url>
	</game>
	<game name="silent-service">
		<url>http://www.mobygames.com/game/nes/silent-service</url>
	</game>
	<game name="silkworm">
		<url>http://www.mobygames.com/game/nes/silkworm</url>
	</game>
	<game name="silver-eagle">
		<url>http://www.mobygames.com/game/nes/silver-eagle</url>
	</game>
	<game name="silver-surfer">
		<url>http://www.mobygames.com/game/nes/silver-surfer</url>
	</game>
	<game name="simpsons-bart-vs-the-space-mutants">
		<url>http://www.mobygames.com/game/nes/simpsons-bart-vs-the-space-mutants</url>
	</game>
	<game name="simpsons-bart-vs-the-world">
		<url>http://www.mobygames.com/game/nes/simpsons-bart-vs-the-world</url>
	</game>
	<game name="simpsons-bartman-meets-radioactive-man">
		<url>http://www.mobygames.com/game/nes/simpsons-bartman-meets-radioactive-man</url>
	</game>
	<game name="skate-or-die">
		<url>http://www.mobygames.com/game/nes/skate-or-die</url>
	</game>
	<game name="skate-or-die-2-the-search-for-double-trouble">
		<url>http://www.mobygames.com/game/nes/skate-or-die-2-the-search-for-double-trouble</url>
	</game>
	<game name="ski-or-die">
		<url>http://www.mobygames.com/game/nes/ski-or-die</url>
	</game>
	<game name="skull-crossbones_">
		<url>http://www.mobygames.com/game/nes/skull-crossbones_</url>
	</game>
	<game name="sky-destroyer">
		<url>http://www.mobygames.com/game/nes/sky-destroyer</url>
	</game>
	<game name="sky-kid">
		<url>http://www.mobygames.com/game/nes/sky-kid</url>
	</game>
	<game name="sky-shark">
		<url>http://www.mobygames.com/game/nes/sky-shark</url>
	</game>
	<game name="slalom">
		<url>http://www.mobygames.com/game/nes/slalom</url>
	</game>
	<game name="smash-tv">
		<url>http://www.mobygames.com/game/nes/smash-tv</url>
	</game>
	<game name="smurfs__">
		<url>http://www.mobygames.com/game/nes/smurfs__</url>
	</game>
	<game name="snake-rattle-n-roll">
		<url>http://www.mobygames.com/game/nes/snake-rattle-n-roll</url>
	</game>
	<game name="snakes-revenge">
		<url>http://www.mobygames.com/game/nes/snakes-revenge</url>
	</game>
	<game name="snoopys-silly-sports-spectacular">
		<url>http://www.mobygames.com/game/nes/snoopys-silly-sports-spectacular</url>
	</game>
	<game name="snow-brothers">
		<url>http://www.mobygames.com/game/nes/snow-brothers</url>
	</game>
	<game name="soccer">
		<url>http://www.mobygames.com/game/nes/soccer</url>
	</game>
	<game name="solar-jetman-hunt-for-the-golden-warpship">
		<url>http://www.mobygames.com/game/nes/solar-jetman-hunt-for-the-golden-warpship</url>
	</game>
	<game name="solitaire">
		<url>http://www.mobygames.com/game/nes/solitaire</url>
	</game>
	<game name="solomons-key">
		<url>http://www.mobygames.com/game/nes/solomons-key</url>
	</game>
	<game name="solstice-the-quest-for-the-staff-of-demnos">
		<url>http://www.mobygames.com/game/nes/solstice-the-quest-for-the-staff-of-demnos</url>
	</game>
	<game name="somari-the-adventurer">
		<url>http://www.mobygames.com/game/nes/somari-the-adventurer</url>
	</game>
	<game name="sonson">
		<url>http://www.mobygames.com/game/nes/sonson</url>
	</game>
	<game name="space-harrier">
		<url>http://www.mobygames.com/game/nes/space-harrier</url>
	</game>
	<game name="space-hunter_">
		<url>http://www.mobygames.com/game/nes/space-hunter_</url>
	</game>
	<game name="space-invaders-">
		<url>http://www.mobygames.com/game/nes/space-invaders-</url>
	</game>
	<game name="space-shuttle-project-">
		<url>http://www.mobygames.com/game/nes/space-shuttle-project-</url>
	</game>
	<game name="spartan-x-2">
		<url>http://www.mobygames.com/game/nes/spartan-x-2</url>
	</game>
	<game name="speedball">
		<url>http://www.mobygames.com/game/nes/speedball</url>
	</game>
	<game name="spelunker">
		<url>http://www.mobygames.com/game/nes/spelunker</url>
	</game>
	<game name="spelunker-ii-ysha-e-no-chsen">
		<url>http://www.mobygames.com/game/nes/spelunker-ii-ysha-e-no-chsen</url>
	</game>
	<game name="spider-man-return-of-the-sinister-six">
		<url>http://www.mobygames.com/game/nes/spider-man-return-of-the-sinister-six</url>
	</game>
	<game name="spiritual-warfare">
		<url>http://www.mobygames.com/game/nes/spiritual-warfare</url>
	</game>
	<game name="splatterhouse-wanpaku-graffiti">
		<url>http://www.mobygames.com/game/nes/splatterhouse-wanpaku-graffiti</url>
	</game>
	<game name="spot">
		<url>http://www.mobygames.com/game/nes/spot</url>
	</game>
	<game name="spy-hunter">
		<url>http://www.mobygames.com/game/nes/spy-hunter</url>
	</game>
	<game name="spy-vs-spy">
		<url>http://www.mobygames.com/game/nes/spy-vs-spy</url>
	</game>
	<game name="spy-vs-spy-the-island-caper">
		<url>http://www.mobygames.com/game/nes/spy-vs-spy-the-island-caper</url>
	</game>
	<game name="sqoon">
		<url>http://www.mobygames.com/game/nes/sqoon</url>
	</game>
	<game name="square-no-tom-sawyer">
		<url>http://www.mobygames.com/game/nes/square-no-tom-sawyer</url>
	</game>
	<game name="stack-up">
		<url>http://www.mobygames.com/game/nes/stack-up</url>
	</game>
	<game name="stadium-events">
		<url>http://www.mobygames.com/game/nes/stadium-events</url>
	</game>
	<game name="stanley-the-search-for-dr-livingston">
		<url>http://www.mobygames.com/game/nes/stanley-the-search-for-dr-livingston</url>
	</game>
	<game name="star-force">
		<url>http://www.mobygames.com/game/nes/star-force</url>
	</game>
	<game name="star-luster">
		<url>http://www.mobygames.com/game/nes/star-luster</url>
	</game>
	<game name="star-soldier">
		<url>http://www.mobygames.com/game/nes/star-soldier</url>
	</game>
	<game name="star-trek-25th-anniversary-">
		<url>http://www.mobygames.com/game/nes/star-trek-25th-anniversary-</url>
	</game>
	<game name="star-trek-the-next-generation">
		<url>http://www.mobygames.com/game/nes/star-trek-the-next-generation</url>
	</game>
	<game name="star-voyager_">
		<url>http://www.mobygames.com/game/nes/star-voyager_</url>
	</game>
	<game name="star-wars-the-empire-strikes-back">
		<url>http://www.mobygames.com/game/nes/star-wars-the-empire-strikes-back</url>
	</game>
	<game name="star-wars_">
		<url>http://www.mobygames.com/game/nes/star-wars_</url>
	</game>
	<game name="star-wars__">
		<url>http://www.mobygames.com/game/nes/star-wars__</url>
	</game>
	<game name="stargate">
		<url>http://www.mobygames.com/game/nes/stargate</url>
	</game>
	<game name="starship-hector">
		<url>http://www.mobygames.com/game/nes/starship-hector</url>
	</game>
	<game name="startropics">
		<url>http://www.mobygames.com/game/nes/startropics</url>
	</game>
	<game name="stealth-atf">
		<url>http://www.mobygames.com/game/nes/stealth-atf</url>
	</game>
	<game name="sted-iseki-wakusei-no-yab">
		<url>http://www.mobygames.com/game/nes/sted-iseki-wakusei-no-yab</url>
	</game>
	<game name="stinger">
		<url>http://www.mobygames.com/game/nes/stinger</url>
	</game>
	<game name="street-cop">
		<url>http://www.mobygames.com/game/nes/street-cop</url>
	</game>
	<game name="street-fighter-2010-the-final-fight">
		<url>http://www.mobygames.com/game/nes/street-fighter-2010-the-final-fight</url>
	</game>
	<game name="strider_">
		<url>http://www.mobygames.com/game/nes/strider_</url>
	</game>
	<game name="stunt-kids">
		<url>http://www.mobygames.com/game/nes/stunt-kids</url>
	</game>
	<game name="sugoro-quest-dice-no-senshi-tachi">
		<url>http://www.mobygames.com/game/nes/sugoro-quest-dice-no-senshi-tachi</url>
	</game>
	<game name="suish-no-dragon">
		<url>http://www.mobygames.com/game/nes/suish-no-dragon</url>
	</game>
	<game name="sullivan-bluth-presents-dragons-lair">
		<url>http://www.mobygames.com/game/nes/sullivan-bluth-presents-dragons-lair</url>
	</game>
	<game name="summer-carnival-92-recca">
		<url>http://www.mobygames.com/game/nes/summer-carnival-92-recca</url>
	</game>
	<game name="sunday-funday-the-ride">
		<url>http://www.mobygames.com/game/nes/sunday-funday-the-ride</url>
	</game>
	<game name="super-arabian">
		<url>http://www.mobygames.com/game/nes/super-arabian</url>
	</game>
	<game name="super-contra">
		<url>http://www.mobygames.com/game/nes/super-contra</url>
	</game>
	<game name="super-dodge-ball">
		<url>http://www.mobygames.com/game/nes/super-dodge-ball</url>
	</game>
	<game name="super-dynamix-badminton">
		<url>http://www.mobygames.com/game/nes/super-dynamix-badminton</url>
	</game>
	<game name="super-glove-ball">
		<url>http://www.mobygames.com/game/nes/super-glove-ball</url>
	</game>
	<game name="super-hydlide">
		<url>http://www.mobygames.com/game/nes/super-hydlide</url>
	</game>
	<game name="super-jeopardy">
		<url>http://www.mobygames.com/game/nes/super-jeopardy</url>
	</game>
	<game name="super-lode-runner">
		<url>http://www.mobygames.com/game/nes/super-lode-runner</url>
	</game>
	<game name="super-mario-bros">
		<url>http://www.mobygames.com/game/nes/super-mario-bros</url>
	</game>
	<game name="super-mario-bros-2">
		<url>http://www.mobygames.com/game/nes/super-mario-bros-2</url>
	</game>
	<game name="super-mario-bros-2_">
		<url>http://www.mobygames.com/game/nes/super-mario-bros-2_</url>
	</game>
	<game name="super-mario-bros-3">
		<url>http://www.mobygames.com/game/nes/super-mario-bros-3</url>
	</game>
	<game name="super-mario-bros-duck-hunt">
		<url>http://www.mobygames.com/game/nes/super-mario-bros-duck-hunt</url>
	</game>
	<game name="super-mario-bros-duck-hunt-world-class-track-meet">
		<url>http://www.mobygames.com/game/nes/super-mario-bros-duck-hunt-world-class-track-meet</url>
	</game>
	<game name="super-mario-bros-tetris-nintendo-world-cup">
		<url>http://www.mobygames.com/game/nes/super-mario-bros-tetris-nintendo-world-cup</url>
	</game>
	<game name="super-maruo">
		<url>http://www.mobygames.com/game/nes/super-maruo</url>
	</game>
	<game name="super-pitfall">
		<url>http://www.mobygames.com/game/nes/super-pitfall</url>
	</game>
	<game name="super-spike-vball">
		<url>http://www.mobygames.com/game/nes/super-spike-vball</url>
	</game>
	<game name="super-spike-vball-nintendo-world-cup">
		<url>http://www.mobygames.com/game/nes/super-spike-vball-nintendo-world-cup</url>
	</game>
	<game name="super-sprint">
		<url>http://www.mobygames.com/game/nes/super-sprint</url>
	</game>
	<game name="super-spy-hunter">
		<url>http://www.mobygames.com/game/nes/super-spy-hunter</url>
	</game>
	<game name="super-star-force-jikreki-no-himitsu">
		<url>http://www.mobygames.com/game/nes/super-star-force-jikreki-no-himitsu</url>
	</game>
	<game name="super-team-games">
		<url>http://www.mobygames.com/game/nes/super-team-games</url>
	</game>
	<game name="super-turrican_">
		<url>http://www.mobygames.com/game/nes/super-turrican_</url>
	</game>
	<game name="super-xevious">
		<url>http://www.mobygames.com/game/nes/super-xevious</url>
	</game>
	<game name="supercars">
		<url>http://www.mobygames.com/game/nes/supercars</url>
	</game>
	<game name="superman_">
		<url>http://www.mobygames.com/game/nes/superman_</url>
	</game>
	<game name="swamp-thing">
		<url>http://www.mobygames.com/game/nes/swamp-thing</url>
	</game>
	<game name="sweet-home">
		<url>http://www.mobygames.com/game/nes/sweet-home</url>
	</game>
	<game name="sword-master">
		<url>http://www.mobygames.com/game/nes/sword-master</url>
	</game>
	<game name="swords-and-serpents">
		<url>http://www.mobygames.com/game/nes/swords-and-serpents</url>
	</game>
	<game name="taboo-the-sixth-sense">
		<url>http://www.mobygames.com/game/nes/taboo-the-sixth-sense</url>
	</game>
	<game name="tag-team-wrestling">
		<url>http://www.mobygames.com/game/nes/tag-team-wrestling</url>
	</game>
	<game name="tagin-dragon">
		<url>http://www.mobygames.com/game/nes/tagin-dragon</url>
	</game>
	<game name="taiwan-mahjong-16-">
		<url>http://www.mobygames.com/game/nes/taiwan-mahjong-16-</url>
	</game>
	<game name="takahashi-meijin-no-bkenjima-iv">
		<url>http://www.mobygames.com/game/nes/takahashi-meijin-no-bkenjima-iv</url>
	</game>
	<game name="takeshi-no-chsenj">
		<url>http://www.mobygames.com/game/nes/takeshi-no-chsenj</url>
	</game>
	<game name="tales-of-the-unknown-volume-i-the-bards-tale">
		<url>http://www.mobygames.com/game/nes/tales-of-the-unknown-volume-i-the-bards-tale</url>
	</game>
	<game name="tantei-jingji-sabur-kiken-na-futari">
		<url>http://www.mobygames.com/game/nes/tantei-jingji-sabur-kiken-na-futari</url>
	</game>
	<game name="tantei-jingji-sabur-shinjuku-ch-ken-satsujin-jiken">
		<url>http://www.mobygames.com/game/nes/tantei-jingji-sabur-shinjuku-ch-ken-satsujin-jiken</url>
	</game>
	<game name="tantei-jingji-sabur-toki-no-sugiyuku-mama-ni">
		<url>http://www.mobygames.com/game/nes/tantei-jingji-sabur-toki-no-sugiyuku-mama-ni</url>
	</game>
	<game name="tantei-jingji-sabur-yokohama-k-renzoku-satsujin-jiken">
		<url>http://www.mobygames.com/game/nes/tantei-jingji-sabur-yokohama-k-renzoku-satsujin-jiken</url>
	</game>
	<game name="target-renegade">
		<url>http://www.mobygames.com/game/nes/target-renegade</url>
	</game>
	<game name="tecmo-baseball">
		<url>http://www.mobygames.com/game/nes/tecmo-baseball</url>
	</game>
	<game name="tecmo-bowl">
		<url>http://www.mobygames.com/game/nes/tecmo-bowl</url>
	</game>
	<game name="tecmo-cup-soccer-game">
		<url>http://www.mobygames.com/game/nes/tecmo-cup-soccer-game</url>
	</game>
	<game name="tecmo-nba-basketball">
		<url>http://www.mobygames.com/game/nes/tecmo-nba-basketball</url>
	</game>
	<game name="tecmo-super-bowl">
		<url>http://www.mobygames.com/game/nes/tecmo-super-bowl</url>
	</game>
	<game name="tecmo-world-cup-soccer">
		<url>http://www.mobygames.com/game/nes/tecmo-world-cup-soccer</url>
	</game>
	<game name="tecmo-world-wrestling">
		<url>http://www.mobygames.com/game/nes/tecmo-world-wrestling</url>
	</game>
	<game name="teenage-mutant-ninja-turtles">
		<url>http://www.mobygames.com/game/nes/teenage-mutant-ninja-turtles</url>
	</game>
	<game name="teenage-mutant-ninja-turtles-iii-the-manhattan-project">
		<url>http://www.mobygames.com/game/nes/teenage-mutant-ninja-turtles-iii-the-manhattan-project</url>
	</game>
	<game name="teenage-mutant-ninja-turtles-tournament-fighters_">
		<url>http://www.mobygames.com/game/nes/teenage-mutant-ninja-turtles-tournament-fighters_</url>
	</game>
	<game name="teenage-mutant-ninja-turtles__">
		<url>http://www.mobygames.com/game/nes/teenage-mutant-ninja-turtles__</url>
	</game>
	<game name="tenchi-o-kurau-ii-shokatsu-kmei-den">
		<url>http://www.mobygames.com/game/nes/tenchi-o-kurau-ii-shokatsu-kmei-den</url>
	</game>
	<game name="tenka-no-goikenban-mito-kmon">
		<url>http://www.mobygames.com/game/nes/tenka-no-goikenban-mito-kmon</url>
	</game>
	<game name="tenkaichi-bushi-keru-naguuru">
		<url>http://www.mobygames.com/game/nes/tenkaichi-bushi-keru-naguuru</url>
	</game>
	<game name="tennis">
		<url>http://www.mobygames.com/game/nes/tennis</url>
	</game>
	<game name="terminator-2-judgment-day_">
		<url>http://www.mobygames.com/game/nes/terminator-2-judgment-day_</url>
	</game>
	<game name="terminator____">
		<url>http://www.mobygames.com/game/nes/terminator____</url>
	</game>
	<game name="terra-cresta">
		<url>http://www.mobygames.com/game/nes/terra-cresta</url>
	</game>
	<game name="tetrastar-the-fighter-">
		<url>http://www.mobygames.com/game/nes/tetrastar-the-fighter-</url>
	</game>
	<game name="tetris-2">
		<url>http://www.mobygames.com/game/nes/tetris-2</url>
	</game>
	<game name="tetris-2-bombliss">
		<url>http://www.mobygames.com/game/nes/tetris-2-bombliss</url>
	</game>
	<game name="tetris_____">
		<url>http://www.mobygames.com/game/nes/tetris_____</url>
	</game>
	<game name="tetris______">
		<url>http://www.mobygames.com/game/nes/tetris______</url>
	</game>
	<game name="tetris_______">
		<url>http://www.mobygames.com/game/nes/tetris_______</url>
	</game>
	<game name="tetsuwan-atom">
		<url>http://www.mobygames.com/game/nes/tetsuwan-atom</url>
	</game>
	<game name="thexder">
		<url>http://www.mobygames.com/game/nes/thexder</url>
	</game>
	<game name="three-stooges">
		<url>http://www.mobygames.com/game/nes/three-stooges</url>
	</game>
	<game name="thunder-lightning">
		<url>http://www.mobygames.com/game/nes/thunder-lightning</url>
	</game>
	<game name="thunderbirds__">
		<url>http://www.mobygames.com/game/nes/thunderbirds__</url>
	</game>
	<game name="thundercade">
		<url>http://www.mobygames.com/game/nes/thundercade</url>
	</game>
	<game name="tiger-heli">
		<url>http://www.mobygames.com/game/nes/tiger-heli</url>
	</game>
	<game name="tiles-of-fate">
		<url>http://www.mobygames.com/game/nes/tiles-of-fate</url>
	</game>
	<game name="time-lord">
		<url>http://www.mobygames.com/game/nes/time-lord</url>
	</game>
	<game name="time-zone_">
		<url>http://www.mobygames.com/game/nes/time-zone_</url>
	</game>
	<game name="times-of-lore">
		<url>http://www.mobygames.com/game/nes/times-of-lore</url>
	</game>
	<game name="tiny-toon-adventures">
		<url>http://www.mobygames.com/game/nes/tiny-toon-adventures</url>
	</game>
	<game name="tiny-toon-adventures-2-trouble-in-wackyland">
		<url>http://www.mobygames.com/game/nes/tiny-toon-adventures-2-trouble-in-wackyland</url>
	</game>
	<game name="tiny-toon-adventures-cartoon-workshop">
		<url>http://www.mobygames.com/game/nes/tiny-toon-adventures-cartoon-workshop</url>
	</game>
	<game name="titan">
		<url>http://www.mobygames.com/game/nes/titan</url>
	</game>
	<game name="to-the-earth">
		<url>http://www.mobygames.com/game/nes/to-the-earth</url>
	</game>
	<game name="toki">
		<url>http://www.mobygames.com/game/nes/toki</url>
	</game>
	<game name="toki-no-tabibito-time-stranger">
		<url>http://www.mobygames.com/game/nes/toki-no-tabibito-time-stranger</url>
	</game>
	<game name="tokoro-san-no-mamoru-mo-semeru-mo">
		<url>http://www.mobygames.com/game/nes/tokoro-san-no-mamoru-mo-semeru-mo</url>
	</game>
	<game name="tom-jerry">
		<url>http://www.mobygames.com/game/nes/tom-jerry</url>
	</game>
	<game name="tombs-treasure">
		<url>http://www.mobygames.com/game/nes/tombs-treasure</url>
	</game>
	<game name="toobin">
		<url>http://www.mobygames.com/game/nes/toobin</url>
	</game>
	<game name="top-gun-the-second-mission">
		<url>http://www.mobygames.com/game/nes/top-gun-the-second-mission</url>
	</game>
	<game name="top-gun_">
		<url>http://www.mobygames.com/game/nes/top-gun_</url>
	</game>
	<game name="top-players-tennis">
		<url>http://www.mobygames.com/game/nes/top-players-tennis</url>
	</game>
	<game name="top-rider">
		<url>http://www.mobygames.com/game/nes/top-rider</url>
	</game>
	<game name="total-recall__">
		<url>http://www.mobygames.com/game/nes/total-recall__</url>
	</game>
	<game name="totally-rad">
		<url>http://www.mobygames.com/game/nes/totally-rad</url>
	</game>
	<game name="touchdown-fever">
		<url>http://www.mobygames.com/game/nes/touchdown-fever</url>
	</game>
	<game name="tower-of-druaga">
		<url>http://www.mobygames.com/game/nes/tower-of-druaga</url>
	</game>
	<game name="tower-toppler">
		<url>http://www.mobygames.com/game/nes/tower-toppler</url>
	</game>
	<game name="town-country-surf-designs-ii-thrillas-surfari">
		<url>http://www.mobygames.com/game/nes/town-country-surf-designs-ii-thrillas-surfari</url>
	</game>
	<game name="town-country-surf-designs-wood-water-rage">
		<url>http://www.mobygames.com/game/nes/town-country-surf-designs-wood-water-rage</url>
	</game>
	<game name="toxic-crusaders">
		<url>http://www.mobygames.com/game/nes/toxic-crusaders</url>
	</game>
	<game name="track-field">
		<url>http://www.mobygames.com/game/nes/track-field</url>
	</game>
	<game name="track-field-ii">
		<url>http://www.mobygames.com/game/nes/track-field-ii</url>
	</game>
	<game name="transformers-convoy-no-nazo">
		<url>http://www.mobygames.com/game/nes/transformers-convoy-no-nazo</url>
	</game>
	<game name="treasure-master">
		<url>http://www.mobygames.com/game/nes/treasure-master</url>
	</game>
	<game name="trog">
		<url>http://www.mobygames.com/game/nes/trog</url>
	</game>
	<game name="trojan">
		<url>http://www.mobygames.com/game/nes/trojan</url>
	</game>
	<game name="trolls-in-crazyland">
		<url>http://www.mobygames.com/game/nes/trolls-in-crazyland</url>
	</game>
	<game name="trolls-on-treasure-island">
		<url>http://www.mobygames.com/game/nes/trolls-on-treasure-island</url>
	</game>
	<game name="tsuppari-zum">
		<url>http://www.mobygames.com/game/nes/tsuppari-zum</url>
	</game>
	<game name="twin-cobra">
		<url>http://www.mobygames.com/game/nes/twin-cobra</url>
	</game>
	<game name="twin-eagle">
		<url>http://www.mobygames.com/game/nes/twin-eagle</url>
	</game>
	<game name="twinbee">
		<url>http://www.mobygames.com/game/nes/twinbee</url>
	</game>
	<game name="twinbee-3-poko-poko-daima">
		<url>http://www.mobygames.com/game/nes/twinbee-3-poko-poko-daima</url>
	</game>
	<game name="uchkeibitai-sdf">
		<url>http://www.mobygames.com/game/nes/uchkeibitai-sdf</url>
	</game>
	<game name="uchsen-cosmo-carrier">
		<url>http://www.mobygames.com/game/nes/uchsen-cosmo-carrier</url>
	</game>
	<game name="ufouria-the-saga">
		<url>http://www.mobygames.com/game/nes/ufouria-the-saga</url>
	</game>
	<game name="ultima-iv-quest-of-the-avatar">
		<url>http://www.mobygames.com/game/nes/ultima-iv-quest-of-the-avatar</url>
	</game>
	<game name="ultima-v-warriors-of-destiny">
		<url>http://www.mobygames.com/game/nes/ultima-v-warriors-of-destiny</url>
	</game>
	<game name="ultimate-air-combat">
		<url>http://www.mobygames.com/game/nes/ultimate-air-combat</url>
	</game>
	<game name="ultimate-basketball-">
		<url>http://www.mobygames.com/game/nes/ultimate-basketball-</url>
	</game>
	<game name="ultimate-league-soccer">
		<url>http://www.mobygames.com/game/nes/ultimate-league-soccer</url>
	</game>
	<game name="ultimate-stuntman">
		<url>http://www.mobygames.com/game/nes/ultimate-stuntman</url>
	</game>
	<game name="ultraman-kaij-teikoku-no-gyakush">
		<url>http://www.mobygames.com/game/nes/ultraman-kaij-teikoku-no-gyakush</url>
	</game>
	<game name="uncanny-x-men">
		<url>http://www.mobygames.com/game/nes/uncanny-x-men</url>
	</game>
	<game name="uncharted-waters">
		<url>http://www.mobygames.com/game/nes/uncharted-waters</url>
	</game>
	<game name="uninvited">
		<url>http://www.mobygames.com/game/nes/uninvited</url>
	</game>
	<game name="untouchables_">
		<url>http://www.mobygames.com/game/nes/untouchables_</url>
	</game>
	<game name="urban-champion">
		<url>http://www.mobygames.com/game/nes/urban-champion</url>
	</game>
	<game name="urusei-yatsura-lum-no-wedding-bell">
		<url>http://www.mobygames.com/game/nes/urusei-yatsura-lum-no-wedding-bell</url>
	</game>
	<game name="ushio-to-tora-shinen-no-daiy">
		<url>http://www.mobygames.com/game/nes/ushio-to-tora-shinen-no-daiy</url>
	</game>
	<game name="valis-the-fantasm-soldier">
		<url>http://www.mobygames.com/game/nes/valis-the-fantasm-soldier</url>
	</game>
	<game name="valkyrie-no-bken-toki-no-kagi-densetsu">
		<url>http://www.mobygames.com/game/nes/valkyrie-no-bken-toki-no-kagi-densetsu</url>
	</game>
	<game name="vegas-dream">
		<url>http://www.mobygames.com/game/nes/vegas-dream</url>
	</game>
	<game name="venice-beach-volleyball">
		<url>http://www.mobygames.com/game/nes/venice-beach-volleyball</url>
	</game>
	<game name="venus-senki">
		<url>http://www.mobygames.com/game/nes/venus-senki</url>
	</game>
	<game name="vice-project-doom">
		<url>http://www.mobygames.com/game/nes/vice-project-doom</url>
	</game>
	<game name="vindicators">
		<url>http://www.mobygames.com/game/nes/vindicators</url>
	</game>
	<game name="volguard-ii">
		<url>http://www.mobygames.com/game/nes/volguard-ii</url>
	</game>
	<game name="volleyball">
		<url>http://www.mobygames.com/game/nes/volleyball</url>
	</game>
	<game name="vs-wrecking-crew">
		<url>http://www.mobygames.com/game/nes/vs-wrecking-crew</url>
	</game>
	<game name="wacky-races___">
		<url>http://www.mobygames.com/game/nes/wacky-races___</url>
	</game>
	<game name="wagan-land">
		<url>http://www.mobygames.com/game/nes/wagan-land</url>
	</game>
	<game name="wai-wai-world">
		<url>http://www.mobygames.com/game/nes/wai-wai-world</url>
	</game>
	<game name="wai-wai-world-2-sos-parsley-j-">
		<url>http://www.mobygames.com/game/nes/wai-wai-world-2-sos-parsley-j-</url>
	</game>
	<game name="wall-street-kid">
		<url>http://www.mobygames.com/game/nes/wall-street-kid</url>
	</game>
	<game name="wally-bear-and-the-no-gang">
		<url>http://www.mobygames.com/game/nes/wally-bear-and-the-no-gang</url>
	</game>
	<game name="warios-woods">
		<url>http://www.mobygames.com/game/nes/warios-woods</url>
	</game>
	<game name="warpman">
		<url>http://www.mobygames.com/game/nes/warpman</url>
	</game>
	<game name="wayne-gretzky-hockey">
		<url>http://www.mobygames.com/game/nes/wayne-gretzky-hockey</url>
	</game>
	<game name="waynes-world_">
		<url>http://www.mobygames.com/game/nes/waynes-world_</url>
	</game>
	<game name="wcw-world-championship-wrestling">
		<url>http://www.mobygames.com/game/nes/wcw-world-championship-wrestling</url>
	</game>
	<game name="werewolf-the-last-warrior">
		<url>http://www.mobygames.com/game/nes/werewolf-the-last-warrior</url>
	</game>
	<game name="wheel-of-fortune-family-edition">
		<url>http://www.mobygames.com/game/nes/wheel-of-fortune-family-edition</url>
	</game>
	<game name="wheel-of-fortune-featuring-vanna-white">
		<url>http://www.mobygames.com/game/nes/wheel-of-fortune-featuring-vanna-white</url>
	</game>
	<game name="wheel-of-fortune-junior-edition">
		<url>http://www.mobygames.com/game/nes/wheel-of-fortune-junior-edition</url>
	</game>
	<game name="wheel-of-fortune_">
		<url>http://www.mobygames.com/game/nes/wheel-of-fortune_</url>
	</game>
	<game name="where-in-time-is-carmen-sandiego">
		<url>http://www.mobygames.com/game/nes/where-in-time-is-carmen-sandiego</url>
	</game>
	<game name="wheres-waldo">
		<url>http://www.mobygames.com/game/nes/wheres-waldo</url>
	</game>
	<game name="who-framed-roger-rabbit-">
		<url>http://www.mobygames.com/game/nes/who-framed-roger-rabbit-</url>
	</game>
	<game name="whomp-em">
		<url>http://www.mobygames.com/game/nes/whomp-em</url>
	</game>
	<game name="widget">
		<url>http://www.mobygames.com/game/nes/widget</url>
	</game>
	<game name="wild-gunman">
		<url>http://www.mobygames.com/game/nes/wild-gunman</url>
	</game>
	<game name="willow-">
		<url>http://www.mobygames.com/game/nes/willow-</url>
	</game>
	<game name="wily-right-no-rockboard-thats-paradise">
		<url>http://www.mobygames.com/game/nes/wily-right-no-rockboard-thats-paradise</url>
	</game>
	<game name="win-lose-or-draw">
		<url>http://www.mobygames.com/game/nes/win-lose-or-draw</url>
	</game>
	<game name="wing-of-madoola">
		<url>http://www.mobygames.com/game/nes/wing-of-madoola</url>
	</game>
	<game name="winter-games">
		<url>http://www.mobygames.com/game/nes/winter-games</url>
	</game>
	<game name="wizardry-knight-of-diamonds-the-second-scenario">
		<url>http://www.mobygames.com/game/nes/wizardry-knight-of-diamonds-the-second-scenario</url>
	</game>
	<game name="wizardry-legacy-of-llylgamyn-the-third-scenario">
		<url>http://www.mobygames.com/game/nes/wizardry-legacy-of-llylgamyn-the-third-scenario</url>
	</game>
	<game name="wizardry-proving-grounds-of-the-mad-overlord">
		<url>http://www.mobygames.com/game/nes/wizardry-proving-grounds-of-the-mad-overlord</url>
	</game>
	<game name="wizards-warriors-">
		<url>http://www.mobygames.com/game/nes/wizards-warriors-</url>
	</game>
	<game name="wizards-warriors-iii-kuros-visions-of-power">
		<url>http://www.mobygames.com/game/nes/wizards-warriors-iii-kuros-visions-of-power</url>
	</game>
	<game name="wolverine">
		<url>http://www.mobygames.com/game/nes/wolverine</url>
	</game>
	<game name="world-champ">
		<url>http://www.mobygames.com/game/nes/world-champ</url>
	</game>
	<game name="world-games">
		<url>http://www.mobygames.com/game/nes/world-games</url>
	</game>
	<game name="wrath-of-the-black-manta">
		<url>http://www.mobygames.com/game/nes/wrath-of-the-black-manta</url>
	</game>
	<game name="wurm-journey-to-the-center-of-the-earth">
		<url>http://www.mobygames.com/game/nes/wurm-journey-to-the-center-of-the-earth</url>
	</game>
	<game name="wwf-king-of-the-ring">
		<url>http://www.mobygames.com/game/nes/wwf-king-of-the-ring</url>
	</game>
	<game name="wwf-wrestlemania">
		<url>http://www.mobygames.com/game/nes/wwf-wrestlemania</url>
	</game>
	<game name="wwf-wrestlemania-challenge">
		<url>http://www.mobygames.com/game/nes/wwf-wrestlemania-challenge</url>
	</game>
	<game name="wwf-wrestlemania-steel-cage-challenge">
		<url>http://www.mobygames.com/game/nes/wwf-wrestlemania-steel-cage-challenge</url>
	</game>
	<game name="xenophobe">
		<url>http://www.mobygames.com/game/nes/xenophobe</url>
	</game>
	<game name="xevious">
		<url>http://www.mobygames.com/game/nes/xevious</url>
	</game>
	<game name="xexyz">
		<url>http://www.mobygames.com/game/nes/xexyz</url>
	</game>
	<game name="yamamura-misa-suspense-kyto-zai-tech-satsujin-jiken">
		<url>http://www.mobygames.com/game/nes/yamamura-misa-suspense-kyto-zai-tech-satsujin-jiken</url>
	</game>
	<game name="yie-ar-kung-fu_">
		<url>http://www.mobygames.com/game/nes/yie-ar-kung-fu_</url>
	</game>
	<game name="ykai-dchki">
		<url>http://www.mobygames.com/game/nes/ykai-dchki</url>
	</game>
	<game name="yo-noid">
		<url>http://www.mobygames.com/game/nes/yo-noid</url>
	</game>
	<game name="yoshi">
		<url>http://www.mobygames.com/game/nes/yoshi</url>
	</game>
	<game name="yoshis-cookie">
		<url>http://www.mobygames.com/game/nes/yoshis-cookie</url>
	</game>
	<game name="young-indiana-jones-chronicles">
		<url>http://www.mobygames.com/game/nes/young-indiana-jones-chronicles</url>
	</game>
	<game name="ys-ii-ancient-ys-vanished-the-final-chapter">
		<url>http://www.mobygames.com/game/nes/ys-ii-ancient-ys-vanished-the-final-chapter</url>
	</game>
	<game name="ys-iii-wanderers-from-ys">
		<url>http://www.mobygames.com/game/nes/ys-iii-wanderers-from-ys</url>
	</game>
	<game name="ys-the-vanished-omens">
		<url>http://www.mobygames.com/game/nes/ys-the-vanished-omens</url>
	</game>
	<game name="yshi-no-monsh-deep-dungeon">
		<url>http://www.mobygames.com/game/nes/yshi-no-monsh-deep-dungeon</url>
	</game>
	<game name="yume-kj-dokidoki-panic">
		<url>http://www.mobygames.com/game/nes/yume-kj-dokidoki-panic</url>
	</game>
	<game name="yume-penguin-monogatari">
		<url>http://www.mobygames.com/game/nes/yume-penguin-monogatari</url>
	</game>
	<game name="zanac-ai">
		<url>http://www.mobygames.com/game/nes/zanac-ai</url>
	</game>
	<game name="zelda-ii-the-adventure-of-link">
		<url>http://www.mobygames.com/game/nes/zelda-ii-the-adventure-of-link</url>
	</game>
	<game name="zen-intergalactic-ninja">
		<url>http://www.mobygames.com/game/nes/zen-intergalactic-ninja</url>
	</game>
	<game name="zodas-revenge-star-tropics-ii">
		<url>http://www.mobygames.com/game/nes/zodas-revenge-star-tropics-ii</url>
	</game>
	<game name="zoids-mokushiroku">
		<url>http://www.mobygames.com/game/nes/zoids-mokushiroku</url>
	</game>
	<game name="zombie-hunter">
		<url>http://www.mobygames.com/game/nes/zombie-hunter</url>
	</game>
	<game name="zombie-nation">
		<url>http://www.mobygames.com/game/nes/zombie-nation</url>
	</game>
	<game name="zooming-secretary">
		<url>http://www.mobygames.com/game/nes/zooming-secretary</url>
	</game>
	<game name="zun-senkan-galg">
		<url>http://www.mobygames.com/game/nes/zun-senkan-galg</url>
	</game>
</menu>

If we wanted to use the actual game titles I might as well scrape all the other info as well, because I would have to load the game page to get the title.
 

brolly

Administrator
Developer
Yeah, that would work just fine. I suggest you keep it even shorter:
Code:
<?xml version="1.0"?>
<games>
	<game name="720" url="http://www.mobygames.com/game/nes/720"/>
	<game name="1942" url="http://www.mobygames.com/game/nes/1942"/>
</games>

The actual game name isn't important since this is just for comparison so it's fine the way it is, but I'm curious about why you said that. Where are you getting that list from? Because I thought you were grabbing it from:
http://www.mobygames.com/browse/games/genesis/list-games/

And you have the game title in there. Are you getting the game list from some other URL?
 

dustind900

Member
Supporter
RL Member
The sitemap files. It saves me from having to parse multiple pages to get game links, but if you would rather have the clean titles I could parse the gamelist page instead.

Also just thought of maybe parsing the updates page as well?

Edit:
Now that I look, i can get the last update time for any game using the sitemap. Never noticed that before.
come to think of it couldn't we just download the sitemap.xml and use that?
 
Last edited:

brolly

Administrator
Developer
lol yeah we could, but I had no idea those files even existed not even sure where you found them are they linked from anywhere in the website?
 

dustind900

Member
Supporter
RL Member
I used search filters in google "site:www.mobygames.com filetype:xml". I would say 90% of the time it's faster to get the data you want from a website if you have access to the sitemap/index. Using the sitemap I am able to get every game link on the site in ~40 seconds.
 
Last edited:

dustind900

Member
Supporter
RL Member
I've decided to release this app in two flavors. Standard and Pro ( both FREE of course ). Pro will be released to a very, very small amount of people. Standard will be for everybody. Both will support updating outdated info, standard game info, extended game info, and a choice between two output file types( ini and xml ). More output types ( FE databases ) will be supported later on. The main difference being is that the Pro version will be able to do large batch operations while the standard version can only scrape individual game info. I have most of my base functions complete so now I am going to begin full app development. If anyone has any ideas or suggestions now would be the time. :)

gamesINI:
Code:
[Pokémon Mini]
lastUpdate=2015-02-01
[Pichu Bros. mini]
link=http://www.mobygames.com/game/pokemon-mini/pichu-bros-mini
lastUpdate=2014-09-09
[Pokémon Party mini]
link=http://www.mobygames.com/game/pokemon-mini/pokmon-party-mini
lastUpdate=2014-12-20
[Pokémon Pinball mini]
link=http://www.mobygames.com/game/pokemon-mini/pokmon-pinball-mini
lastUpdate=2014-11-14
[Pokémon Puzzle Collection]
link=http://www.mobygames.com/game/pokemon-mini/pokmon-puzzle-collection
lastUpdate=2014-09-14
[Pokémon Puzzle Collection Vol. 2]
link=http://www.mobygames.com/game/pokemon-mini/pokmon-puzzle-collection-vol-2
lastUpdate=2014-11-10
[Pokémon Race mini]
link=http://www.mobygames.com/game/pokemon-mini/pokmon-race-mini
lastUpdate=2014-10-24
[Pokémon Sodate-ya-san mini]
link=http://www.mobygames.com/game/pokemon-mini/pokmon-sodate-ya-san-mini
lastUpdate=2014-11-02
[Pokémon Tetris]
link=http://www.mobygames.com/game/pokemon-mini/pokmon-tetris
lastUpdate=2014-09-19
[Pokémon Zany Cards]
link=http://www.mobygames.com/game/pokemon-mini/pokmon-zany-cards
lastUpdate=2014-09-29
[Togepi no Daibōken]
link=http://www.mobygames.com/game/pokemon-mini/togepi-no-daibken
lastUpdate=2014-11-02
gamesXML:
Code:
<?xml version="1.0" encoding="UTF-8"?>
<listname>Pokémon Mini</listname>
<lastupdate>2015-02-01</lastupdate>
<games>
	<game name="Pichu Bros. mini" url="http://www.mobygames.com/game/pokemon-mini/pichu-bros-mini" lastupdate="2014-09-09"/>
	<game name="Pokémon Party mini" url="http://www.mobygames.com/game/pokemon-mini/pokmon-party-mini" lastupdate="2014-12-20"/>
	<game name="Pokémon Pinball mini" url="http://www.mobygames.com/game/pokemon-mini/pokmon-pinball-mini" lastupdate="2014-11-14"/>
	<game name="Pokémon Puzzle Collection" url="http://www.mobygames.com/game/pokemon-mini/pokmon-puzzle-collection" lastupdate="2014-09-14"/>
	<game name="Pokémon Puzzle Collection Vol. 2" url="http://www.mobygames.com/game/pokemon-mini/pokmon-puzzle-collection-vol-2" lastupdate="2014-11-10"/>
	<game name="Pokémon Race mini" url="http://www.mobygames.com/game/pokemon-mini/pokmon-race-mini" lastupdate="2014-10-24"/>
	<game name="Pokémon Sodate-ya-san mini" url="http://www.mobygames.com/game/pokemon-mini/pokmon-sodate-ya-san-mini" lastupdate="2014-11-02"/>
	<game name="Pokémon Tetris" url="http://www.mobygames.com/game/pokemon-mini/pokmon-tetris" lastupdate="2014-09-19"/>
	<game name="Pokémon Zany Cards" url="http://www.mobygames.com/game/pokemon-mini/pokmon-zany-cards" lastupdate="2014-09-29"/>
	<game name="Togepi no Daibōken" url="http://www.mobygames.com/game/pokemon-mini/togepi-no-daibken" lastupdate="2014-11-02"/>
</games>

systemsINI ( snippet ):
Code:
[All Platforms]
lastUpdate=2015-02-01
int=-1
listgames=http://www.mobygames.com/browse/games/list-games/
[3DO]
int=35
linkname=3do
lastUpdate=2015-01-30
sitemap=http://www.mobygames.com/images/sitemap/sitemap_3do_games.xml
listgames=http://www.mobygames.com/browse/games/3do/list-games/
[Acorn 32-bit]
int=117
linkname=acorn-32-bit
lastUpdate=2015-01-31
sitemap=http://www.mobygames.com/images/sitemap/sitemap_acorn32bit_games.xml
listgames=http://www.mobygames.com/browse/games/acorn-32-bit/list-games/
[Amiga]
int=19
linkname=amiga
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_amiga_games.xml
listgames=http://www.mobygames.com/browse/games/amiga/list-games/
[Amiga CD32]
int=56
linkname=amiga-cd32
lastUpdate=2015-01-31
sitemap=http://www.mobygames.com/images/sitemap/sitemap_amigacd32_games.xml
listgames=http://www.mobygames.com/browse/games/amiga-cd32/list-games/
[Amstrad CPC]
int=60
linkname=cpc
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_amstradcpc_games.xml
listgames=http://www.mobygames.com/browse/games/cpc/list-games/
[Amstrad PCW]
int=136
linkname=amstrad-pcw
lastUpdate=2015-01-30
sitemap=http://www.mobygames.com/images/sitemap/sitemap_amstradpcw_games.xml
listgames=http://www.mobygames.com/browse/games/amstrad-pcw/list-games/
[Android]
int=91
linkname=android
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_android_games.xml
listgames=http://www.mobygames.com/browse/games/android/list-games/
[Apple II]
int=31
linkname=apple2
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_appleii_games.xml
listgames=http://www.mobygames.com/browse/games/apple2/list-games/
[Apple IIgs]
int=51
linkname=apple2gs
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_appleiigs_games.xml
listgames=http://www.mobygames.com/browse/games/apple2gs/list-games/
[Arcade]
int=143
linkname=arcade
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_arcade_games.xml
listgames=http://www.mobygames.com/browse/games/arcade/list-games/
[Atari 2600]
int=28
linkname=atari-2600
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_atari2600_games.xml
listgames=http://www.mobygames.com/browse/games/atari-2600/list-games/
[Atari 5200]
int=33
linkname=atari-5200
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_atari5200_games.xml
listgames=http://www.mobygames.com/browse/games/atari-5200/list-games/
[Atari 7800]
int=34
linkname=atari-7800
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_atari7800_games.xml
listgames=http://www.mobygames.com/browse/games/atari-7800/list-games/
[Atari 8-bit]
int=39
linkname=atari-8-bit
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_atari8bit_games.xml
listgames=http://www.mobygames.com/browse/games/atari-8-bit/list-games/
[Atari ST]
int=24
linkname=atari-st
lastUpdate=2015-02-01
sitemap=http://www.mobygames.com/images/sitemap/sitemap_atarist_games.xml
listgames=http://www.mobygames.com/browse/games/atari-st/list-games/
[Atom]
int=129
linkname=atom
lastUpdate=2014-10-05
sitemap=http://www.mobygames.com/images/sitemap/sitemap_atom_games.xml
listgames=http://www.mobygames.com/browse/games/atom/list-games/

I'll have a preview of the systemsXML tomorrow. Wow it's late!?
 

brolly

Administrator
Developer
Looks good, one suggestion: Also keep the moby system shortname on that list. I mean the one used in the sitemap or game lists URLs (pokemon-mini,nes,genesis,etc.).
 
Top