diff --git a/.gitignore b/.gitignore
index 9ec1673..7a224ea 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@
venv/
v-data/
database.sqlite3
+/venv3.4/
diff --git a/README.md b/README.md
index d2efeff..ec76ead 100644
--- a/README.md
+++ b/README.md
@@ -6,19 +6,26 @@ Cog Function
| --- | --- | --- |
| announcedaily | **Alpha** | Send daily announcements to all servers at a specified times
Commissioned release, so suggestions will not be accepted |
| audiotrivia | **Alpha** | Guess the audio using the core trivia cog
Replaces the core Trivia cog. Needs help adding audio trivia lists, please submit a PR to contribute |
-| ccrole | **Beta** | Create custom commands that also assign roles
May have some bugs, please create an issue if you find any |
-| chatter | **Alpha** | Chat-bot trained to talk like your guild
Missing some key features, but currently functional |
+| ccrole | **Release** | Create custom commands that also assign roles
May have some bugs, please create an issue if you find any |
+| chatter | **Beta** | Chat-bot trained to talk like your guild
Missing some key features, but currently functional. See [Chatter](https://github.com/bobloy/Fox-V3/tree/master/chatter) for install instructions |
| coglint | **Alpha** | Error check code in python syntax posted to discord
Works, but probably needs more turning to work for cogs |
+| conquest | **Alpha** | Manage maps for war games and RPGs
Lots of additional features are planned, currently function with simple map |
+| dad | **Beta** | Tell dad jokes
Works great! |
| exclusiverole | **Alpha** | Prevent certain roles from getting any other roles
Fully functional, but pretty simple |
+| fifo | **Alpha** | Schedule commands to be run at certain times or intervals
Just released, please report bugs as you find them. Only works for bot owner for now |
| fight | **Incomplete** | Organize bracket tournaments within discord
Still in-progress, a massive project |
+| firstmessage | **Release** | Simple cog to provide a jump link to the first message in a channel/summary>Just released, please report bugs as you find them.
|
| flag | **Alpha** | Create temporary marks on users that expire after specified time
Ported, will not import old data. Please report bugs |
| forcemention | **Alpha** | Mentions unmentionable roles
Very simple cog, mention doesn't persist |
-| hangman | **Alpha** | Play a game of hangman
Some visual glitches and needs more customization |
+| hangman | **Beta** | Play a game of hangman
Some visual glitches and needs more customization |
| howdoi | **Incomplete** | Ask coding questions and get results from StackExchange
Not yet functional |
-| leaver | **Alpha** | Send a message in a channel when a user leaves the server
Just released, please report bugs |
+| infochannel | **Beta** | Create a channel to display server info
Due to rate limits, this does not update as often as it once did |
+| isitdown | **Beta** | Check if a website/url is down
Just released, please report bugs |
+| launchlib | **Beta** | Access rocket launch data
Just released, please report bugs |
+| leaver | **Beta** | Send a message in a channel when a user leaves the server
Seems to be functional, please report any bugs or suggestions |
| lovecalculator | **Alpha** | Calculate the love between two users
[Snap-Ons] Just updated to V3 |
| lseen | **Alpha** | Track when a member was last online
Alpha release, please report bugs |
-| nudity | **Incomplete** | Checks for NSFW images posted in non-NSFW channels
Library this is based on has a bug, waiting for author to merge my PR |
+| nudity | **Alpha** | Checks for NSFW images posted in non-NSFW channels
Switched libraries, now functional |
| planttycoon | **Alpha** | Grow your own plants!
[Snap-Ons] Updated to V3, likely to contain bugs |
| qrinvite | **Alpha** | Create a QR code invite for the server
Alpha release, please report any bugs |
| reactrestrict | **Alpha** | Removes reactions by role per channel
A bit clunky, but functional |
@@ -33,7 +40,23 @@ Cog Function
| unicode | **Alpha** | Encode and Decode unicode characters
[Snap-Ons] Just updated to V3 |
| werewolf | **Pre-Alpha** | Play the classic party game Werewolf within discord
Another massive project currently being developed, will be fully customizable |
+Check out *Deprecated* my V2 cogs at [Fox-Cogs v2](https://github.com/bobloy/Fox-Cogs)
-Check out my V2 cogs at [Fox-Cogs v2](https://github.com/bobloy/Fox-Cogs)
+# Installation
+### Recommended - Built-in Downloader
+```
+[p]repo add Fox https://github.com/bobloy/Fox-V3
+[p]cog install Fox
+[p]load
+```
+# Contact
Get support on the [Third Party Cog Server](https://discord.gg/GET4DVk)
+
+Feel free to @ me in the #support_othercogs channel
+
+Discord: Bobloy#6513
+
+# Credits
+
+Huge thanks to all the helpful people in #coding on the [discord support server](https://discord.gg/red)
diff --git a/announcedaily/announcedaily.py b/announcedaily/announcedaily.py
index a3ad748..aa50e6c 100644
--- a/announcedaily/announcedaily.py
+++ b/announcedaily/announcedaily.py
@@ -1,21 +1,19 @@
import asyncio
import random
from datetime import datetime, timedelta
-from typing import Any
import discord
from redbot.core import Config, checks, commands
from redbot.core.bot import Red
+from redbot.core.commands import Cog
from redbot.core.data_manager import cog_data_path
-from redbot.core.utils.chat_formatting import pagify, box
+from redbot.core.utils.chat_formatting import box, pagify
DEFAULT_MESSAGES = [
# "Example message. Uncomment and overwrite to use",
# "Example message 2. Each message is in quotes and separated by a comma"
]
-Cog: Any = getattr(commands, "Cog", object)
-
class AnnounceDaily(Cog):
"""
@@ -23,28 +21,31 @@ class AnnounceDaily(Cog):
"""
def __init__(self, bot: Red):
+ super().__init__()
self.bot = bot
- self.path = str(cog_data_path(self)).replace('\\', '/')
+ self.path = str(cog_data_path(self)).replace("\\", "/")
self.image_path = self.path + "/"
self.config = Config.get_conf(self, identifier=9811198108111121, force_registration=True)
default_global = {
- 'messages': [],
- 'images': [],
- 'time': {'hour': 0, 'minute': 0, 'second': 0}
- }
- default_guild = {
- "channelid": None
+ "messages": [],
+ "images": [],
+ "time": {"hour": 0, "minute": 0, "second": 0},
}
+ default_guild = {"channelid": None}
self.config.register_global(**default_global)
self.config.register_guild(**default_guild)
+ async def red_delete_data_for_user(self, **kwargs):
+ """Nothing to delete"""
+ return
+
async def _get_msgs(self):
return DEFAULT_MESSAGES + await self.config.messages()
- @commands.group(name="announcedaily", aliases=['annd'])
+ @commands.group(name="announcedaily", aliases=["annd"])
@checks.mod_or_permissions(administrator=True)
@commands.guild_only()
async def _ad(self, ctx: commands.Context):
@@ -99,7 +100,7 @@ class AnnounceDaily(Cog):
if ctx.message.attachments:
att_ = ctx.message.attachments[0]
try:
- h = att_.height
+ att_.height
except AttributeError:
await ctx.send("You must attach an image, no other file will be accepted")
return
@@ -112,7 +113,9 @@ class AnnounceDaily(Cog):
# await att_.save(f)
await att_.save(self.image_path + filename)
except discord.NotFound:
- await ctx.send("Did you delete the message? Cause I couldn't download the attachment")
+ await ctx.send(
+ "Did you delete the message? Cause I couldn't download the attachment"
+ )
except discord.HTTPException:
await ctx.send("Failed to download the attachment, please try again")
else:
@@ -131,14 +134,16 @@ class AnnounceDaily(Cog):
List all registered announcement messages
"""
messages = await self.config.messages()
- for page in pagify("\n".join("{} - {}".format(key, image) for key, image in enumerate(messages))):
+ for page in pagify(
+ "\n".join("{} - {}".format(key, image) for key, image in enumerate(messages))
+ ):
await ctx.send(box(page))
await ctx.send("Done!")
@_ad.command()
async def listimg(self, ctx: commands.Context):
"""
- List all registered announcement immages
+ List all registered announcement images
"""
images = await self.config.images()
for page in pagify("\n".join(images)):
@@ -187,10 +192,12 @@ class AnnounceDaily(Cog):
h = ann_time.hour
m = ann_time.minute
s = ann_time.second
- await self.config.time.set({'hour': h, 'minute': m, 'second': s})
+ await self.config.time.set({"hour": h, "minute": m, "second": s})
- await ctx.send("Announcements time has been set to {}::{}::{} every day\n"
- "**Changes will apply after next scheduled announcement or reload**".format(h, m, s))
+ await ctx.send(
+ "Announcement time has been set to {}::{}::{} every day\n"
+ "**Changes will apply after next scheduled announcement or reload**".format(h, m, s)
+ )
async def send_announcements(self):
messages = await self._get_msgs()
@@ -205,7 +212,7 @@ class AnnounceDaily(Cog):
if x >= len(messages):
x -= len(messages)
choice = images[x]
- choice = open(self.image_path + choice, 'rb')
+ choice = open(self.image_path + choice, "rb")
is_image = True
else:
choice = messages[x]
@@ -225,12 +232,18 @@ class AnnounceDaily(Cog):
await channel.send(choice)
async def check_day(self):
- while self is self.bot.get_cog("AnnounceDaily"):
+ while True:
tomorrow = datetime.now() + timedelta(days=1)
time = await self.config.time()
- h, m, s = time['hour'], time['minute'], time['second']
- midnight = datetime(year=tomorrow.year, month=tomorrow.month,
- day=tomorrow.day, hour=h, minute=m, second=s)
+ h, m, s = time["hour"], time["minute"], time["second"]
+ midnight = datetime(
+ year=tomorrow.year,
+ month=tomorrow.month,
+ day=tomorrow.day,
+ hour=h,
+ minute=m,
+ second=s,
+ )
print("Sleeping for {} seconds".format((midnight - datetime.now()).seconds))
await asyncio.sleep((midnight - datetime.now()).seconds)
@@ -243,6 +256,7 @@ class AnnounceDaily(Cog):
await asyncio.sleep(3)
+
# [p]setchannel #channelname - Set the announcement channel per server
# [p]addmsg - Adds a msg to the pool
# [p]addimg http://imgurl.com/image.jpg - Adds an image to the pool
diff --git a/announcedaily/info..json b/announcedaily/info.json
similarity index 71%
rename from announcedaily/info..json
rename to announcedaily/info.json
index a0eb7ae..57aa7f1 100644
--- a/announcedaily/info..json
+++ b/announcedaily/info.json
@@ -2,16 +2,12 @@
"author": [
"Bobloy"
],
- "bot_version": [
- 3,
- 0,
- 0
- ],
+ "min_bot_version": "3.3.0",
"description": "Send daily announcements to all servers at a specified times",
- "hidden": true,
+ "hidden": false,
"install_msg": "Thank you for installing AnnounceDaily! Get started with `[p]load announcedaily` and `[p]help AnnounceDaily`",
- "requirements": [],
"short": "Send daily announcements",
+ "end_user_data_statement": "This cog does not store any End User Data",
"tags": [
"bobloy"
]
diff --git a/audiotrivia/audiotrivia.py b/audiotrivia/audiotrivia.py
index f1d325f..c0c88fd 100644
--- a/audiotrivia/audiotrivia.py
+++ b/audiotrivia/audiotrivia.py
@@ -7,7 +7,7 @@ import yaml
from redbot.cogs.audio import Audio
from redbot.cogs.trivia import LOG
from redbot.cogs.trivia.trivia import InvalidListError, Trivia
-from redbot.core import commands, Config, checks
+from redbot.core import Config, checks, commands
from redbot.core.bot import Red
from redbot.core.data_manager import cog_data_path
from redbot.core.utils.chat_formatting import box
@@ -15,23 +15,25 @@ from redbot.core.utils.chat_formatting import box
from .audiosession import AudioSession
+# from redbot.cogs.audio.utils import userlimit
+
+
class AudioTrivia(Trivia):
"""
- Custom commands
- Creates commands used to display text and adjust roles
+ Upgrade to the Trivia cog that enables audio trivia
+ Replaces the Trivia cog
"""
def __init__(self, bot: Red):
super().__init__()
self.bot = bot
self.audio = None
- self.audioconf = Config.get_conf(self, identifier=651171001051118411410511810597, force_registration=True)
-
- self.audioconf.register_guild(
- delay=30.0,
- repeat=True,
+ self.audioconf = Config.get_conf(
+ self, identifier=651171001051118411410511810597, force_registration=True
)
+ self.audioconf.register_guild(delay=30.0, repeat=True)
+
@commands.group()
@commands.guild_only()
@checks.mod_or_permissions(administrator=True)
@@ -70,9 +72,9 @@ class AudioTrivia(Trivia):
async def audiotrivia(self, ctx: commands.Context, *categories: str):
"""Start trivia session on the specified category.
- You may list multiple categories, in which case the trivia will involve
- questions from all of them.
- """
+ You may list multiple categories, in which case the trivia will involve
+ questions from all of them.
+ """
if not categories and ctx.invoked_subcommand is None:
await ctx.send_help()
return
@@ -89,19 +91,25 @@ class AudioTrivia(Trivia):
if session is not None:
await ctx.send("There is already an ongoing trivia session in this channel.")
return
-
status = await self.audio.config.status()
+ notify = await self.audio.config.guild(ctx.guild).notify()
if status:
- await ctx.send("I recommend disabling audio status with `{}audioset status`".format(ctx.prefix))
+ await ctx.send(
+ f"It is recommended to disable audio status with `{ctx.prefix}audioset status`"
+ )
+
+ if notify:
+ await ctx.send(
+ f"It is recommended to disable audio notify with `{ctx.prefix}audioset notify`"
+ )
if not self.audio._player_check(ctx):
try:
- if not ctx.author.voice.channel.permissions_for(ctx.me).connect or self.audio._userlimit(
- ctx.author.voice.channel
- ):
- return await ctx.send("I don't have permission to connect to your channel."
- )
+ if not ctx.author.voice.channel.permissions_for(
+ ctx.me
+ ).connect or self.audio.is_vc_full(ctx.author.voice.channel):
+ return await ctx.send("I don't have permission to connect to your channel.")
await lavalink.connect(ctx.author.voice.channel)
lavaplayer = lavalink.get_player(ctx.guild.id)
lavaplayer.store("connect", datetime.datetime.utcnow())
@@ -110,14 +118,13 @@ class AudioTrivia(Trivia):
lavaplayer = lavalink.get_player(ctx.guild.id)
lavaplayer.store("channel", ctx.channel.id) # What's this for? I dunno
- lavaplayer.store("guild", ctx.guild.id)
- await self.audio._data_check(ctx)
+ await self.audio.set_player_settings(ctx)
- if (
- not ctx.author.voice or ctx.author.voice.channel != lavaplayer.channel
- ):
- return await ctx.send("You must be in the voice channel to use the audiotrivia command.")
+ if not ctx.author.voice or ctx.author.voice.channel != lavaplayer.channel:
+ return await ctx.send(
+ "You must be in the voice channel to use the audiotrivia command."
+ )
trivia_dict = {}
authors = []
@@ -148,7 +155,8 @@ class AudioTrivia(Trivia):
"The trivia list was parsed successfully, however it appears to be empty!"
)
return
- settings = await self.conf.guild(ctx.guild).all()
+
+ settings = await self.config.guild(ctx.guild).all()
audiosettings = await self.audioconf.guild(ctx.guild).all()
config = trivia_dict.pop("CONFIG", None)
if config and settings["allow_override"]:
@@ -157,7 +165,9 @@ class AudioTrivia(Trivia):
# Delay in audiosettings overwrites delay in settings
combined_settings = {**settings, **audiosettings}
- session = AudioSession.start(ctx=ctx, question_list=trivia_dict, settings=combined_settings, player=lavaplayer)
+ session = AudioSession.start(
+ ctx=ctx, question_list=trivia_dict, settings=combined_settings, player=lavaplayer,
+ )
self.trivia_sessions.append(session)
LOG.debug("New audio trivia session; #%s in %d", ctx.channel, ctx.guild.id)
@@ -194,7 +204,7 @@ class AudioTrivia(Trivia):
with path.open(encoding="utf-8") as file:
try:
- dict_ = yaml.load(file)
+ dict_ = yaml.load(file, Loader=yaml.SafeLoader)
except yaml.error.YAMLError as exc:
raise InvalidListError("YAML parsing failed.") from exc
else:
diff --git a/audiotrivia/data/lists/anime.yaml b/audiotrivia/data/lists/anime.yaml
new file mode 100644
index 0000000..7a27a0e
--- /dev/null
+++ b/audiotrivia/data/lists/anime.yaml
@@ -0,0 +1,7303 @@
+AUTHOR: Plab
+https://www.youtube.com/watch?v=2uq34TeWEdQ:
+- 'Hagane no Renkinjutsushi (2009)'
+- '(2009) الخيميائي المعدني الكامل'
+- 'FMA (2009)'
+- 'FMA2'
+- 'FMA: B'
+- 'FMA:B'
+- 'FMAB'
+- 'Full Metal Alchemist 2'
+- 'Full Metal Alchemist: Brotherhood'
+- 'Full Metal Alchemist: Fraternitate'
+- 'Fullmetal Alchemist (2009)'
+- 'Fullmetal Alchemist - Bratrství'
+- 'Fullmetal Alchemist 2'
+- 'Fullmetal Alchemist Brotherhood'
+- 'Fullmetal Alchemist: Brotherhood'
+- 'Fullmetal Alchemist: Teräsalkemisti'
+- 'Fullmetal Alchemist: Testvériség'
+- 'HagaRen (2009)'
+- 'hagaren2'
+- 'Metal Simyacı: Kardeşlik'
+- 'Metalinis Alchemikas 2'
+- 'Stalowy Alchemik'
+- 'Stålalkemisten'
+- 'Железният алхимик: Братство'
+- 'Металният алхимик 2'
+- 'Металният алхимик: Братство'
+- 'Сталевий алхімік. Братерство'
+- 'Стальной Алхимик: Братство'
+- 'Стоманеният алхимик (2009 г.)'
+- 'Стоманеният алхимик 2'
+- 'Стоманеният алхимик: Братство'
+- 'Суцільнометалевий алхімік: Братерство'
+- 'Цулметаллан Алхимич: Ахан дүүсийн барилдлага'
+- 'אלכימאי המתכת 2009'
+- 'الخيميائي المعدني الكامل: الأخوة'
+- 'کیمیاگر تمام فلزی : داستان برادری'
+- '鋼の錬金術師 FULLMETAL ALCHEMIST (2009)'
+- '鋼之鍊金術師 BROTHERHOOD'
+- '鋼之鍊金術師FA'
+- '钢之炼金术师 2009'
+- '钢之炼金术师 FULLMETAL ALCHEMIST'
+- '강철의 연금술사 리메이크'
+https://www.youtube.com/watch?v=iOsN2FP3-l4:
+- 'Hagane no Renkinjutsushi (2009)'
+- '(2009) الخيميائي المعدني الكامل'
+- 'FMA (2009)'
+- 'FMA2'
+- 'FMA: B'
+- 'FMA:B'
+- 'FMAB'
+- 'Full Metal Alchemist 2'
+- 'Full Metal Alchemist: Brotherhood'
+- 'Full Metal Alchemist: Fraternitate'
+- 'Fullmetal Alchemist (2009)'
+- 'Fullmetal Alchemist - Bratrství'
+- 'Fullmetal Alchemist 2'
+- 'Fullmetal Alchemist Brotherhood'
+- 'Fullmetal Alchemist: Brotherhood'
+- 'Fullmetal Alchemist: Teräsalkemisti'
+- 'Fullmetal Alchemist: Testvériség'
+- 'HagaRen (2009)'
+- 'hagaren2'
+- 'Metal Simyacı: Kardeşlik'
+- 'Metalinis Alchemikas 2'
+- 'Stalowy Alchemik'
+- 'Stålalkemisten'
+- 'Железният алхимик: Братство'
+- 'Металният алхимик 2'
+- 'Металният алхимик: Братство'
+- 'Сталевий алхімік. Братерство'
+- 'Стальной Алхимик: Братство'
+- 'Стоманеният алхимик (2009 г.)'
+- 'Стоманеният алхимик 2'
+- 'Стоманеният алхимик: Братство'
+- 'Суцільнометалевий алхімік: Братерство'
+- 'Цулметаллан Алхимич: Ахан дүүсийн барилдлага'
+- 'אלכימאי המתכת 2009'
+- 'الخيميائي المعدني الكامل: الأخوة'
+- 'کیمیاگر تمام فلزی : داستان برادری'
+- '鋼の錬金術師 FULLMETAL ALCHEMIST (2009)'
+- '鋼之鍊金術師 BROTHERHOOD'
+- '鋼之鍊金術師FA'
+- '钢之炼金术师 2009'
+- '钢之炼金术师 FULLMETAL ALCHEMIST'
+- '강철의 연금술사 리메이크'
+https://www.youtube.com/watch?v=j3qHKeZjrdU:
+- 'Hagane no Renkinjutsushi (2009)'
+- '(2009) الخيميائي المعدني الكامل'
+- 'FMA (2009)'
+- 'FMA2'
+- 'FMA: B'
+- 'FMA:B'
+- 'FMAB'
+- 'Full Metal Alchemist 2'
+- 'Full Metal Alchemist: Brotherhood'
+- 'Full Metal Alchemist: Fraternitate'
+- 'Fullmetal Alchemist (2009)'
+- 'Fullmetal Alchemist - Bratrství'
+- 'Fullmetal Alchemist 2'
+- 'Fullmetal Alchemist Brotherhood'
+- 'Fullmetal Alchemist: Brotherhood'
+- 'Fullmetal Alchemist: Teräsalkemisti'
+- 'Fullmetal Alchemist: Testvériség'
+- 'HagaRen (2009)'
+- 'hagaren2'
+- 'Metal Simyacı: Kardeşlik'
+- 'Metalinis Alchemikas 2'
+- 'Stalowy Alchemik'
+- 'Stålalkemisten'
+- 'Железният алхимик: Братство'
+- 'Металният алхимик 2'
+- 'Металният алхимик: Братство'
+- 'Сталевий алхімік. Братерство'
+- 'Стальной Алхимик: Братство'
+- 'Стоманеният алхимик (2009 г.)'
+- 'Стоманеният алхимик 2'
+- 'Стоманеният алхимик: Братство'
+- 'Суцільнометалевий алхімік: Братерство'
+- 'Цулметаллан Алхимич: Ахан дүүсийн барилдлага'
+- 'אלכימאי המתכת 2009'
+- 'الخيميائي المعدني الكامل: الأخوة'
+- 'کیمیاگر تمام فلزی : داستان برادری'
+- '鋼の錬金術師 FULLMETAL ALCHEMIST (2009)'
+- '鋼之鍊金術師 BROTHERHOOD'
+- '鋼之鍊金術師FA'
+- '钢之炼金术师 2009'
+- '钢之炼金术师 FULLMETAL ALCHEMIST'
+- '강철의 연금술사 리메이크'
+https://www.youtube.com/watch?v=KMZBauH47Jo:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=cRA5gsdCf4c:
+- 'Hagane no Renkinjutsushi (2009)'
+- '(2009) الخيميائي المعدني الكامل'
+- 'FMA (2009)'
+- 'FMA2'
+- 'FMA: B'
+- 'FMA:B'
+- 'FMAB'
+- 'Full Metal Alchemist 2'
+- 'Full Metal Alchemist: Brotherhood'
+- 'Full Metal Alchemist: Fraternitate'
+- 'Fullmetal Alchemist (2009)'
+- 'Fullmetal Alchemist - Bratrství'
+- 'Fullmetal Alchemist 2'
+- 'Fullmetal Alchemist Brotherhood'
+- 'Fullmetal Alchemist: Brotherhood'
+- 'Fullmetal Alchemist: Teräsalkemisti'
+- 'Fullmetal Alchemist: Testvériség'
+- 'HagaRen (2009)'
+- 'hagaren2'
+- 'Metal Simyacı: Kardeşlik'
+- 'Metalinis Alchemikas 2'
+- 'Stalowy Alchemik'
+- 'Stålalkemisten'
+- 'Железният алхимик: Братство'
+- 'Металният алхимик 2'
+- 'Металният алхимик: Братство'
+- 'Сталевий алхімік. Братерство'
+- 'Стальной Алхимик: Братство'
+- 'Стоманеният алхимик (2009 г.)'
+- 'Стоманеният алхимик 2'
+- 'Стоманеният алхимик: Братство'
+- 'Суцільнометалевий алхімік: Братерство'
+- 'Цулметаллан Алхимич: Ахан дүүсийн барилдлага'
+- 'אלכימאי המתכת 2009'
+- 'الخيميائي المعدني الكامل: الأخوة'
+- 'کیمیاگر تمام فلزی : داستان برادری'
+- '鋼の錬金術師 FULLMETAL ALCHEMIST (2009)'
+- '鋼之鍊金術師 BROTHERHOOD'
+- '鋼之鍊金術師FA'
+- '钢之炼金术师 2009'
+- '钢之炼金术师 FULLMETAL ALCHEMIST'
+- '강철의 연금술사 리메이크'
+https://www.youtube.com/watch?v=XMXgHfHxKVM:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=PbWFpzi8C94:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=LKP-vZvjbh8:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=swwUoExDIng:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=0dK7JgKivQM:
+- 'Shingeki no Kyojin'
+- 'Advancing Giants'
+- 'AoT'
+- 'AoT TV'
+- 'Atacul Titanilor'
+- 'Ataque a los Titanes'
+- 'Ataque dos Titãs'
+- 'Attack on Titan'
+- 'L`attacco dei Giganti'
+- 'L`attaque des Titans'
+- 'shingeki'
+- 'Shingeki no Kyojin TV'
+- 'SnK'
+- 'Útok Titánů'
+- 'Η Επίθεση των Τιτάνων'
+- 'Атака Титанів'
+- 'Вторжение Гигантов'
+- 'На бій проти титанів'
+- 'Нашествие на гиганти'
+- 'Поход срещу титаните'
+- 'מתקפת הטיטאנים'
+- 'الهجوم على العمالقة'
+- 'حمله به تایتان'
+- '进击的巨人'
+- '進撃の巨人 attack on titan'
+- '進擊的巨人'
+- '진격의 거인'
+https://www.youtube.com/watch?v=REHaJZgWwxY:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=jbv5rCcTCfc:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=4uHbNfZDxqA:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=FL3vlCHxMMY:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=YCq4-r9annU:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=rbfMXMazK04:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=nCfjA8XU_Yg:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=XkL2W2GZ65c:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=-B3rpKfva1w:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=11uUb2hN4Cw:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=wfp3fRpzPUY:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=yzwd_8vYzCc:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=iXpGVuaQwXo:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=n2RgysLc66E:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=0xMFEE4uMgM:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=F-2kXUEeJLM:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=WlJYq767iNI:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=yo6WngP0nxM:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=zXwrf5BH7YQ:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=yphHnNQ-i60:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=CmPsqGaVdCQ:
+- 'Gintama'
+- 'gintama tv'
+- 'Gintama: Season 1'
+- 'Gintama: Series 1'
+- 'Silver Soul'
+- 'Гинтама'
+- 'جينتاما'
+- 'กินทามะ'
+- '銀魂[ぎんたま]'
+- '银魂'
+- '은혼'
+https://www.youtube.com/watch?v=Sken4RHX9FY:
+- 'Ginga Eiyuu Densetsu'
+- 'Gin''eiden'
+- 'GinEiDen'
+- 'Heldensagen Vom Kosmosinsel'
+- 'Heldensagen vom Kosmosinsel'
+- 'Legend of the Galactic Heroes'
+- 'LoGH'
+- 'LOTGH'
+- 'LotGH'
+- '銀河英雄伝説'
+https://www.youtube.com/watch?v=CUf-8aXt9Hw:
+- 'Ginga Eiyuu Densetsu'
+- 'Gin''eiden'
+- 'GinEiDen'
+- 'Heldensagen Vom Kosmosinsel'
+- 'Heldensagen vom Kosmosinsel'
+- 'Legend of the Galactic Heroes'
+- 'LoGH'
+- 'LOTGH'
+- 'LotGH'
+- '銀河英雄伝説'
+https://www.youtube.com/watch?v=Ca_aLlLtStY:
+- 'Ginga Eiyuu Densetsu'
+- 'Gin''eiden'
+- 'GinEiDen'
+- 'Heldensagen Vom Kosmosinsel'
+- 'Heldensagen vom Kosmosinsel'
+- 'Legend of the Galactic Heroes'
+- 'LoGH'
+- 'LOTGH'
+- 'LotGH'
+- '銀河英雄伝説'
+https://www.youtube.com/watch?v=cKWqPXkLgzY:
+- '3-gatsu no Lion'
+- '3月のライオン'
+- '3月的狮子'
+- '3월의 라이온'
+- 'March Comes In Like a Lion'
+- 'March Comes in Like a Lion'
+- 'March comes in like a lion'
+- 'sangatsu (2016)'
+- 'Sangatsu no Lion'
+- 'Un marzo da leoni'
+- 'Март месец връхлита като лъв'
+- 'Март месец те връхлита като лъв'
+- 'Мартовский лев'
+- '3月のライオン'
+https://www.youtube.com/watch?v=PKjbF2a90Fo:
+- '3-gatsu no Lion'
+- '3月のライオン'
+- '3月的狮子'
+- '3월의 라이온'
+- 'March Comes In Like a Lion'
+- 'March Comes in Like a Lion'
+- 'March comes in like a lion'
+- 'sangatsu (2016)'
+- 'Sangatsu no Lion'
+- 'Un marzo da leoni'
+- 'Март месец връхлита като лъв'
+- 'Март месец те връхлита като лъв'
+- 'Мартовский лев'
+- '3月のライオン'
+https://www.youtube.com/watch?v=5htUWLGqlnQ:
+- '3-gatsu no Lion'
+- '3月のライオン'
+- '3月的狮子'
+- '3월의 라이온'
+- 'March Comes In Like a Lion'
+- 'March Comes in Like a Lion'
+- 'March comes in like a lion'
+- 'sangatsu (2016)'
+- 'Sangatsu no Lion'
+- 'Un marzo da leoni'
+- 'Март месец връхлита като лъв'
+- 'Март месец те връхлита като лъв'
+- 'Мартовский лев'
+- '3月のライオン'
+https://www.youtube.com/watch?v=oHdZOKm5xzo:
+- 'Clannad'
+- 'CLANNAD'
+- 'Clannad 1'
+- 'Clannad TV'
+- 'Кланад'
+- 'Кланнад'
+- 'خانواده'
+- 'كلاناد'
+- 'کلاناد'
+- 'แคลนนาด'
+- 'クラナド'
+- '클라나드'
+https://www.youtube.com/watch?v=hVMJxT3O9qA:
+- 'Clannad: After Story'
+- 'Clannad 2'
+- 'Clannad After Story'
+- 'Clannad AS'
+- 'CLANNAD ~AFTER STORY~'
+- 'Clannad2'
+- 'Кланад: Продовження Історії'
+- 'Кланнад: След историята'
+- 'خانواده: ادامه داستان'
+- 'كلاناد ما بعد القصة'
+- 'کلاناد ادامه داستان'
+- 'แคลนนาด อาฟเตอร์ สตอรี่'
+- 'クラナド アフターストーリー'
+- 'クラナド- AFTER STORY'
+- '클라나드 애프터 스토리'
+https://www.youtube.com/watch?v=EP69zYnelKs:
+- 'Bakemonogatari'
+- 'bakemono'
+- 'BMG'
+- 'Canavar Hikayeleri'
+- 'Ghostory'
+- 'Monstrų Istorijos'
+- 'Бакемоноґатарі'
+- 'Истории за Чудовището'
+- 'Истории о Чудовищах'
+- 'Монстрассказы'
+- 'Монстроповідання'
+- 'Оповідання про монстрів'
+- 'Потвороповідь'
+- 'باکمونوگاتاری'
+- 'داستان از ما بهتران'
+- 'บาเกะโมโนกาตาริ'
+- 'ปกรณัมของเหล่าภูต'
+- '化物語'
+- '化物语'
+- '괴물 이야기'
+- '바케모노가타리'
+https://www.youtube.com/watch?v=2OC6ARG6fZA:
+- 'Bakemonogatari'
+- 'bakemono'
+- 'BMG'
+- 'Canavar Hikayeleri'
+- 'Ghostory'
+- 'Monstrų Istorijos'
+- 'Бакемоноґатарі'
+- 'Истории за Чудовището'
+- 'Истории о Чудовищах'
+- 'Монстрассказы'
+- 'Монстроповідання'
+- 'Оповідання про монстрів'
+- 'Потвороповідь'
+- 'باکمونوگاتاری'
+- 'داستان از ما بهتران'
+- 'บาเกะโมโนกาตาริ'
+- 'ปกรณัมของเหล่าภูต'
+- '化物語'
+- '化物语'
+- '괴물 이야기'
+- '바케모노가타리'
+https://www.youtube.com/watch?v=PiauQ7P7mtQ:
+- 'Bakemonogatari'
+- 'bakemono'
+- 'BMG'
+- 'Canavar Hikayeleri'
+- 'Ghostory'
+- 'Monstrų Istorijos'
+- 'Бакемоноґатарі'
+- 'Истории за Чудовището'
+- 'Истории о Чудовищах'
+- 'Монстрассказы'
+- 'Монстроповідання'
+- 'Оповідання про монстрів'
+- 'Потвороповідь'
+- 'باکمونوگاتاری'
+- 'داستان از ما بهتران'
+- 'บาเกะโมโนกาตาริ'
+- 'ปกรณัมของเหล่าภูต'
+- '化物語'
+- '化物语'
+- '괴물 이야기'
+- '바케모노가타리'
+https://www.youtube.com/watch?v=5yQcLzUTnO4:
+- 'Bakemonogatari'
+- 'bakemono'
+- 'BMG'
+- 'Canavar Hikayeleri'
+- 'Ghostory'
+- 'Monstrų Istorijos'
+- 'Бакемоноґатарі'
+- 'Истории за Чудовището'
+- 'Истории о Чудовищах'
+- 'Монстрассказы'
+- 'Монстроповідання'
+- 'Оповідання про монстрів'
+- 'Потвороповідь'
+- 'باکمونوگاتاری'
+- 'داستان از ما بهتران'
+- 'บาเกะโมโนกาตาริ'
+- 'ปกรณัมของเหล่าภูต'
+- '化物語'
+- '化物语'
+- '괴물 이야기'
+- '바케모노가타리'
+https://www.youtube.com/watch?v=hhxmwHErUhU:
+- 'Owarimonogatari'
+- 'Endstory'
+- 'OMG'
+- 'Истории Последствий'
+- 'Край на историята'
+- '終物語'
+https://www.youtube.com/watch?v=2---3Iysnqg:
+- 'Haikyuu!!'
+- 'Haikyu!!'
+- 'Haikyu!! Los Ases del Voley'
+- 'Haikyuu'
+- 'Odbojka'
+- 'Висока топка'
+- 'Хайкю!!'
+- 'ハイキュー!!'
+- '排球少年!!'
+https://www.youtube.com/watch?v=IK6hHzAPhuI:
+- 'Haikyuu!!'
+- 'Haikyu!!'
+- 'Haikyu!! Los Ases del Voley'
+- 'Haikyuu'
+- 'Odbojka'
+- 'Висока топка'
+- 'Хайкю!!'
+- 'ハイキュー!!'
+- '排球少年!!'
+https://www.youtube.com/watch?v=as-sSVx3SmQ:
+- 'Haikyuu!!'
+- 'Haikyu!!'
+- 'Haikyu!! Los Ases del Voley'
+- 'Haikyuu'
+- 'Odbojka'
+- 'Висока топка'
+- 'Хайкю!!'
+- 'ハイキュー!!'
+- '排球少年!!'
+https://www.youtube.com/watch?v=cZ7zQbMxm28:
+- 'Code Geass: Hangyaku no Lelouch'
+- 'cg r1'
+- 'cg1'
+- 'cghnl'
+- 'Code Geass'
+- 'code geass'
+- 'Code Geass 1'
+- 'Code Geass R1'
+- 'Code Geass ~ Lelouch de la rébellion'
+- 'Code Geass 反叛的魯路修'
+- 'Code Geass 反叛的鲁鲁修'
+- 'Code Geass: Cuộc khởi nghĩa của Lelouch'
+- 'Code Geass: Lelouch da Rebelião'
+- 'Code Geass: Lelouch de la Rebelión'
+- 'Code Geass: Lelouch de la Rebel·lió'
+- 'Code Geass: Lelouch of the Rebellion'
+- 'Code Geass: Lelouch`un Başkaldırısı'
+- 'CodeGeass'
+- 'Código Geass R1'
+- 'Código Geass: Lelouch da Rebelião'
+- 'geass'
+- 'geass1'
+- 'Kodas Geass: Leloušio sukilimas'
+- 'Код Геас: Бунтът на Люлюш'
+- 'Код Гиас: Восставший Лелуш'
+- 'Код Гиасс: Восстание Лелуша'
+- 'Код Ґіас: Повстання Лелуша (R1)'
+- 'קוד ג`יאס'
+- 'โค้ด กีอัส ภาคการปฏิวัติของลูลูช'
+- 'コードギアス 反逆のルルーシュ'
+- '叛逆的鲁鲁修'
+- '코드기어스 반역의 를르슈'
+https://www.youtube.com/watch?v=YBhsDtFUgdM:
+- 'Code Geass: Hangyaku no Lelouch'
+- 'cg r1'
+- 'cg1'
+- 'cghnl'
+- 'Code Geass'
+- 'code geass'
+- 'Code Geass 1'
+- 'Code Geass R1'
+- 'Code Geass ~ Lelouch de la rébellion'
+- 'Code Geass 反叛的魯路修'
+- 'Code Geass 反叛的鲁鲁修'
+- 'Code Geass: Cuộc khởi nghĩa của Lelouch'
+- 'Code Geass: Lelouch da Rebelião'
+- 'Code Geass: Lelouch de la Rebelión'
+- 'Code Geass: Lelouch de la Rebel·lió'
+- 'Code Geass: Lelouch of the Rebellion'
+- 'Code Geass: Lelouch`un Başkaldırısı'
+- 'CodeGeass'
+- 'Código Geass R1'
+- 'Código Geass: Lelouch da Rebelião'
+- 'geass'
+- 'geass1'
+- 'Kodas Geass: Leloušio sukilimas'
+- 'Код Геас: Бунтът на Люлюш'
+- 'Код Гиас: Восставший Лелуш'
+- 'Код Гиасс: Восстание Лелуша'
+- 'Код Ґіас: Повстання Лелуша (R1)'
+- 'קוד ג`יאס'
+- 'โค้ด กีอัส ภาคการปฏิวัติของลูลูช'
+- 'コードギアス 反逆のルルーシュ'
+- '叛逆的鲁鲁修'
+- '코드기어스 반역의 를르슈'
+https://www.youtube.com/watch?v=zp3jvJkv5fo:
+- 'Code Geass: Hangyaku no Lelouch'
+- 'cg r1'
+- 'cg1'
+- 'cghnl'
+- 'Code Geass'
+- 'code geass'
+- 'Code Geass 1'
+- 'Code Geass R1'
+- 'Code Geass ~ Lelouch de la rébellion'
+- 'Code Geass 反叛的魯路修'
+- 'Code Geass 反叛的鲁鲁修'
+- 'Code Geass: Cuộc khởi nghĩa của Lelouch'
+- 'Code Geass: Lelouch da Rebelião'
+- 'Code Geass: Lelouch de la Rebelión'
+- 'Code Geass: Lelouch de la Rebel·lió'
+- 'Code Geass: Lelouch of the Rebellion'
+- 'Code Geass: Lelouch`un Başkaldırısı'
+- 'CodeGeass'
+- 'Código Geass R1'
+- 'Código Geass: Lelouch da Rebelião'
+- 'geass'
+- 'geass1'
+- 'Kodas Geass: Leloušio sukilimas'
+- 'Код Геас: Бунтът на Люлюш'
+- 'Код Гиас: Восставший Лелуш'
+- 'Код Гиасс: Восстание Лелуша'
+- 'Код Ґіас: Повстання Лелуша (R1)'
+- 'קוד ג`יאס'
+- 'โค้ด กีอัส ภาคการปฏิวัติของลูลูช'
+- 'コードギアス 反逆のルルーシュ'
+- '叛逆的鲁鲁修'
+- '코드기어스 반역의 를르슈'
+https://www.youtube.com/watch?v=bTU9RfI8WBk:
+- 'Code Geass: Hangyaku no Lelouch'
+- 'cg r1'
+- 'cg1'
+- 'cghnl'
+- 'Code Geass'
+- 'code geass'
+- 'Code Geass 1'
+- 'Code Geass R1'
+- 'Code Geass ~ Lelouch de la rébellion'
+- 'Code Geass 反叛的魯路修'
+- 'Code Geass 反叛的鲁鲁修'
+- 'Code Geass: Cuộc khởi nghĩa của Lelouch'
+- 'Code Geass: Lelouch da Rebelião'
+- 'Code Geass: Lelouch de la Rebelión'
+- 'Code Geass: Lelouch de la Rebel·lió'
+- 'Code Geass: Lelouch of the Rebellion'
+- 'Code Geass: Lelouch`un Başkaldırısı'
+- 'CodeGeass'
+- 'Código Geass R1'
+- 'Código Geass: Lelouch da Rebelião'
+- 'geass'
+- 'geass1'
+- 'Kodas Geass: Leloušio sukilimas'
+- 'Код Геас: Бунтът на Люлюш'
+- 'Код Гиас: Восставший Лелуш'
+- 'Код Гиасс: Восстание Лелуша'
+- 'Код Ґіас: Повстання Лелуша (R1)'
+- 'קוד ג`יאס'
+- 'โค้ด กีอัส ภาคการปฏิวัติของลูลูช'
+- 'コードギアス 反逆のルルーシュ'
+- '叛逆的鲁鲁修'
+- '코드기어스 반역의 를르슈'
+https://www.youtube.com/watch?v=2Ex3bu6CxPU:
+- 'Shigatsu wa Kimi no Uso'
+- '4월은 너의 거짓말'
+- 'Bugie d`aprile'
+- 'kimiuso'
+- 'Nisan`daki Yalanın'
+- 'Shigatsu Wa Kimi No Uso - Sekunden in Moll'
+- 'Your Lie in April'
+- '四月は君の嘘'
+- '四月是你的谎言'
+https://www.youtube.com/watch?v=U-ZNfo_NlIU:
+- 'JoJo no Kimyou na Bouken'
+- 'Jo Jo`s Bizarre Adventures'
+- 'jojo'
+- 'JoJo no Kimiyona Boken'
+- 'JoJo`s Bizarre Adventure'
+- 'JoJo`s Bizarre Adventure (suite)'
+- 'JoJo`s Bizarre Adventure - DVD 3 & 4'
+- 'JoJo的奇妙冒险'
+- 'JoJo的奇妙冒險'
+- 'Le bizzarre avventure di JoJo'
+- 'Невероятните приключения на ДжоДжо'
+- 'הרפתקואותיו הביזריות של ג`וג`ו'
+- 'مغامرة جوجو الغريبة (1993) (اوفا)'
+- 'ジョジョの奇妙な冒険'
+https://www.youtube.com/watch?v=K28Lcc-MdJs:
+- 'Shouwa Genroku Rakugo Shinjuu'
+- 'Showa and Genroku Era Lover''s Suicide Through Rakugo'
+- 'Showa Genroku Rakugo Shinju'
+- '昭和元禄落語心中'
+https://www.youtube.com/watch?v=dWk-VpK4hJo:
+- 'Cowboy Bebop'
+- 'Bebop'
+- 'Bebop TV'
+- 'CB'
+- 'CBB'
+- 'CowBe'
+- 'COWBOY BEBOP'
+- 'Csillagközi fejvadászok'
+- 'Kaubojus Bebopas'
+- 'Kaubojus Bibopas'
+- 'Kovboj Bebop'
+- 'Kovboy Bebop'
+- 'Ковбой Бибоп ТВ'
+- 'Ковбой Бібоп ТБ'
+- 'Марсиански каубой'
+- 'קאובוי ביבופ'
+- 'راعي البقر بيبوب'
+- 'کابوی بیباپ'
+- 'カウボーイビバップ'
+- '星际牛仔'
+- '星際牛仔'
+- '카우보이 비밥'
+https://www.youtube.com/watch?v=lG0uaNS87Dc:
+- 'Mushishi Zoku Shou'
+- 'MUSHI-SHI -Next Passage-'
+- 'MUSHI-SHI The Next Passage'
+- 'Mushi-shi Zoku Shou'
+- 'Mushishi Zokushou'
+- 'Mushishi: The Next Chapter'
+- '蟲師 続章'
+https://www.youtube.com/watch?v=9S50a4rStNA:
+- 'Hajime no Ippo'
+- 'Fighting Spirit'
+- 'Hajime no Ippo: The Fighting'
+- 'The First Step'
+- 'はじめの一歩 THE FIGHTING!'
+https://www.youtube.com/watch?v=x1VNM57PHms:
+- 'Hajime no Ippo'
+- 'Fighting Spirit'
+- 'Hajime no Ippo: The Fighting'
+- 'The First Step'
+- 'はじめの一歩 THE FIGHTING!'
+https://www.youtube.com/watch?v=0vbuobfmBgE:
+- 'Hajime no Ippo'
+- 'Fighting Spirit'
+- 'Hajime no Ippo: The Fighting'
+- 'The First Step'
+- 'はじめの一歩 THE FIGHTING!'
+https://www.youtube.com/watch?v=GfwHsqOOTpc:
+- 'Hajime no Ippo'
+- 'Fighting Spirit'
+- 'Hajime no Ippo: The Fighting'
+- 'The First Step'
+- 'はじめの一歩 THE FIGHTING!'
+https://www.youtube.com/watch?v=1JoFsTDfd-8:
+- 'Yakusoku no Neverland'
+- 'The Promised Neverland'
+- '約束のネバーランド'
+https://www.youtube.com/watch?v=LI6gNLwe4Mc:
+- 'Great Teacher Onizuka'
+- 'GTO'
+- 'GTO - The Animation'
+- 'グレート・ティーチャー・オニヅカ'
+https://www.youtube.com/watch?v=C_t47BVtPuE:
+- 'Tengen Toppa Gurren Lagann'
+- 'Gurren Lagann'
+- 'Gurren Laggan'
+- 'Heavenly Breakthrough Gurren Lagann'
+- 'Making Break-Through Gurren Lagann'
+- 'Tengen Toppa Gurren-Lagann'
+- 'TTGL'
+- '天元突破グレンラガン'
+https://www.youtube.com/watch?v=-lNqHleBzSM:
+- 'Natsume Yuujinchou'
+- 'Natsume Yujin-cho'
+- 'Natsume Yujincho'
+- 'Natsume''s Book of Friends'
+- '夏目友人帳'
+https://www.youtube.com/watch?v=ZukRwP2AWS0:
+- 'Zoku Natsume Yuujinchou'
+- 'Natsume2'
+- 'Natsume`s Book of Friends (2)'
+- 'ny2'
+- 'nyc2'
+- 'zny'
+- 'znyc'
+- 'ادامه ی کتابٍ دوستان ناتسومه'
+- 'زاکو ناتسومه یوجینچو'
+- 'นัตสึเมะกับบันทึกพิศวง ภาค 2'
+- '続 夏目友人帳'
+- '续 夏目友人帐'
+- '续.夏目友人帐'
+https://www.youtube.com/watch?v=wkeB3WPD9i4:
+- 'Natsume Yuujinchou San'
+- 'Natsume`s Book of Friends (3)'
+- 'ny3'
+- 'nyc3'
+- 'زاکو ناتسومه یوجینچو 3'
+- 'کتابٍ دوستان ناتسومه 3'
+- 'นัตสึเมะกับบันทึกพิศวง ภาค 3'
+- '夏目友人帐 参'
+- '夏目友人帐3'
+- '夏目友人帳 参'
+https://www.youtube.com/watch?v=NIvj0_buxgc:
+- 'Natsume Yuujinchou Shi'
+- 'Natsume Yujincho 4'
+- 'Natsume Yuujinchou 4'
+- 'Natsume Yuujinchou Four'
+- 'Natsume''s Book of Friends 4'
+- 'Natsume''s Book of Friends Season 4'
+- '夏目友人帳 肆'
+https://www.youtube.com/watch?v=ivl7hK9D_5c:
+- 'Natsume Yuujinchou Go'
+- 'Natsume''s Book of Friends 5'
+- 'Natsume''s Book of Friends Five'
+- '夏目友人帳 伍'
+https://www.youtube.com/watch?v=atxYe-nOa9w:
+- 'One Punch Man'
+- '1PM'
+- 'ONE PUNCH MAN ワンパンマン'
+- 'One Punch-Man'
+- 'One-Punch Man'
+- 'OPM'
+- 'Tek Vuruş Adam'
+- 'Wanpanman'
+- 'Ванпанчмен'
+- 'Уанпънч-мен'
+- 'ワンパンマン'
+- '一拳超人'
+- '원펀맨'
+https://www.youtube.com/watch?v=msTB5r8nUHU:
+- 'Monster'
+- 'MONSTER'
+- 'モンスター'
+https://www.youtube.com/watch?v=C337shIT9LI:
+- 'Suzumiya Haruhi no Yuuutsu'
+- 'The Melancholy of Haruhi Suzumiya'
+- '涼宮ハルヒの憂鬱'
+https://www.youtube.com/watch?v=yu0HjPzFYnY:
+- 'Boku no Hero Academia'
+- 'My Hero Academia'
+- '僕のヒーローアカデミア'
+https://www.youtube.com/watch?v=Q7w5IMyJ3pM:
+- 'Boku no Hero Academia'
+- 'My Hero Academia'
+- '僕のヒーローアカデミア'
+https://www.youtube.com/watch?v=v1YojYU5nPQ:
+- 'Boku no Hero Academia'
+- 'My Hero Academia'
+- '僕のヒーローアカデミア'
+https://www.youtube.com/watch?v=XhIA35OAIw4:
+- 'Boku no Hero Academia'
+- 'My Hero Academia'
+- '僕のヒーローアカデミア'
+https://www.youtube.com/watch?v=8QE9cmfxx4s:
+- 'Death Note'
+- 'Caderno da Morte'
+- 'DEATH NOTE'
+- 'Death Note - A halállista'
+- 'Death Note - Carnetul morţii'
+- 'Death Note - Zápisník smrti'
+- 'DN'
+- 'Mirties Užrašai'
+- 'Notatnik śmierci'
+- 'Notes Śmierci'
+- 'Quaderno della Morte'
+- 'Sveska Smrti'
+- 'Ölüm Defteri'
+- 'Τετράδιο Θανάτου'
+- 'Бележник на Смъртта'
+- 'Записник Смерті'
+- 'Свеска Смрти'
+- 'Тетрадка на Смъртта'
+- 'Тетрадь cмерти'
+- 'Үхлийн Тэмдэглэл'
+- 'מחברת המוות'
+- 'دفترچه مرگ'
+- 'دفترچه یادداشت مرگ'
+- 'كـتـاب الـموت'
+- 'مدونة الموت'
+- 'مذكرة الموت'
+- 'موت نوٹ'
+- 'डेथ नोट'
+- 'デスノート'
+- '死亡笔记'
+- '데스노트'
+https://www.youtube.com/watch?v=d5HT8HoiAHg:
+- 'Death Note'
+- 'Caderno da Morte'
+- 'DEATH NOTE'
+- 'Death Note - A halállista'
+- 'Death Note - Carnetul morţii'
+- 'Death Note - Zápisník smrti'
+- 'DN'
+- 'Mirties Užrašai'
+- 'Notatnik śmierci'
+- 'Notes Śmierci'
+- 'Quaderno della Morte'
+- 'Sveska Smrti'
+- 'Ölüm Defteri'
+- 'Τετράδιο Θανάτου'
+- 'Бележник на Смъртта'
+- 'Записник Смерті'
+- 'Свеска Смрти'
+- 'Тетрадка на Смъртта'
+- 'Тетрадь cмерти'
+- 'Үхлийн Тэмдэглэл'
+- 'מחברת המוות'
+- 'دفترچه مرگ'
+- 'دفترچه یادداشت مرگ'
+- 'كـتـاب الـموت'
+- 'مدونة الموت'
+- 'مذكرة الموت'
+- 'موت نوٹ'
+- 'डेथ नोट'
+- 'デスノート'
+- '死亡笔记'
+- '데스노트'
+https://www.youtube.com/watch?v=8vMRheOXO_w:
+- 'Bakuman.'
+- 'bakuman'
+- 'Bakuman'
+- 'Бакуман'
+- 'バクマン.'
+- '爆漫王'
+- '食梦者'
+https://www.youtube.com/watch?v=UASYpcT1etY:
+- 'Bakuman.'
+- 'bakuman'
+- 'Bakuman'
+- 'Бакуман'
+- 'バクマン.'
+- '爆漫王'
+- '食梦者'
+https://www.youtube.com/watch?v=2v6iOVhw6mQ:
+- 'Ping Pong the Animation'
+- 'Ping Pong The Animation'
+- 'PPTA'
+- 'ピンポン THE ANIMATION'
+- 'ピンポン The Animation'
+https://www.youtube.com/watch?v=3vP4iMoVYAg:
+- 'Sora yori mo Tooi Basho'
+- 'A Place Further Than the Universe'
+- 'Sora yorimo Tooi Basho'
+- 'Uchuu yori mo Tooi Basho'
+- 'Uchuu Yorimo Toui Basho'
+- 'Yorimoi'
+- '宇宙よりも遠い場所'
+https://www.youtube.com/watch?v=xkH8ti1gakE:
+- 'Yojouhan Shinwa Taikei'
+- '4-1/2 Tatami Mythological Chronicles'
+- '4.5 Tatami Mythological Chronicles'
+- '5 татами'
+- 'tatami'
+- 'tatami galaxy'
+- 'The Tatami Galaxy'
+- 'Yojou-Han Shinwa Taikei'
+- 'Yojouhan'
+- 'Легенды комнаты на 4'
+- '四叠半神话大系'
+- '四畳半神話大系'
+https://www.youtube.com/watch?v=KS9UfmCFn_Y:
+- 'Ansatsu Kyoushitsu'
+- 'Assassination Classroom'
+- '暗殺教室'
+https://www.youtube.com/watch?v=jZEcqbuSa7I:
+- 'Ansatsu Kyoushitsu'
+- 'Assassination Classroom'
+- '暗殺教室'
+https://www.youtube.com/watch?v=c_J7ybxenOQ:
+- 'Ansatsu Kyoushitsu'
+- 'Assassination Classroom'
+- '暗殺教室'
+https://www.youtube.com/watch?v=YdIOSzYApzo:
+- 'Fate/Zero'
+- 'f/z'
+- 'Fate Zero'
+- 'FateZero'
+- 'fz'
+- 'fz1'
+- 'Доля/Початок'
+- 'Нулева съдба'
+- 'Судьба/Зиро'
+- 'Судьба/Начало'
+- 'Съдба/Началото'
+- 'Фатум 2011'
+- 'Фатум/Початок'
+- 'سرنوشت / صفر'
+- 'فیت / زیرو'
+- 'قسمت / صفر'
+- 'フェイト/ゼロ'
+https://www.youtube.com/watch?v=r1JJUk7Cl7A:
+- 'Fate/Zero'
+- 'f/z'
+- 'Fate Zero'
+- 'FateZero'
+- 'fz'
+- 'fz1'
+- 'Доля/Початок'
+- 'Нулева съдба'
+- 'Судьба/Зиро'
+- 'Судьба/Начало'
+- 'Съдба/Началото'
+- 'Фатум 2011'
+- 'Фатум/Початок'
+- 'سرنوشت / صفر'
+- 'فیت / زیرو'
+- 'قسمت / صفر'
+- 'フェイト/ゼロ'
+https://www.youtube.com/watch?v=mtuwpsc8KKI:
+- 'Violet Evergarden'
+- 'ヴァイオレット・エヴァーガーデン'
+- '紫罗兰永恒花园'
+- '바이올렛 에버가든'
+https://www.youtube.com/watch?v=NQCax11Q0Bs:
+- 'No Game No Life'
+- 'NGNL'
+- 'No Game'
+- 'No Game, No Life'
+- 'No Life'
+- 'ノーゲーム・ノーライフ'
+https://www.youtube.com/watch?v=jwmRWhmJknc:
+- 'Aria the Origination'
+- 'ARIA The ORIGINATION'
+- 'Aria4'
+- 'Ария: Оригиналът'
+- 'アリア The ORIGINATION'
+- '水星领航员 第3季 ~ The ORIGINATION'
+- '아리아 디 오리지네이션'
+https://www.youtube.com/watch?v=8I8nWdkp-Vg:
+- 'Aria The Avvenire'
+- 'ARIA The AVVENIRE'
+https://www.youtube.com/watch?v=07PfoVA1h1k:
+- 'Aria the Animation'
+- 'Aria'
+- 'ARIA The ANIMATION'
+- 'Ария (первый сезон)'
+- 'Ария: Анимацията'
+- 'アリア The ANIMATION'
+- '水星领航员'
+https://www.youtube.com/watch?v=WTKa7G9cFY0:
+- 'Aria the Animation'
+- 'Aria'
+- 'ARIA The ANIMATION'
+- 'Ария (первый сезон)'
+- 'Ария: Анимацията'
+- 'アリア The ANIMATION'
+- '水星领航员'
+https://www.youtube.com/watch?v=iW4atnm_5h0:
+- 'Slam Dunk'
+- 'スラムダンク'
+https://www.youtube.com/watch?v=8rreetbeDzA:
+- 'Slam Dunk'
+- 'スラムダンク'
+https://www.youtube.com/watch?v=nS4d-KQ2QvE:
+- 'Uchuu Kyoudai'
+- 'Space Bros'
+- 'Space Brothers'
+- 'Uchu Kyodai'
+- 'Uchuu Kyodai'
+- '宇宙兄弟'
+https://www.youtube.com/watch?v=N5zzN2yZpWg:
+- 'Uchuu Kyoudai'
+- 'Space Bros'
+- 'Space Brothers'
+- 'Uchu Kyodai'
+- 'Uchuu Kyodai'
+- '宇宙兄弟'
+https://www.youtube.com/watch?v=uG608A_RYl8:
+- 'Uchuu Kyoudai'
+- 'Space Bros'
+- 'Space Brothers'
+- 'Uchu Kyodai'
+- 'Uchuu Kyodai'
+- '宇宙兄弟'
+https://www.youtube.com/watch?v=cy1UJaCTtfE:
+- 'Uchuu Kyoudai'
+- 'Space Bros'
+- 'Space Brothers'
+- 'Uchu Kyodai'
+- 'Uchuu Kyodai'
+- '宇宙兄弟'
+https://www.youtube.com/watch?v=Y9G20wV0KHE:
+- 'Boku dake ga Inai Machi'
+- 'BokuMachi'
+- 'Desaparecido'
+- 'Erased'
+- 'Erased - Die Stadt, in der es mich nicht gibt -'
+- 'Erased - La città in cui io non ci sono'
+- 'Öldürülmüş'
+- 'в който ме няма'
+- 'в който мен ме няма'
+- 'где меня больше нет'
+- 'Город'
+- 'Града'
+- 'Градът'
+- '僕だけがいない街'
+- '나만이 없는 거리'
+https://www.youtube.com/watch?v=ZwXKz2CeHwY:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=54dp8ucsGG8:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=dNi5bO2KQUU:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=lZylQYE6YmU:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=SU6AZA810FA:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=AL8m1Uktt4c:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=U-1rNzn1w6o:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=NsjzqNrXtE0:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=o7sZWSVH37g:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=CFM_zypYFHM:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=d0kYhG2FX4Q:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=eS0hCgXMnT4:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=wSw-fXQ2UBU:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=1xXNzI3STaI:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=Yk5jRT5GVpg:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=cZsj0dTTmy8:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=XWAiw4IqH_0:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=wwCDFIuT6AY:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=a4GldSJTZPw:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=6N5PM0iqSDA:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=4HHcnKgOyTQ:
+- 'Ano Hi Mita Hana no Namae o Bokutachi wa Mada Shiranai.'
+- 'Ano Hana'
+- 'Ano Hana: Ancora non conosciamo il nome del fiore che abbiamo visto quel giorno'
+- 'anohana'
+- 'Anohana: The Flower We Saw That Day'
+- 'który widzieliśmy tamtego dnia.'
+- 'Nadal nie znamy nazwy kwiatu'
+- 'O Gün Gördüğümüz Çiçeğin Adını Hala Bilmiyoruz'
+- 'We Still Don`t Know the Name of the Flower We Saw That Day.'
+- 'А нам всё невдомёк'
+- 'Ано Хана'
+- 'Все още не знаем името на цветето, което видяхме онзи ден.'
+- 'как звался тот цветок'
+- 'Невиданный цветок'
+- 'Невідома квітка'
+- 'Тэр Нэгэн Өдөр Харсан Цэцгийн Нэрийг Бид Одоо ч Мэдэхгүй'
+- 'Тэр Цэцэг'
+- 'що ми побачили того дня'
+- 'אנחנו עדיין לא יודעים את השם של הפרח שראינו באותו היום'
+- 'لازلنا لا نعرف أسماء الزهور التي رأيناها في ذلك اليوم'
+- 'هنوز اسم گلی که آن روز دیدیم را نمی دانیم'
+- 'ดอกไม้ มิตรภาพ และ ความทรงจำ'
+- 'あの日見た花の名前を僕達はまだ知らない.'
+- '我们仍未知道那天所看见的花的名字.'
+- '我們仍未知道那天所看見的花名。'
+- '那日所見花兒之名我們仍未知曉'
+- '那日所见花儿之名我们仍未知晓'
+- '那朵花'
+- '그날 본 꽃의 이름을 우리는 아직 모른다'
+https://www.youtube.com/watch?v=EKq0QdvBJJo:
+- 'Major'
+- 'Major 1st Season'
+- 'Major S1'
+- 'Мейжър С1'
+- 'ميجر'
+- 'メジャー'
+- '메이저 1기'
+https://www.youtube.com/watch?v=zXtXXiex7S0:
+- 'Major'
+- 'Major 1st Season'
+- 'Major S1'
+- 'Мейжър С1'
+- 'ميجر'
+- 'メジャー'
+- '메이저 1기'
+https://www.youtube.com/watch?v=PPfprhZU7ro:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=t-QSmNReDyI:
+- 'Shinseiki Evangelion'
+- 'eva'
+- 'eva tv'
+- 'Evangelion'
+- 'Evangelion TV'
+- 'Neon Genesis Evangelion'
+- 'Neon Genesis Evangelion Platinum'
+- 'Neon Genesis Evangelion Renewal'
+- 'NGE'
+- 'nge tv'
+- 'sse'
+- 'ева'
+- 'Евангелион'
+- 'Нова ера: Євангеліон'
+- 'єва'
+- 'Євангеліон'
+- 'Євангеліон нового покоління'
+- 'ניאון ג`נסיס אוונג`ליון'
+- 'อีวานเกเลี่ยน: มหาสงครามวันพิพากษา'
+- '新世紀エヴァンゲリオン'
+- '新世纪福音战士'
+- '신세기 에반게리온'
+https://www.youtube.com/watch?v=qUk1ZoCGqsA:
+- 'Nichijou'
+- 'Everyday Life'
+- 'My Ordinary Life'
+- 'nichijou tv'
+- 'Nichijou: My Ordinary Life'
+- 'Nichijō'
+- 'Мелочи жизни'
+- 'Повседневность'
+- 'روزهای معمولی من'
+- '日常'
+https://www.youtube.com/watch?v=j-HPhUy5Awk:
+- 'Nichijou'
+- 'Everyday Life'
+- 'My Ordinary Life'
+- 'nichijou tv'
+- 'Nichijou: My Ordinary Life'
+- 'Nichijō'
+- 'Мелочи жизни'
+- 'Повседневность'
+- 'روزهای معمولی من'
+- '日常'
+https://www.youtube.com/watch?v=5Gb_Uhee_RU:
+- 'Kamisama Hajimemashita'
+- 'Divine Nanami'
+- 'Kami-sama Kiss'
+- 'Kamihaji'
+- 'Kamisama Kiss'
+- 'Soy una Diosa ¿Y ahora qué?'
+- 'Бог [ТВ-1]'
+- 'Очень приятно'
+- 'بوسه ایزدی'
+- 'حضرت ایزد از ملاقاتتون خوشوقتم'
+- '神様はじめました'
+https://www.youtube.com/watch?v=LIBPhMB4nZw:
+- 'Kuroko no Basket'
+- 'KuroBas'
+- 'Kuroko no Basuke'
+- 'Kuroko''s Basketball'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=089nwtLOLmU:
+- 'Kuroko no Basket'
+- 'KuroBas'
+- 'Kuroko no Basuke'
+- 'Kuroko''s Basketball'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=LVbse3y-XFg:
+- 'Kuroko no Baske'
+- 'Kurobas'
+- 'kuroko no basket'
+- 'Kuroko no Basket'
+- 'Kuroko no Basuke'
+- 'Kuroko`s Basketball'
+- 'The Basketball Which Kuroko Plays'
+- 'THE BASKETBALL WHICH KUROKO PLAYS.'
+- 'Баскетбол Куроко'
+- 'Баскетболът на Куроко'
+- '幻影籃球王'
+- '影子籃球員'
+- '黑子的篮球'
+- '黒バス'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=-rR3uKBR-TI:
+- 'Kuroko no Basket'
+- 'KuroBas'
+- 'Kuroko no Basuke'
+- 'Kuroko''s Basketball'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=bv6Sb6icss0:
+- 'Kuroko no Basket'
+- 'KuroBas'
+- 'Kuroko no Basuke'
+- 'Kuroko''s Basketball'
+- '黒子のバスケ'
+https://www.youtube.com/watch?v=Eq6EYcpWB_c:
+- 'Samurai Champloo'
+- 'SAMURAI CHAMPLOO'
+- 'サムライチャンプルー'
+https://www.youtube.com/watch?v=vm6R8MgqR9A:
+- 'Shokugeki no Souma'
+- 'Food Wars ! Shokugeki no Soma'
+- 'Food Wars! Shokugeki no Soma'
+- 'Food Wars: Shokugeki no Soma'
+- 'Shokugeki no Soma'
+- 'Voedselgevecht!'
+- 'Повар-боец Сома'
+- '食戟のソーマ'
+- '食戟之灵'
+https://www.youtube.com/watch?v=oEy-D7dAjvw:
+- 'Shokugeki no Souma'
+- 'Food Wars ! Shokugeki no Soma'
+- 'Food Wars! Shokugeki no Soma'
+- 'Food Wars: Shokugeki no Soma'
+- 'Shokugeki no Soma'
+- 'Voedselgevecht!'
+- 'Повар-боец Сома'
+- '食戟のソーマ'
+- '食戟之灵'
+https://www.youtube.com/watch?v=y6ZnP3jpSJk:
+- 'Shokugeki no Souma'
+- 'Food Wars ! Shokugeki no Soma'
+- 'Food Wars! Shokugeki no Soma'
+- 'Food Wars: Shokugeki no Soma'
+- 'Shokugeki no Soma'
+- 'Voedselgevecht!'
+- 'Повар-боец Сома'
+- '食戟のソーマ'
+- '食戟之灵'
+https://www.youtube.com/watch?v=N3AIT585JoE:
+- 'Usagi Drop'
+- 'Bunny Drop'
+- 'うさぎドロップ'
+https://www.youtube.com/watch?v=rBPegoYoD9Q:
+- 'Hellsing'
+- 'hellsing tv'
+- 'hellsingtv'
+- 'Helsingas'
+- 'Хеллсинг'
+- 'Хеллсинг: Война с нечистью'
+- 'Хелсинг'
+- 'Хелсінг'
+- 'هيلسنج'
+- 'เฮลล์ซิ่ง'
+- 'ヘルシング'
+- '王家国教骑士团'
+- '헬싱'
+https://www.youtube.com/watch?v=Rm8UjBAS3cs:
+- 'Kiseijuu: Sei no Kakuritsu'
+- 'Il Parassita'
+- 'Kiseijuu'
+- 'L`ospite indesiderato'
+- 'Parasite'
+- 'Parasyte'
+- 'Parasyte -the maxim-'
+- 'Parasyte: The Maxim'
+- 'Parazit: Mravní zásady života'
+- 'Паразит'
+- 'Паразит: Жизненный принцип'
+- 'Паразит: Основно правило'
+- '寄生兽 生命的准则'
+- '寄生獣 セイの格率'
+- '기생수'
+https://www.youtube.com/watch?v=z1PWA11Ec3E:
+- 'Seishun Buta Yarou wa Bunny Girl Senpai no Yume o Minai'
+- 'aobuta'
+- 'Puberty Syndrome: Abnormal Experiences During Adolescence Due to Sensitivity and Instability.'
+- 'Rascal Does Not Dream of Bunny Girl Senpai'
+- 'Seibuta'
+- 'Seishun Buta Yarou wa Bunny Girl Senpai no Yume wo Minai'
+- '青春ブタ野郎はバニーガール先輩の夢を見ない'
+- '青春期笨蛋不做兔女郎学姐的梦'
+- '청춘 돼지는 바니걸 선배의 꿈을 꾸지 않는다'
+https://www.youtube.com/watch?v=A-D6RwES6Ls:
+- 'Cross Game'
+- 'crossgame'
+- 'Перекрестная игра'
+- 'Перехрестна гра'
+- 'クロスゲーム'
+- '四葉遊戲'
+- '幸运四叶草'
+- '크로스 게임'
+https://www.youtube.com/watch?v=dy_WNIx2hec:
+- 'Nana'
+- 'Nana tv'
+- 'Нана'
+- 'نانا'
+- 'นานะ'
+- 'ナナ'
+- '娜娜'
+- '나나'
+https://www.youtube.com/watch?v=wUzdaCHM6WM:
+- 'Nana'
+- 'Nana tv'
+- 'Нана'
+- 'نانا'
+- 'นานะ'
+- 'ナナ'
+- '娜娜'
+- '나나'
+https://www.youtube.com/watch?v=3Ga2MqOI9Y8:
+- 'Nana'
+- 'Nana tv'
+- 'Нана'
+- 'نانا'
+- 'นานะ'
+- 'ナナ'
+- '娜娜'
+- '나나'
+https://www.youtube.com/watch?v=WUW2hRQkegM:
+- 'Yuu☆Yuu☆Hakusho'
+- 'Ghost Fighter'
+- 'Poltergeist Report'
+- 'Yu Yu Hakusho'
+- 'Yu Yu Hakusho: Ghost Files'
+- 'Yu Yu Hakusho: Ghostfiles'
+- 'Yuu Yuu Hakusho'
+- 'YuYu Hakusho'
+- '幽☆遊☆白書'
+https://www.youtube.com/watch?v=2l9V2ejc6OY:
+- 'Yuu☆Yuu☆Hakusho'
+- 'Ghost Fighter'
+- 'Poltergeist Report'
+- 'Yu Yu Hakusho'
+- 'Yu Yu Hakusho: Ghost Files'
+- 'Yu Yu Hakusho: Ghostfiles'
+- 'Yuu Yuu Hakusho'
+- 'YuYu Hakusho'
+- '幽☆遊☆白書'
+https://www.youtube.com/watch?v=9dyb9yrBd68:
+- 'Yuu☆Yuu☆Hakusho'
+- 'Ghost Fighter'
+- 'Poltergeist Report'
+- 'Yu Yu Hakusho'
+- 'Yu Yu Hakusho: Ghost Files'
+- 'Yu Yu Hakusho: Ghostfiles'
+- 'Yuu Yuu Hakusho'
+- 'YuYu Hakusho'
+- '幽☆遊☆白書'
+https://www.youtube.com/watch?v=0TRs6cMZkQY:
+- 'Hunter x Hunter'
+- 'Hantā Hantā'
+- 'HUNTER×HUNTER(ハンター×ハンター)'
+- 'HxH'
+- 'ハンターxハンター'
+https://www.youtube.com/watch?v=WsIk-tOzdFc:
+- 'Hunter x Hunter'
+- 'Hantā Hantā'
+- 'HUNTER×HUNTER(ハンター×ハンター)'
+- 'HxH'
+- 'ハンターxハンター'
+https://www.youtube.com/watch?v=ocQ6PDiP014:
+- 'Berserk'
+- 'Berserk (2016)'
+- 'Berserk (Saison 1)'
+- 'Берсерк (2016)'
+- 'ベルセルク'
+https://www.youtube.com/watch?v=q2SWV5xxtcQ:
+- 'Berserk'
+- 'Berserk (2016)'
+- 'Berserk (Saison 1)'
+- 'Берсерк (2016)'
+- 'ベルセルク'
+https://www.youtube.com/watch?v=Kx-1TghelNQ:
+- 'Berserk'
+- 'Berserk (2016)'
+- 'Berserk (Saison 1)'
+- 'Берсерк (2016)'
+- 'ベルセルク'
+https://www.youtube.com/watch?v=XVSgHFCIA6k:
+- 'Kingdom'
+- 'Kingdom (2012)'
+- 'キングダム'
+- '王者天下'
+https://www.youtube.com/watch?v=rxebYxY9NXE:
+- 'Chihayafuru'
+- 'Chihayafull'
+- 'ちはやふる'
+https://www.youtube.com/watch?v=b4NyjHtWaUM:
+- 'Chihayafuru'
+- 'Chihayafull'
+- 'ちはやふる'
+https://www.youtube.com/watch?v=1Y9nulcg3Yw:
+- 'Kuroshitsuji'
+- 'Black Butler'
+- 'Dark Butler'
+- 'El Mayordomo Negro'
+- 'Il Maggiordomo Nero'
+- 'Kara Uşak'
+- 'Kuro Shitsuji'
+- 'Melnais Virssulainis'
+- 'Mordomo Negro'
+- 'Paslaptingasis liokajus'
+- 'Su Matzurdomu Nieddu'
+- 'Μαύρος Μπάτλερ'
+- 'Темний дворецький'
+- 'Тёмный Дворецкий'
+- 'Черният Иконом'
+- 'الخادم الأسود'
+- '黑执事'
+- '黒執事'
+https://www.youtube.com/watch?v=M22jx3PNxr0:
+- 'Kuroshitsuji'
+- 'Black Butler'
+- 'Dark Butler'
+- 'El Mayordomo Negro'
+- 'Il Maggiordomo Nero'
+- 'Kara Uşak'
+- 'Kuro Shitsuji'
+- 'Melnais Virssulainis'
+- 'Mordomo Negro'
+- 'Paslaptingasis liokajus'
+- 'Su Matzurdomu Nieddu'
+- 'Μαύρος Μπάτλερ'
+- 'Темний дворецький'
+- 'Тёмный Дворецкий'
+- 'Черният Иконом'
+- 'الخادم الأسود'
+- '黑执事'
+- '黒執事'
+https://www.youtube.com/watch?v=TJFf3KJTSsk:
+- 'Psycho-Pass'
+- 'PP1'
+- 'Psycho Pass'
+- 'PSYCHO-PASS'
+- 'Psycho-Pass Shin Henshuu-ban'
+- 'PSYCHO-PASS 新編集版'
+- 'Psycho-Pass: Extended Edition'
+- 'PSYCHO-PASS心靈判官'
+- 'Психо-пас'
+- 'Психо-паспорт'
+- 'Психопаспорт'
+- 'サイコパス'
+- '心理测量者'
+https://www.youtube.com/watch?v=51PjegTadWU:
+- 'Uchuu Senkan Yamato'
+- 'Acorazado espacial Yamato'
+- 'Crucero Espacial Yamato'
+- 'Kosmiczny pancernik Yamato'
+- 'Patrulha Estelar'
+- 'Space Battleship Yamato'
+- 'Space Cruiser Yamato'
+- 'Star Blazers'
+- 'Star Blazers: The Quest for Iscandar'
+- 'yamato1'
+- 'Διαστημόπλοιο Αργώ'
+- 'Космический крейсер Ямато'
+- 'חלוצי החלל'
+- 'أبطال الفضاء'
+- '宇宙戦艦ヤマト'
+https://www.youtube.com/watch?v=bT9erRpdJLQ:
+- 'Uchuu Senkan Yamato'
+- 'Acorazado espacial Yamato'
+- 'Crucero Espacial Yamato'
+- 'Kosmiczny pancernik Yamato'
+- 'Patrulha Estelar'
+- 'Space Battleship Yamato'
+- 'Space Cruiser Yamato'
+- 'Star Blazers'
+- 'Star Blazers: The Quest for Iscandar'
+- 'yamato1'
+- 'Διαστημόπλοιο Αργώ'
+- 'Космический крейсер Ямато'
+- 'חלוצי החלל'
+- 'أبطال الفضاء'
+- '宇宙戦艦ヤマト'
+https://www.youtube.com/watch?v=MN_WgwEmRaw:
+- 'Ookami to Koushinryou'
+- 'Aktar ve Kurt'
+- 'Kurt ve Baharat'
+- 'otk'
+- 'S&W'
+- 'SaW'
+- 'Spice and Wolf'
+- 'spice&wolf'
+- 'spice+wolf'
+- 'Spicy Wolf'
+- 'SW'
+- 'Vilkė ir Prieskoniai'
+- 'Wilk i Przyprawa'
+- 'Wolf and Spice'
+- 'Вовчиця та спеції'
+- 'Вовчиця і спеції'
+- 'Волчица и пряности'
+- 'תבלין וזאב'
+- '狼と香辛料'
+- '狼与香辛料'
+- '狼與辛香料'
+- '늑대와 향신료'
+https://www.youtube.com/watch?v=A08fzhikzuo:
+- 'Ookami to Koushinryou'
+- 'Aktar ve Kurt'
+- 'Kurt ve Baharat'
+- 'otk'
+- 'S&W'
+- 'SaW'
+- 'Spice and Wolf'
+- 'spice&wolf'
+- 'spice+wolf'
+- 'Spicy Wolf'
+- 'SW'
+- 'Vilkė ir Prieskoniai'
+- 'Wilk i Przyprawa'
+- 'Wolf and Spice'
+- 'Вовчиця та спеції'
+- 'Вовчиця і спеції'
+- 'Волчица и пряности'
+- 'תבלין וזאב'
+- '狼と香辛料'
+- '狼与香辛料'
+- '狼與辛香料'
+- '늑대와 향신료'
+https://www.youtube.com/watch?v=MTw9tYs5bEQ:
+- 'Sakamichi no Apollon'
+- 'Apollo on the Slope'
+- 'Kids on the Slope'
+- 'Sakamichi no Aporon'
+- '坂道のアポロン'
+https://www.youtube.com/watch?v=Bs4VBfpIaes:
+- 'Katanagatari'
+- 'Sword Stories'
+- 'Sword Story'
+- 'Истории мечей'
+- 'Катанагатари'
+- 'Катанасказы'
+- 'قصص السيوف'
+- 'カタナガタリ'
+- '刀語'
+- '刀语'
+https://www.youtube.com/watch?v=yt8v3s6RPSs:
+- 'Katanagatari'
+- 'Sword Stories'
+- 'Sword Story'
+- 'Истории мечей'
+- 'Катанагатари'
+- 'Катанасказы'
+- 'قصص السيوف'
+- 'カタナガタリ'
+- '刀語'
+- '刀语'
+https://www.youtube.com/watch?v=rdZxHfUNmvY:
+- 'Mobile Suit Gundam'
+- 'First Gundam'
+- 'Gundam'
+- 'gundam 79'
+- 'gundam1'
+- 'Kidou Senshi Gundam'
+- 'Mobile Suit Gundam: 0079'
+- 'MSG'
+- 'MSG: 0079'
+- 'Ґандам'
+- 'החליפה המונעת גאנדם'
+- '机动战士高达'
+- '机动战士高达u.c 0079'
+- '機動戦士ガンダム'
+- '機動戰士高達'
+https://www.youtube.com/watch?v=lQrDASSYKmw:
+- 'Mobile Suit Zeta Gundam'
+- 'Kidou Senshi Zeta Gundam'
+- 'Mobile Suit Z Gundam'
+- '機動戦士Zガンダム'
+- '機動戦士Ζガンダム'
+https://www.youtube.com/watch?v=Zw-X8DkdZhM:
+- 'Kidou Senshi Gundam ZZ'
+- 'Gundam ZZ'
+- 'Mobile Suit Gundam Double Zeta'
+- 'Mobile Suit Gundam ZZ'
+- 'Mobile Suit ZZ Gundam'
+- 'MSGZZ'
+- 'ZZ Gundam'
+- '機動戦士ガンダムZZ'
+https://www.youtube.com/watch?v=N0LKHt0JBFg:
+- 'Kidou Senshi Gundam ZZ'
+- 'Gundam ZZ'
+- 'Mobile Suit Gundam Double Zeta'
+- 'Mobile Suit Gundam ZZ'
+- 'Mobile Suit ZZ Gundam'
+- 'MSGZZ'
+- 'ZZ Gundam'
+- '機動戦士ガンダムZZ'
+https://www.youtube.com/watch?v=mYe_-oFkMaI:
+- 'Mobile Suit Gundam Wing'
+- 'New Mobile Report Gundam Wing'
+- 'Shin Kidou Senki Gundam Wing'
+- '新機動戦記ガンダムW'
+https://www.youtube.com/watch?v=nNwQ37pZWiU:
+- 'Mobile Suit Gundam'
+- 'First Gundam'
+- 'Gundam'
+- 'gundam 79'
+- 'gundam1'
+- 'Kidou Senshi Gundam'
+- 'Mobile Suit Gundam: 0079'
+- 'MSG'
+- 'MSG: 0079'
+- 'Ґандам'
+- 'החליפה המונעת גאנדם'
+- '机动战士高达'
+- '机动战士高达u.c 0079'
+- '機動戦士ガンダム'
+- '機動戰士高達'
+https://www.youtube.com/watch?v=lEIFT3Bx-Ok:
+- 'Mobile Suit Gundam'
+- 'First Gundam'
+- 'Gundam'
+- 'gundam 79'
+- 'gundam1'
+- 'Kidou Senshi Gundam'
+- 'Mobile Suit Gundam: 0079'
+- 'MSG'
+- 'MSG: 0079'
+- 'Ґандам'
+- 'החליפה המונעת גאנדם'
+- '机动战士高达'
+- '机动战士高达u.c 0079'
+- '機動戦士ガンダム'
+- '機動戰士高達'
+https://www.youtube.com/watch?v=tpqwY7tsZS4:
+- 'Turn A Gundam'
+- 'Mobile Suit Gundam Turn A'
+- '∀ Gundam'
+- '∀ガンダム'
+https://www.youtube.com/watch?v=EMRaR15RBno:
+- 'Kidou Senshi Gundam SEED'
+- 'G SEED'
+- 'GS'
+- 'Gundam S'
+- 'Gundam SEED'
+- 'Gundam SEED TV'
+- 'Mobile Suit Gundam SEED'
+- 'Mobile Suit Gundam Seed'
+- 'Seed'
+- 'Мобилен Костюм Гъндам Сийд'
+- 'Мобильный воин ГАНДАМ: Поколение'
+- 'Ґандам SEED'
+- 'โมบิลสูท กันดั้มซี้ด'
+- '机动战士高达SEED'
+- '機動戦士ガンダムSEED'
+- '種'
+- '기동전사 건담 SEED'
+https://www.youtube.com/watch?v=RNh6ltDBQFY:
+- 'Mobile Suit Gundam: Iron-Blooded Orphans'
+- 'G-Tekketsu'
+- 'Gundam IBO'
+- 'Kidou Senshi Gundam: Tekketsu no Orphans'
+- 'Mobile Suit GUNDAM Iron Blooded Orphans'
+- '機動戦士ガンダム 鉄血のオルフェンズ'
+https://www.youtube.com/watch?v=_46zFe7lwRM:
+- 'Shirobako'
+- 'SHIROBAKO'
+- 'White Box'
+- 'Белая коробка'
+- '白箱'
+https://www.youtube.com/watch?v=xD7SJ5wgGX0:
+- 'Shirobako'
+- 'SHIROBAKO'
+- 'White Box'
+- 'Белая коробка'
+- '白箱'
+https://www.youtube.com/watch?v=ZVgHN8cfy1I:
+- 'Kino no Tabi: The Beautiful World'
+- 'Călătoria lui Kino: Lumea frumoasă'
+- 'kino'
+- 'Kino no tabi'
+- 'Kino''s Journey'
+- 'Kino''s Travels: The Beautiful World'
+- 'Kino`nun Seyahati: Güzel Dünya'
+- 'Kino`s Journey'
+- 'Kino`s Journey: The Beautiful World'
+- 'Kino`s Travels: The Beautiful World'
+- 'Kinos Journey'
+- 'Kinos resa'
+- 'L`Odyssée de Kino'
+- 'Podróż Kino'
+- 'Viaje de Kino: El Maravilloso Mundo'
+- 'Подорож Кіно ~Прекрасний світ~'
+- 'Прекрасный мир кинопутешествия'
+- 'Путешествие Кино - прекрасный мир'
+- 'Пътуването на Кино - Прекрасният Свят'
+- 'Странствия Кино'
+- 'המסע של קינו'
+- 'سفرهای کینو: دنیای زیبا'
+- 'キノの旅 -the Beautiful World-'
+- '키노의 여행: The Beautiful Woirld'
+https://www.youtube.com/watch?v=nGShsyMsfAg:
+- 'Magi: The Labyrinth of Magic'
+- 'magi'
+- 'Magi - The Labyrinth of Magic'
+- 'Magi 1, The Labyrinth of Magic'
+- 'Маги'
+- 'Маги: Вълшебният лабиринт'
+- 'Маги: Магическият лабиринт'
+- 'علاءالدین و هزارتوی جادو'
+- 'ماجي: متاهة السحر'
+- 'ماگی: هزارتوی جادو'
+- 'متاهة السحر'
+- 'マギ The labyrinth of magic'
+https://www.youtube.com/watch?v=c_GqBXDudFg:
+- 'Magi: The Labyrinth of Magic'
+- 'magi'
+- 'Magi - The Labyrinth of Magic'
+- 'Magi 1, The Labyrinth of Magic'
+- 'Маги'
+- 'Маги: Вълшебният лабиринт'
+- 'Маги: Магическият лабиринт'
+- 'علاءالدین و هزارتوی جادو'
+- 'ماجي: متاهة السحر'
+- 'ماگی: هزارتوی جادو'
+- 'متاهة السحر'
+- 'マギ The labyrinth of magic'
+https://www.youtube.com/watch?v=gfZh80kZm3g:
+- 'Nodame Cantabile'
+- 'のだめカンタービレ'
+https://www.youtube.com/watch?v=gW3Z3X4pyV8:
+- 'Nodame Cantabile Finale'
+- 'Nodame Cantabile Season 3'
+- 'Nodame Cantabile Third Season'
+- 'Nodame Cantabile: Finale'
+- 'のだめカンタービレ フィナーレ'
+https://www.youtube.com/watch?v=UbJeAf7stfQ:
+- 'One Outs'
+- 'but I!'
+- 'One Outs: Nobody Wins'
+- 'oo'
+- 'oo!'
+- 'Один на вылет'
+- 'ون أوتس: لا أحد يفوز سواي!'
+- 'ワンナウツ'
+- '超智遊戲'
+https://www.youtube.com/watch?v=gWCnKoEgfP0:
+- 'Noragami'
+- 'Stray God'
+- 'Бездомный Бог'
+- 'Уличен бог'
+- 'ノラガミ'
+- '野良神'
+- '노라가미'
+https://www.youtube.com/watch?v=aZenmeRytEM:
+- 'Noragami Aragoto'
+- 'Бездомный Бог 2'
+- 'ノラガミ ARAGOTO'
+https://www.youtube.com/watch?v=Qq61e-LtJTU:
+- 'Rurouni Kenshin: Meiji Kenkaku Romantan'
+- 'Kenshin'
+- 'kenshin'
+- 'Kenshin Samurai Vagabondo'
+- 'kenshin tv'
+- 'Kenshin, le vagabond'
+- 'Kenshin: El Guerrero Samurái'
+- 'rk'
+- 'rk tv'
+- 'rktv'
+- 'RuroKen'
+- 'RuroKen TV'
+- 'Rurouni Kenshin'
+- 'Rurouni Kenshin - Legend of Kyoto'
+- 'Rurouni Kenshin - Tales of the Meiji'
+- 'Rurouni Kenshin - Wandering Samurai'
+- 'Rurouni Kenshin TV'
+- 'Rurouni Kenshin: Meiji Swordsman Romantic Story'
+- 'Rurouni Kenshin: Romance of a Meiji Swordsman'
+- 'Samurai X'
+- 'Samurajai X'
+- 'Samuray X'
+- 'Wanderer Kenshin'
+- 'Бродяга Кэнсин'
+- 'Руроуні Кеншін ~Оповіді Мейджі~'
+- 'Самурай Х'
+- 'الرحالة كينشن'
+- 'ساموراي إكس'
+- 'ซามูไรพเนจร'
+- 'るろうに剣心 -明治剣客浪漫譚-'
+- 'るろけん'
+- 'るろ剣'
+- '浪客剑心'
+https://www.youtube.com/watch?v=U0e33pfs2lo:
+- 'Rurouni Kenshin: Meiji Kenkaku Romantan'
+- 'Kenshin'
+- 'kenshin'
+- 'Kenshin Samurai Vagabondo'
+- 'kenshin tv'
+- 'Kenshin, le vagabond'
+- 'Kenshin: El Guerrero Samurái'
+- 'rk'
+- 'rk tv'
+- 'rktv'
+- 'RuroKen'
+- 'RuroKen TV'
+- 'Rurouni Kenshin'
+- 'Rurouni Kenshin - Legend of Kyoto'
+- 'Rurouni Kenshin - Tales of the Meiji'
+- 'Rurouni Kenshin - Wandering Samurai'
+- 'Rurouni Kenshin TV'
+- 'Rurouni Kenshin: Meiji Swordsman Romantic Story'
+- 'Rurouni Kenshin: Romance of a Meiji Swordsman'
+- 'Samurai X'
+- 'Samurajai X'
+- 'Samuray X'
+- 'Wanderer Kenshin'
+- 'Бродяга Кэнсин'
+- 'Руроуні Кеншін ~Оповіді Мейджі~'
+- 'Самурай Х'
+- 'الرحالة كينشن'
+- 'ساموراي إكس'
+- 'ซามูไรพเนจร'
+- 'るろうに剣心 -明治剣客浪漫譚-'
+- 'るろけん'
+- 'るろ剣'
+- '浪客剑心'
+https://www.youtube.com/watch?v=CzKxhSLuMgM:
+- 'Rurouni Kenshin: Meiji Kenkaku Romantan'
+- 'Kenshin'
+- 'kenshin'
+- 'Kenshin Samurai Vagabondo'
+- 'kenshin tv'
+- 'Kenshin, le vagabond'
+- 'Kenshin: El Guerrero Samurái'
+- 'rk'
+- 'rk tv'
+- 'rktv'
+- 'RuroKen'
+- 'RuroKen TV'
+- 'Rurouni Kenshin'
+- 'Rurouni Kenshin - Legend of Kyoto'
+- 'Rurouni Kenshin - Tales of the Meiji'
+- 'Rurouni Kenshin - Wandering Samurai'
+- 'Rurouni Kenshin TV'
+- 'Rurouni Kenshin: Meiji Swordsman Romantic Story'
+- 'Rurouni Kenshin: Romance of a Meiji Swordsman'
+- 'Samurai X'
+- 'Samurajai X'
+- 'Samuray X'
+- 'Wanderer Kenshin'
+- 'Бродяга Кэнсин'
+- 'Руроуні Кеншін ~Оповіді Мейджі~'
+- 'Самурай Х'
+- 'الرحالة كينشن'
+- 'ساموراي إكس'
+- 'ซามูไรพเนจร'
+- 'るろうに剣心 -明治剣客浪漫譚-'
+- 'るろけん'
+- 'るろ剣'
+- '浪客剑心'
+https://www.youtube.com/watch?v=rkRApaiMjW0:
+- 'Rurouni Kenshin: Meiji Kenkaku Romantan'
+- 'Kenshin'
+- 'kenshin'
+- 'Kenshin Samurai Vagabondo'
+- 'kenshin tv'
+- 'Kenshin, le vagabond'
+- 'Kenshin: El Guerrero Samurái'
+- 'rk'
+- 'rk tv'
+- 'rktv'
+- 'RuroKen'
+- 'RuroKen TV'
+- 'Rurouni Kenshin'
+- 'Rurouni Kenshin - Legend of Kyoto'
+- 'Rurouni Kenshin - Tales of the Meiji'
+- 'Rurouni Kenshin - Wandering Samurai'
+- 'Rurouni Kenshin TV'
+- 'Rurouni Kenshin: Meiji Swordsman Romantic Story'
+- 'Rurouni Kenshin: Romance of a Meiji Swordsman'
+- 'Samurai X'
+- 'Samurajai X'
+- 'Samuray X'
+- 'Wanderer Kenshin'
+- 'Бродяга Кэнсин'
+- 'Руроуні Кеншін ~Оповіді Мейджі~'
+- 'Самурай Х'
+- 'الرحالة كينشن'
+- 'ساموراي إكس'
+- 'ซามูไรพเนจร'
+- 'るろうに剣心 -明治剣客浪漫譚-'
+- 'るろけん'
+- 'るろ剣'
+- '浪客剑心'
+https://www.youtube.com/watch?v=5DCGQ57ykME:
+- 'Dororo'
+- 'Dororo to Hyakkimaru'
+- 'どろろ'
+https://www.youtube.com/watch?v=Lr1n00PY6Rg:
+- 'Dororo'
+- 'Dororo to Hyakkimaru'
+- 'どろろ'
+https://www.youtube.com/watch?v=4JpR-M1wE5s:
+- 'Kono Subarashii Sekai ni Shukufuku o!'
+- 'Kono Subarashii Sekai ni Shukufuku wo!'
+- 'konosuba'
+- 'KONOSUBA - As Bênçãos de Deus Nesse Mundo Maravilhoso!'
+- 'Konosuba: God`s Blessing on This Wonderful World!'
+- 'Этот замечательный мир!'
+- 'この素晴らしい世界に祝福を!'
+- '为美好的世界献上祝福!'
+- '이 멋진 세계에 축복을!'
+https://www.youtube.com/watch?v=Y3Xmzu0OtS8:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=ey0T9h1Ibng:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=p1URzwlqOL0:
+- 'Beck'
+- 'BECK'
+- 'Beck - Mongolian Chop Squad'
+- 'BECK MONGOLIAN CHOP SQUAD'
+- 'Beck: Mongolian Chop Squad'
+- 'Mongolian Chop Squad'
+- 'Бек'
+- 'ベック'
+https://www.youtube.com/watch?v=m7_-RBl0lfY:
+- 'K-On!'
+- 'K on'
+- 'K-on'
+- 'K-ON!'
+- 'K-ON! Season 1'
+- 'Keion'
+- 'けいおん!'
+https://www.youtube.com/watch?v=CZ-OyT4ivkM:
+- 'Planetes'
+- 'PES'
+- 'PLANET-ES'
+- 'Planètes'
+- 'ΠΛΑΝΗΤΕΣ'
+- 'Мандрівники'
+- 'Планетес'
+- 'Планети'
+- 'Странники'
+- 'プラネテス'
+- '星空清理者'
+https://www.youtube.com/watch?v=ddYbBTPEbqQ:
+- 'Gin no Saji'
+- 'Ginsaji'
+- 'Silver Spoon'
+- 'الملعقة الفضية'
+- '銀の匙'
+- '銀の匙 Silver Spoon'
+- '银之匙 Silver Spoon'
+- '은수저'
+https://www.youtube.com/watch?v=8mU2a2oqMzg:
+- 'Gin no Saji'
+- 'Ginsaji'
+- 'Silver Spoon'
+- 'الملعقة الفضية'
+- '銀の匙'
+- '銀の匙 Silver Spoon'
+- '银之匙 Silver Spoon'
+- '은수저'
+https://www.youtube.com/watch?v=FJqGirLjQn4:
+- 'Dragon Ball'
+- 'DB'
+- 'Dragonball'
+- 'ドラゴンボール'
+https://www.youtube.com/watch?v=BT1Dp69D7q0:
+- 'Dragon Ball'
+- 'DB'
+- 'Dragonball'
+- 'ドラゴンボール'
+https://www.youtube.com/watch?v=odhuGelEH3g:
+- 'Dragon Ball Kai'
+- 'Bola de Drac Kai'
+- 'Bola de Drac Z Kai'
+- 'dbk'
+- 'dbkai'
+- 'dbzkai'
+- 'Dragon Ball Z Kai'
+- 'Dragonball Kai'
+- 'Drakonų Kova: Kai'
+- 'Драконова топка Кай'
+- 'دراغون بول كاي'
+- 'ドラゴンボール改'
+- '龙珠·改'
+- '龙珠改'
+https://www.youtube.com/watch?v=UNDr08uCRqQ:
+- 'Dragon Ball Kai'
+- 'Bola de Drac Kai'
+- 'Bola de Drac Z Kai'
+- 'dbk'
+- 'dbkai'
+- 'dbzkai'
+- 'Dragon Ball Z Kai'
+- 'Dragonball Kai'
+- 'Drakonų Kova: Kai'
+- 'Драконова топка Кай'
+- 'دراغون بول كاي'
+- 'ドラゴンボール改'
+- '龙珠·改'
+- '龙珠改'
+https://www.youtube.com/watch?v=rO3_O_5BYw4:
+- 'Dragon Ball Super'
+- 'DB Super'
+- 'DBS'
+- 'Dragon Ball Chou'
+- 'Dragonball Super'
+- 'ドラゴンボール超'
+- 'ドラゴンボール超(スーパー)'
+https://www.youtube.com/watch?v=vWtOP721n0s:
+- 'Dragon Ball Super'
+- 'DB Super'
+- 'DBS'
+- 'Dragon Ball Chou'
+- 'Dragonball Super'
+- 'ドラゴンボール超'
+- 'ドラゴンボール超(スーパー)'
+https://www.youtube.com/watch?v=tJVAkofTFbI:
+- 'Hinamatsuri'
+- 'HINAMATSURI'
+- 'ヒナまつり'
+https://www.youtube.com/watch?v=EMe_zK3th8E:
+- 'ReLife'
+- 'ReLIFE'
+https://www.youtube.com/watch?v=j7myzgxz9nI:
+- 'Gyakkyou Burai Kaiji: Ultimate Survivor'
+- 'kaiji'
+- 'Kaiji'
+- 'Kaiji: Ultimate Survivor'
+- 'Suffering Outcast Kaiji: Ultimate Survivor'
+- 'The Suffering Pariah Kaiji: Ultimate Survivor'
+- 'Tobaku Mokushiroku Kaiji'
+- 'Кайджи'
+- 'Кайджи: Вечно оцеляващият'
+- 'Кайдзи'
+- 'كايجي'
+- '賭博破戒録カイジ'
+- '赌博默示录'
+- '逆境無頼カイジ Ultimate Survivor'
+https://www.youtube.com/watch?v=BQ0KfA_oSZQ:
+- 'Gyakkyou Burai Kaiji: Ultimate Survivor'
+- 'kaiji'
+- 'Kaiji'
+- 'Kaiji: Ultimate Survivor'
+- 'Suffering Outcast Kaiji: Ultimate Survivor'
+- 'The Suffering Pariah Kaiji: Ultimate Survivor'
+- 'Tobaku Mokushiroku Kaiji'
+- 'Кайджи'
+- 'Кайджи: Вечно оцеляващият'
+- 'Кайдзи'
+- 'كايجي'
+- '賭博破戒録カイジ'
+- '赌博默示录'
+- '逆境無頼カイジ Ultimate Survivor'
+https://www.youtube.com/watch?v=bmHYFDiXaqA:
+- 'Hachimitsu to Clover II'
+- 'Honey & Clover II'
+- 'Honey and Clover 2'
+- 'Honey and Clover II'
+- 'ハチミツとクローバー II'
+https://www.youtube.com/watch?v=XgWkIrFQQE0:
+- 'Higurashi no Naku Koro ni'
+- 'The Moment the Cicadas Cry'
+- 'When the Cicadas Cry'
+- 'When They Cry'
+- 'ひぐらしのなく頃に'
+https://www.youtube.com/watch?v=idovoRQuKx0:
+- 'Higurashi no Naku Koro ni Rei'
+- 'higu3'
+- 'Higurashi no Naku Koro ni 3rd Season'
+- 'Higurashi no Naku Koro ni Dai San Ki'
+- 'higurashi3'
+- 'HiguRei'
+- 'HnNKnR'
+- 'When They Cry - Higurashi 3'
+- 'When They Cry Rei'
+- 'When They Cry: Rei'
+- 'В час'
+- 'Когда плачут цикады 3'
+- 'коли плачуть цикади ІІІ'
+- 'ひぐらしのなく頃に礼'
+- '寒蝉鸣泣之时 礼'
+- '暮蟬悲鳴時 禮'
+https://www.youtube.com/watch?v=QXSBh4gtQ7g:
+- 'Ouran Koukou Host Club'
+- 'Ohran Koko Host Club'
+- 'OHSHC'
+- 'Ouran High School Host Club'
+- 'Ouran Koukou Host Bu'
+- 'Ouran Koukou Hosutobu'
+- '桜蘭高校ホスト部'
+https://www.youtube.com/watch?v=Y675EaSEFVA:
+- 'SKET Dance'
+- 'SKET DANCE'
+- 'スケットダンス'
+https://www.youtube.com/watch?v=rcsow1i21zE:
+- 'SKET Dance'
+- 'SKET DANCE'
+- 'スケットダンス'
+https://www.youtube.com/watch?v=EefNiVvWAB0:
+- 'Ballroom e Youkoso'
+- 'Benvenuti al ballo'
+- 'Welcome to the Ballroom'
+- 'ボールルームへようこそ'
+- '볼룸에 오신 것을 환영합니다'
+https://www.youtube.com/watch?v=IObxVd-TwkM:
+- 'Ballroom e Youkoso'
+- 'Benvenuti al ballo'
+- 'Welcome to the Ballroom'
+- 'ボールルームへようこそ'
+- '볼룸에 오신 것을 환영합니다'
+https://www.youtube.com/watch?v=tvHqaimwcKE:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=v9OhNoPAZJY:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=wI5NEngxTnA:
+- 'Bungou Stray Dogs'
+- 'Bungo Stray Dogs'
+- 'Literary Stray Dogs'
+- '文豪ストレイドッグス'
+https://www.youtube.com/watch?v=CJAF-1TAM7g:
+- 'Initial D First Stage'
+- 'ID'
+- '頭文字〈イニシャル〉D'
+https://www.youtube.com/watch?v=LxcbqKBworY:
+- 'Initial D Second Stage'
+- 'ID2nd'
+- 'IDSS'
+- 'Initial D - 2eme étape'
+- 'Initial D: Second Stage'
+- '头文字D第二部'
+- '頭文字[イニシャル]D Second Stage'
+https://www.youtube.com/watch?v=ymKNoTN3kZk:
+- 'Initial D Fourth Stage'
+- 'Initial D 4th Stage'
+- '頭文字〈イニシャル〉D FOURTH STAGE'
+https://www.youtube.com/watch?v=KwCfHVGamn8:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=Iv2AK8nFKBk:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=p56pg3EMJLE:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=4v0lSXBcJIU:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=0Zn8znVHq9I:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=9MI6oDpZ_qM:
+- 'InuYasha'
+- 'Inu Yasha'
+- '犬夜叉'
+https://www.youtube.com/watch?v=zL6lJ3cP6kw:
+- 'Sakurasou no Pet na Kanojo'
+- 'Sakura-sou no Pet na Kanojo'
+- 'The Pet Girl of Sakurasou'
+- 'さくら荘のペットな彼女'
+https://www.youtube.com/watch?v=N6AaSfL4yVk:
+- 'Sakurasou no Pet na Kanojo'
+- 'Sakura-sou no Pet na Kanojo'
+- 'The Pet Girl of Sakurasou'
+- 'さくら荘のペットな彼女'
+https://www.youtube.com/watch?v=4OxFSy8G5wk:
+- 'Trigun'
+- 'トライガン'
+https://www.youtube.com/watch?v=aVbjOmraAkI:
+- 'xxxHOLiC'
+- 'Holic TV'
+- 'XXX Holic'
+- 'xxxHolic'
+- 'xxxHolic - Die Serie'
+- 'xxxHolic - La série'
+- 'xxxHOLiC TV'
+- 'xxxГолік'
+- 'xxxโฮลิค'
+- 'XXXホリック'
+- 'Пристрастяване'
+- 'Триплексоголик'
+- 'холік'
+- 'โฮลิค'
+https://www.youtube.com/watch?v=BJnnMoFju1o:
+- 'xxxHOLiC Shunmuki'
+- 'shunmuki'
+- 'xxxHOLiC 春夢記'
+- 'Триплексоголик: Весенний сон'
+https://www.youtube.com/watch?v=lofnZX2GtAc:
+- 'Yahari Ore no Seishun LoveCome wa Machigatte Iru.'
+- 'My Teen Romantic Comedy SNAFU'
+- 'My Teen Romantic Comedy: SNAFU'
+- 'My Teenage RomCom SNAFU'
+- 'My Youth Romantic Comedy Is Wrong As I Expected.'
+- 'Oregairu'
+- 'Yahari Ore no Seishun Love Come wa Machigatteiru'
+- 'Yahari Ore no Seishun Love Comedy wa Machigatteiru'
+- 'Както си и мислех'
+- 'романтиката в училищния ми живот не се получи'
+- 'やはり俺の青春ラブコメはまちがっている.'
+- '我的青春恋爱喜剧果然有问题'
+- '果然我的青春戀愛喜劇搞錯了.'
+- '역시 내 청춘 러브코메디는 잘못됐다.'
+https://www.youtube.com/watch?v=QDezQD57h-g:
+- 'Cardcaptor Sakura'
+- 'Card Captor Sakura'
+- 'Card Captors'
+- 'Cardcaptors'
+- 'CCS'
+- 'CCS TV'
+- 'CCSTV'
+- 'Clow Master Sakura'
+- 'Pesca la tua carta Sakura'
+- 'Sakura , Stăpâna Cărţilor Magice'
+- 'Sakura Card Captor'
+- 'Sakura Card Captors'
+- 'Sakura, a Caçadora de Cartas'
+- 'Sakura, Cazadora de Cartas'
+- 'Sakura, chasseuse de cartes'
+- 'Sakura, la Caçadora de Cartes'
+- 'Thủ lĩnh thẻ bài'
+- 'Zdobywczyni kart Sakura'
+- 'Οι Περιπέτειες της Νίκης'
+- 'Ловец карт Сакура'
+- 'Сакура - мисливець за картами'
+- 'Сакура - собирательница карт'
+- 'סאקורה'
+- 'آسرة البطاقات ساكورا'
+- 'การ์ดแคปเตอร์ ซากุระ'
+- 'カードキャプターさくら'
+- '魔卡少女樱'
+- '카드캡터 사쿠라'
+- '카드캡터 체리'
+https://www.youtube.com/watch?v=-gY38_os5O0:
+- 'Cardcaptor Sakura'
+- 'Card Captor Sakura'
+- 'Card Captors'
+- 'Cardcaptors'
+- 'CCS'
+- 'CCS TV'
+- 'CCSTV'
+- 'Clow Master Sakura'
+- 'Pesca la tua carta Sakura'
+- 'Sakura , Stăpâna Cărţilor Magice'
+- 'Sakura Card Captor'
+- 'Sakura Card Captors'
+- 'Sakura, a Caçadora de Cartas'
+- 'Sakura, Cazadora de Cartas'
+- 'Sakura, chasseuse de cartes'
+- 'Sakura, la Caçadora de Cartes'
+- 'Thủ lĩnh thẻ bài'
+- 'Zdobywczyni kart Sakura'
+- 'Οι Περιπέτειες της Νίκης'
+- 'Ловец карт Сакура'
+- 'Сакура - мисливець за картами'
+- 'Сакура - собирательница карт'
+- 'סאקורה'
+- 'آسرة البطاقات ساكورا'
+- 'การ์ดแคปเตอร์ ซากุระ'
+- 'カードキャプターさくら'
+- '魔卡少女樱'
+- '카드캡터 사쿠라'
+- '카드캡터 체리'
+https://www.youtube.com/watch?v=9i1WqQEueUM:
+- 'Cardcaptor Sakura'
+- 'Card Captor Sakura'
+- 'Card Captors'
+- 'Cardcaptors'
+- 'CCS'
+- 'CCS TV'
+- 'CCSTV'
+- 'Clow Master Sakura'
+- 'Pesca la tua carta Sakura'
+- 'Sakura , Stăpâna Cărţilor Magice'
+- 'Sakura Card Captor'
+- 'Sakura Card Captors'
+- 'Sakura, a Caçadora de Cartas'
+- 'Sakura, Cazadora de Cartas'
+- 'Sakura, chasseuse de cartes'
+- 'Sakura, la Caçadora de Cartes'
+- 'Thủ lĩnh thẻ bài'
+- 'Zdobywczyni kart Sakura'
+- 'Οι Περιπέτειες της Νίκης'
+- 'Ловец карт Сакура'
+- 'Сакура - мисливець за картами'
+- 'Сакура - собирательница карт'
+- 'סאקורה'
+- 'آسرة البطاقات ساكورا'
+- 'การ์ดแคปเตอร์ ซากุระ'
+- 'カードキャプターさくら'
+- '魔卡少女樱'
+- '카드캡터 사쿠라'
+- '카드캡터 체리'
+https://www.youtube.com/watch?v=sbwT8yJjtUQ:
+- 'Cardcaptor Sakura: Clear Card Hen'
+- 'Cardcaptor Sakura Clear Card'
+- 'Cardcaptor Sakura: Clear Card'
+- 'CCS2'
+- 'カードキャプターさくら クリアカード編'
+- '카드 캡터 사쿠라 클리어 카드 편'
+https://www.youtube.com/watch?v=-hA4na_3jT0:
+- 'Angel Beats!'
+- 'AB!'
+- 'Angel Beats'
+- 'Angelo širdies dūžiai'
+- 'Eņģeļa Pulss'
+- 'Ангельские ритмы!'
+- 'Пульс ангела!'
+- 'แองเจิลบีทส์ แผนพิชิตนางฟ้า'
+- 'エンジェル ビーツ!'
+- '天使的心跳'
+- '天使的脉动'
+- '엔젤비츠!'
+- '엔젤비트!'
+https://www.youtube.com/watch?v=uMsOlhzPEfY:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=IDmINk_SGB0:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=S1t70AiH4CA:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=ORe7gt-mY14:
+- 'Fullmetal Alchemist'
+- 'FMA'
+- 'Full Metal Alchemist'
+- 'Fullmetal Alchemist (2003)'
+- 'Hagane no Renkinjutsushi'
+- 'HagaRen'
+- '鋼の錬金術師'
+https://www.youtube.com/watch?v=IZzSxLdLVp4:
+- 'Space Dandy'
+- 'Космический Денди'
+- 'Космическото Конте'
+- 'Космо Денді'
+- 'スペース☆ダンディ'
+- '宇宙浪子'
+https://www.youtube.com/watch?v=i-ZwhxaOQJk:
+- 'Working!!'
+- 'Muncind'
+- 'Wagnaria!!'
+- 'working'
+- 'WORKING!!'
+- 'Работа`!!'
+- 'Работаю!!'
+- '迷糊餐厅'
+https://www.youtube.com/watch?v=s9Z9Ysc31AE:
+- 'Working!!'
+- 'Muncind'
+- 'Wagnaria!!'
+- 'working'
+- 'WORKING!!'
+- 'Работа`!!'
+- 'Работаю!!'
+- '迷糊餐厅'
+https://www.youtube.com/watch?v=fvxX3gYfYqc:
+- 'Working!!'
+- 'Muncind'
+- 'Wagnaria!!'
+- 'working'
+- 'WORKING!!'
+- 'Работа`!!'
+- 'Работаю!!'
+- '迷糊餐厅'
+https://www.youtube.com/watch?v=WNt8zC9zjEk:
+- 'Durarara!!'
+- 'Dhurarara!!'
+- 'drrr'
+- 'Drrr!!'
+- 'drrr1'
+- 'Dulalala!!'
+- 'Dullalala'
+- 'Dullalala!!'
+- 'Durarara'
+- 'Dyurarara!!'
+- 'Дурарара!!'
+- 'Дюрарара!!'
+- 'デュラララ!!'
+- '无头骑士异闻录'
+- '无头骑士异闻录 DuRaRaRa!!'
+- '無頭騎士異聞錄'
+- '無頭騎士異聞錄 DuRaRaRa!!'
+- '듀라라라!!'
+https://www.youtube.com/watch?v=RQOc_07raNE:
+- 'Durarara!!'
+- 'Dhurarara!!'
+- 'drrr'
+- 'Drrr!!'
+- 'drrr1'
+- 'Dulalala!!'
+- 'Dullalala'
+- 'Dullalala!!'
+- 'Durarara'
+- 'Dyurarara!!'
+- 'Дурарара!!'
+- 'Дюрарара!!'
+- 'デュラララ!!'
+- '无头骑士异闻录'
+- '无头骑士异闻录 DuRaRaRa!!'
+- '無頭騎士異聞錄'
+- '無頭騎士異聞錄 DuRaRaRa!!'
+- '듀라라라!!'
+https://www.youtube.com/watch?v=wdSXq3PS1nc:
+- 'Durarara!!'
+- 'Dhurarara!!'
+- 'drrr'
+- 'Drrr!!'
+- 'drrr1'
+- 'Dulalala!!'
+- 'Dullalala'
+- 'Dullalala!!'
+- 'Durarara'
+- 'Dyurarara!!'
+- 'Дурарара!!'
+- 'Дюрарара!!'
+- 'デュラララ!!'
+- '无头骑士异闻录'
+- '无头骑士异闻录 DuRaRaRa!!'
+- '無頭騎士異聞錄'
+- '無頭騎士異聞錄 DuRaRaRa!!'
+- '듀라라라!!'
+https://www.youtube.com/watch?v=kuj4d1TWesQ:
+- 'Nanatsu no Taizai'
+- 'I Sette Peccati Capitali'
+- 'Seven Deadly Sins'
+- 'The Seven Deadly Sins'
+- 'Yedi Ölümcül Günah'
+- 'Седемте смъртни гряха'
+- 'Семь Смертных Грехов'
+- 'الخطايا السبع المميتة'
+- '七つの大罪'
+- '七つの大罪 The Seven Deadly Sins'
+https://www.youtube.com/watch?v=WK-EUELKb9A:
+- 'Nanatsu no Taizai'
+- 'I Sette Peccati Capitali'
+- 'Seven Deadly Sins'
+- 'The Seven Deadly Sins'
+- 'Yedi Ölümcül Günah'
+- 'Седемте смъртни гряха'
+- 'Семь Смертных Грехов'
+- 'الخطايا السبع المميتة'
+- '七つの大罪'
+- '七つの大罪 The Seven Deadly Sins'
+https://www.youtube.com/watch?v=ijpGNlWDG5k:
+- 'Non Non Biyori'
+- 'のんのんびより'
+https://www.youtube.com/watch?v=9Z5GDLMYwgc:
+- 'Non Non Biyori'
+- 'のんのんびより'
+https://www.youtube.com/watch?v=dWfxcRj39tg:
+- 'Black Lagoon'
+- 'BL'
+- 'BL1'
+- 'BLACK LAGOON'
+- 'Black Lagoon 1'
+- 'Black Lagoon 1st Season'
+- 'Black Lagoon First Season'
+- 'Juodoji Lagūna'
+- 'Kara Lagün'
+- 'Laguna Neagră'
+- 'Melnā Lagūna'
+- 'Пираты "Чёрной лагуны"'
+- 'Пірати «Чорної Лагуни»'
+- 'Черната Лагуна'
+- 'Чорна лагуна'
+- 'Чёрная лагуна'
+- 'مرداب سیاه'
+- 'จารชนพันธุ์เถื่อน'
+- 'ブラック・ラグーン'
+- '企業傭兵'
+- '黑礁'
+- '블랙 라군'
+https://www.youtube.com/watch?v=ucOVnaqdLbA:
+- 'Detective Conan'
+- 'Case Closed'
+- 'Detectiu Conan'
+- 'Meitantei Conan'
+- '名探偵コナン'
+https://www.youtube.com/watch?v=UjjTMNDZi-A:
+- 'Death Parade'
+- 'デス・パレード'
+https://www.youtube.com/watch?v=QisptZEIPTA:
+- 'Mahou Shoujo Lyrical Nanoha StrikerS'
+- 'Garota Mágica Lírica Nanoha StrikerS'
+- 'Magical Girl Lyrical Nanoha StrikerS'
+- 'mglnss'
+- 'mslns'
+- 'mslnss'
+- 'Nanoha Season 3'
+- 'nanoha strikers'
+- 'nanoha3'
+- 'NanohaSS'
+- 'StrikerS'
+- '魔法少女リリカルなのはStrikerS'
+- '魔法少女奈叶SS'
+- '魔法少女奈叶StrikerS'
+https://www.youtube.com/watch?v=bmLVLG9yraY:
+- 'Mahou Shoujo Lyrical Nanoha ViVid'
+- 'Magical Girl Lyrical Nanoha ViVid'
+- 'Magical Girl Lyrical Nanoha Vivid'
+- 'Mahou Shoujo Lyrical Nanoha Vivid'
+- 'Nanoha ViVid'
+- '魔法少女リリカルなのは ViVid'
+- '魔法少女リリカルなのはViVid'
+https://www.youtube.com/watch?v=xX6R_TTnPEA:
+- 'Asobi Asobase'
+- 'Asobi Asobase -workshop of fun-'
+- 'Asobi Asobase: Workshop Of Fun'
+- 'あそびあそばせ'
+https://www.youtube.com/watch?v=b1XKAjzLxZo:
+- 'Maison Ikkoku'
+- 'Cara Dolce Kyoko'
+- 'Ikkoku House'
+- 'je t`aime'
+- 'Juliette'
+- 'Juliette, je t`aime'
+- 'Maison Ikkoku TV'
+- 'MI'
+- 'Доходный дом Иккоку'
+- 'مايسن إيكّوكو'
+- 'めぞん一刻'
+- '相聚一刻'
+https://www.youtube.com/watch?v=TH_572d1XA4:
+- 'Maison Ikkoku'
+- 'Cara Dolce Kyoko'
+- 'Ikkoku House'
+- 'je t`aime'
+- 'Juliette'
+- 'Juliette, je t`aime'
+- 'Maison Ikkoku TV'
+- 'MI'
+- 'Доходный дом Иккоку'
+- 'مايسن إيكّوكو'
+- 'めぞん一刻'
+- '相聚一刻'
+https://www.youtube.com/watch?v=KuZbmLLv1vM:
+- 'Mahoutsukai no Yome'
+- 'Die Braut des Magiers'
+- 'Mahou Tsukai no Yome'
+- 'Mahoyome'
+- 'The Ancient Magus Bride'
+- 'The Ancient Magus'' Bride'
+- 'The Ancient Magus` Bride'
+- 'Жената на магьосника'
+- 'عروس المشعوذ القديم'
+- '魔法使いの嫁'
+- '魔法使的新娘'
+- '마법사의 신부'
+https://www.youtube.com/watch?v=eke8NcZSE30:
+- 'Mahoutsukai no Yome'
+- 'Maho Yome'
+- 'Mahou Tsukai no Yome'
+- 'MahoYome'
+- 'The Ancient Magus'' Bride'
+- 'The Magician''s Bride'
+- 'まほよめ'
+- '魔法使いの嫁'
+https://www.youtube.com/watch?v=GtYClR8rmZk:
+- 'Saint Seiya'
+- 'Knights of the Zodiac'
+- 'Saint Seiya: Knights of the Zodiac'
+- 'Zodiac Knights'
+- '聖闘士星矢(セイントセイヤ)'
+https://www.youtube.com/watch?v=djM2Ic7zCNs:
+- 'Saint Seiya'
+- 'Knights of the Zodiac'
+- 'Saint Seiya: Knights of the Zodiac'
+- 'Zodiac Knights'
+- '聖闘士星矢(セイントセイヤ)'
+https://www.youtube.com/watch?v=fgM1whMyww4:
+- 'Saint Seiya: Meiou Hades Juuni Kyuu Hen'
+- 'Les Chevaliers du Zodiaque - Chapitre Hadès - Le Sanctuaire'
+- 'Los Caballeros del Zodiaco - Saga de Hades - Santuario'
+- 'Os Cavaleiros do Zodíaco - Hades: A Saga do Santuário'
+- 'Saint Seiya Hades'
+- 'Saint Seiya: The Hades Chapter - Sanctuary'
+- 'Saint Seiya: The Hades Sanctuary Chapter'
+- 'ssh'
+- '圣斗士星矢 冥王十二宫篇'
+- '聖闘士星矢 冥王ハーデス十二宮編'
+https://www.youtube.com/watch?v=wvgh8KB8xCs:
+- 'Saint Seiya: Saintia Shou'
+- 'Aziz Seiya: Azize Shou'
+- 'Saint Seiya Saintia Sho'
+- 'Saint Seiya: Saintia Sho'
+- '圣斗士星矢 圣斗少女翔'
+- '聖闘士星矢 Saintia翔'
+- '聖闘士星矢 セインティア翔'
+- '聖鬥士星矢 聖鬥少女翔'
+https://www.youtube.com/watch?v=_1JvxrSlDRc:
+- 'Saint Seiya Omega'
+- 'sso'
+- '聖闘士星矢Ω[セイントセイヤオメガ]'
+https://www.youtube.com/watch?v=ufd4wOj2fD8:
+- 'Princess Tutu'
+- 'プリンセスチュチュ'
+https://www.youtube.com/watch?v=HL25C0H9vVw:
+- 'Shoujo Kakumei Utena'
+- 'La rivoluzione di Utena'
+- 'Revolutionary Girl Utena'
+- 'Revolutionary Girl Utena TV'
+- 'Rewolucjonistka Utena'
+- 'rgu'
+- 'Shoujo Kakumei Utena TV'
+- 'sku'
+- 'Utena'
+- 'Utena - La fillette révolutionnaire'
+- 'Utena la fillette révolutionnaire'
+- 'Utena TV'
+- 'Юная революционерка Утэна'
+- '少女革命'
+- '少女革命ウテナ'
+https://www.youtube.com/watch?v=u67olZLcDPc:
+- 'Tensei Shitara Slime Datta Ken'
+- 'TenSura'
+- 'That Time I Got Reincarnated as a Slime'
+- '転スラ'
+- '転生したらスライムだった件'
+https://www.youtube.com/watch?v=yfpINN7bkj4:
+- 'Tensei Shitara Slime Datta Ken'
+- 'TenSura'
+- 'That Time I Got Reincarnated as a Slime'
+- '転スラ'
+- '転生したらスライムだった件'
+https://www.youtube.com/watch?v=yOgHsrsrf34:
+- 'Yowamushi Pedal'
+- 'Yowapeda'
+- '弱虫ペダル'
+https://www.youtube.com/watch?v=BeRRtuYGzSE:
+- 'Yowamushi Pedal'
+- 'Yowapeda'
+- '弱虫ペダル'
+https://www.youtube.com/watch?v=CIxJNi8MtaU:
+- 'Yowamushi Pedal'
+- 'Yowapeda'
+- '弱虫ペダル'
+https://www.youtube.com/watch?v=Im6-iZGmgsA:
+- 'Gankutsuou'
+- 'Cavern King'
+- 'Contele de Monte Cristo'
+- 'Count of Monte Cristo'
+- 'El Conde de Monte Cristo'
+- 'gank'
+- 'Gank-Ou'
+- 'Ganku-Ou'
+- 'Gankut-Ou'
+- 'Gankutsu Ou'
+- 'Gankutsuou - Le comte de Monte-Cristo'
+- 'Gankutsuou De Monte Cristo'
+- 'Gankutsuou: Hrabia Monte Christo'
+- 'Gankutsuou: The Count of Monte Cristo'
+- 'Grafas Montekristas'
+- 'Greven af Monte Christo'
+- 'Greven af Monte-Cristo'
+- 'Hrabia Monte Christo'
+- 'Hrabě Monte Christo'
+- 'Il conte di Montecristo'
+- 'King of the Cave'
+- 'Le comte de Monte-Cristo'
+- 'Lord of the Cave'
+- 'Monte Cristo'
+- 'Monte Cristo grófja'
+- 'Monte Kristo Kontu'
+- 'MonteCristo'
+- 'O Conde de Monte Cristo'
+- 'The Count'
+- 'The Count of Monte Cristo'
+- 'The Count of Monte Cristo: Gankutsuou'
+- 'Zemsta hrabiego Monte Cristo'
+- 'Граф Монте-Кристо'
+- 'مونت كريستو'
+- 'کونت مونت کریستو'
+- '巌窟王'
+- '암굴왕'
+https://www.youtube.com/watch?v=_1h4mQAEWI8:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=3qpBFlASUK4:
+- 'Nagi no Asukara'
+- 'A Lull in the Sea'
+- 'Earth color of a calm'
+- 'Nagi-Asu: A Lull in the Sea'
+- 'nagiasu'
+- '來自風平浪靜的明日'
+- '凪のあすから'
+- '来自风平浪静的明天'
+https://www.youtube.com/watch?v=1ODMew2vLfE:
+- 'Nagi no Asukara'
+- 'A Lull in the Sea'
+- 'Earth color of a calm'
+- 'Nagi-Asu: A Lull in the Sea'
+- 'nagiasu'
+- '來自風平浪靜的明日'
+- '凪のあすから'
+- '来自风平浪静的明天'
+https://www.youtube.com/watch?v=Y8SwZJAUiW4:
+- 'Nisemonogatari'
+- 'Fake Tale'
+- 'Impostory'
+- '偽物語'
+https://www.youtube.com/watch?v=xjBTNbEXbAA:
+- 'Naruto'
+- 'Narutas'
+- 'NARUTO'
+- 'Naruto TV'
+- 'NARUTO 少年篇'
+- 'Naruto: Shounen Hen'
+- 'NTV'
+- 'Phénomène Naruto'
+- 'Наруто'
+- 'נארוטו'
+- 'ناروتو'
+- 'ناروٹو'
+- 'நருடோ'
+- 'ナルト'
+- 'ナルト 少年篇'
+- '火影忍者'
+- '나루토'
+https://www.youtube.com/watch?v=wCI9SuOT6qk:
+- 'Naruto'
+- 'Narutas'
+- 'NARUTO'
+- 'Naruto TV'
+- 'NARUTO 少年篇'
+- 'Naruto: Shounen Hen'
+- 'NTV'
+- 'Phénomène Naruto'
+- 'Наруто'
+- 'נארוטו'
+- 'ناروتو'
+- 'ناروٹو'
+- 'நருடோ'
+- 'ナルト'
+- 'ナルト 少年篇'
+- '火影忍者'
+- '나루토'
+https://www.youtube.com/watch?v=pY15k20Hqq0:
+- 'Naruto'
+- 'Narutas'
+- 'NARUTO'
+- 'Naruto TV'
+- 'NARUTO 少年篇'
+- 'Naruto: Shounen Hen'
+- 'NTV'
+- 'Phénomène Naruto'
+- 'Наруто'
+- 'נארוטו'
+- 'ناروتو'
+- 'ناروٹو'
+- 'நருடோ'
+- 'ナルト'
+- 'ナルト 少年篇'
+- '火影忍者'
+- '나루토'
+https://www.youtube.com/watch?v=A6b11LTIAkc:
+- 'Naruto'
+- 'Narutas'
+- 'NARUTO'
+- 'Naruto TV'
+- 'NARUTO 少年篇'
+- 'Naruto: Shounen Hen'
+- 'NTV'
+- 'Phénomène Naruto'
+- 'Наруто'
+- 'נארוטו'
+- 'ناروتو'
+- 'ناروٹو'
+- 'நருடோ'
+- 'ナルト'
+- 'ナルト 少年篇'
+- '火影忍者'
+- '나루토'
+https://www.youtube.com/watch?v=YsWTD6Pk-S8:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=eWNNjIIq4TA:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=aJRu5ltxXjc:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=kmL3EuiiWXM:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=H3aqR_n3sM4:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=XNGLHlNndkI:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=lGTp4VogNaQ:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=L2ncHzfts_0:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=UwV0opF9ttM:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=yu12tTrkJ-g:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=BEW8Ru7Hjdc:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=gFT7G2zLUbE:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=7oTfYnq0yQA:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=rxi1eHkF0cQ:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=tUL1we0oqPc:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=otxA7fpPMPc:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=mdqE5RZqXVg:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=12wou9u-S5Y:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=d08dw3ztKZw:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=OLpBmcUrvZ8:
+- 'Naruto Shippuuden'
+- 'n2'
+- 'n2tv'
+- 'Naruto 2'
+- 'Naruto Kronika Hurikánu'
+- 'Naruto Shippuden'
+- 'Naruto Shippuuden TV'
+- 'NARUTO Shippuuden TV'
+- 'Naruto Shippūden'
+- 'NARUTO 疾風伝'
+- 'Naruto: Hurricane Chronicles'
+- 'Naruto: Kasırga Günlükleri'
+- 'nstv'
+- 'ntv2'
+- 'Shippuuden'
+- 'Наруто Хроники'
+- 'Наруто Шиппүүдэн'
+- 'Наруто: Ураганни хроники'
+- 'Наруто: Ураганные хроники'
+- 'נארוטו: מסעות ההוריקן'
+- 'ناروتو شيبودن : أكادمية كونوها الخاصة'
+- 'ناروتو شیپودن'
+- 'ناروتو: أسطورة الزوبعة'
+- 'নারূতঃ সিপ্পুডেন'
+- 'นารูโตะ ตำนานวายุสลาตัน'
+- 'ナルト 疾風伝'
+- '火影忍者疾風傳'
+- '火影忍者疾风传'
+https://www.youtube.com/watch?v=HuPzRFpj6tE:
+- 'Shijou Saikyou no Deshi Kenichi'
+- 'History''s Strongest Disciple Kenichi'
+- 'KenIchi: The Mightiest Disciple'
+- '史上最強の弟子 ケンイチ'
+https://www.youtube.com/watch?v=Tt_gYZI6n_M:
+- 'Shijou Saikyou no Deshi Ken`ichi'
+- 'el Discípulo Más Fuerte de la Historia.'
+- 'History`s Strongest Disciple Kenichi'
+- 'HSD Kenichi'
+- 'HSDK'
+- 'Ken`ichi'
+- 'Kenichi'
+- 'Kenichi: The Mightiest Disciple'
+- 'o discípulo mais forte da História'
+- 'Най-силният ученик в историята Кеничи'
+- 'Сильнейший в истории ученик Кэнъити'
+- '史上最強の弟子 ケンイチ'
+- '史上最强弟子兼一'
+https://www.youtube.com/watch?v=jZvFEtR8RH0:
+- 'Tate no Yuusha no Nariagari'
+- 'The Rising of the Shield Hero'
+- '盾の勇者の成り上がり'
+https://www.youtube.com/watch?v=HutPrLMPWw0:
+- 'Tate no Yuusha no Nariagari'
+- 'The Rising of the Shield Hero'
+- '盾の勇者の成り上がり'
+https://www.youtube.com/watch?v=379VTZNVbKg:
+- 'Darker than Black: Kuro no Keiyakusha'
+- 'Darker than Black'
+- 'Darker than BLACK -黒の契約者-'
+- 'Darker than BLACK: Kuro no Keiyakusha'
+- 'DTB'
+https://www.youtube.com/watch?v=S-PjhOWhx3Q:
+- 'Darker than Black: Kuro no Keiyakusha'
+- 'Darker than Black'
+- 'Darker than BLACK -黒の契約者-'
+- 'Darker than BLACK: Kuro no Keiyakusha'
+- 'DTB'
+https://www.youtube.com/watch?v=Tu-WyAn1zWg:
+- 'Darker than Black: Kuro no Keiyakusha'
+- 'Darker than Black'
+- 'Darker than BLACK -黒の契約者-'
+- 'Darker than BLACK: Kuro no Keiyakusha'
+- 'DTB'
+https://www.youtube.com/watch?v=vRVEZq8plc0:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=lrnD7R9ohRs:
+- 'Uchouten Kazoku'
+- 'La famille excentrique'
+- 'The Eccentric Family'
+- 'Uchoten Kazoku'
+- '有頂天家族'
+https://www.youtube.com/watch?v=AJpIJ6hbYco:
+- 'Uchouten Kazoku'
+- 'La famille excentrique'
+- 'The Eccentric Family'
+- 'Uchoten Kazoku'
+- '有頂天家族'
+https://www.youtube.com/watch?v=qL5x6JuaeHw:
+- 'Kaichou wa Maid-sama!'
+- 'Class President is a Maid!'
+- 'Kaichou wa Maid-sama'
+- 'kaichou wa maidsama'
+- 'KaichouMaid'
+- 'KwMs'
+- 'Maid Sama!'
+- 'Maid-sama'
+- 'Maidsama'
+- 'Przewodnicząca jest Pokojówką!'
+- 'Służąca Przewodnicząca'
+- 'Şefa clasei e servitoare.'
+- 'Президент - горничная!'
+- 'Президент студенческого совета - горничная!'
+- 'Президент студради - покоївка'
+- 'Училищната президентка е прислужничка!'
+- 'نماینده مدرسه پیشخدمته!'
+- '会長はメイド様!'
+- '会长是女仆大人'
+https://www.youtube.com/watch?v=8muiDhiRb_M:
+- 'Kami nomi zo Shiru Sekai'
+- 'Kaminomi'
+- 'The World God Only Knows'
+- '神のみぞ知るセカイ'
+https://www.youtube.com/watch?v=ci3A3OmNHko:
+- 'Kill la Kill'
+- 'Dressed to Kill'
+- 'KILL la KILL'
+- 'Kiru ra Kiru'
+- 'KLK'
+- 'キルラキル'
+https://www.youtube.com/watch?v=qaLeO-2Fytg:
+- 'Kill la Kill'
+- 'Dressed to Kill'
+- 'KILL la KILL'
+- 'Kiru ra Kiru'
+- 'KLK'
+- 'キルラキル'
+https://www.youtube.com/watch?v=MdvcITUrVbI:
+- 'Sekaiichi Hatsukoi'
+- 'Sekai Ichi Hatsukoi - World''s Greatest First Love'
+- 'Sekai''ichi Hatsukoi'
+- 'Sekai-ichi Hatsukoi'
+- 'World''s Greatest First Love'
+- '世界一初恋 TV'
+https://www.youtube.com/watch?v=g1ARRcK4LVs:
+- 'Zankyou no Terror'
+- 'Terror in Resonance'
+- 'Terror in Tokyo'
+- 'Terror of Resonance'
+- '残響のテロル'
+https://www.youtube.com/watch?v=BILJVT9QN9o:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=AJwoiL0K768:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=rZSZfeaAJsc:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=ZTxmeLxWvTk:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=A16UqwmSt7c:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=aqRuzjIBkxY:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=WKAwCfn6RhU:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=yFETB_ukhTk:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=b36-p0UryRw:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=e-7uuV7B7mo:
+- 'Fairy Tail'
+- 'FAIRY TAIL'
+- 'Fairy Tail TV'
+- 'Fairytail'
+- 'FT'
+- 'Pasaka'
+- 'Peri Kuyruğu'
+- 'Приказна история'
+- 'Сказка о хвосте феи'
+- 'Хвост феи'
+- 'פיירי טייל'
+- 'دم فرشته'
+- 'فيري تيل'
+- 'فيری تيل'
+- 'フェアリーテイル'
+- '妖精的尾巴'
+https://www.youtube.com/watch?v=QahFijEd3hY:
+- 'Golden Kamuy'
+- 'ゴールデンカムイ'
+https://www.youtube.com/watch?v=uEL-RZ5PKgQ:
+- 'Golden Kamuy'
+- 'ゴールデンカムイ'
+https://www.youtube.com/watch?v=iOrkj_MFXm8:
+- 'Gosick'
+- 'Goshiku'
+- 'GOSICK'
+- 'Госик'
+- 'Готика'
+- 'Готически свят'
+https://www.youtube.com/watch?v=bAlS6eJveuo:
+- 'Glass no Kamen'
+- 'Glass Mask'
+- 'Il grande sogno di Maya'
+- 'Laura ou la passion du théâtre'
+- 'Mask of Glass'
+- 'ガラスの仮面'
+https://www.youtube.com/watch?v=UwBTjSMCUYo:
+- 'Hikaru no Go'
+- 'HikaGo'
+- 'HnG'
+- 'Хикару и Го'
+- 'היקארו נו גו'
+- 'ฮิคารุ เซียนโกะ'
+- 'ヒカルの碁'
+- '棋魂'
+https://www.youtube.com/watch?v=XVfR-fmh1qE:
+- 'Hikaru no Go'
+- 'HikaGo'
+- 'HnG'
+- 'Хикару и Го'
+- 'היקארו נו גו'
+- 'ฮิคารุ เซียนโกะ'
+- 'ヒカルの碁'
+- '棋魂'
+https://www.youtube.com/watch?v=FbfbYywSBB8:
+- 'Hikaru no Go'
+- 'HikaGo'
+- 'HnG'
+- 'Хикару и Го'
+- 'היקארו נו גו'
+- 'ฮิคารุ เซียนโกะ'
+- 'ヒカルの碁'
+- '棋魂'
+https://www.youtube.com/watch?v=6DsK5x9Itss:
+- 'Yuusha-Ou GaoGaiGar Final'
+- 'Brave King GaoGaiGar Final'
+- 'GaoGaiGar Final'
+- 'King of Braves GaoGaiGar Final'
+- 'Yuusha Ou GaoGaiGar Final'
+- 'Yuusha-Oh GaoGaiGar Final'
+- '勇者王ガオガイガーFINAL'
+https://www.youtube.com/watch?v=Msuu3b-L-2k:
+- 'Hyouka'
+- 'Hyoka'
+- 'Hyou-ka'
+- 'Hyou-ka: You can''t escape'
+- 'Hyou-ka: You Can`t Escape'
+- 'Hyouka: Forbidden Secrets'
+- 'Hyouka: You can''t escape'
+- 'I scream'
+- 'Ice-cream'
+- 'The Niece of Time'
+- 'Хьёка'
+- 'هیوکا'
+- 'ปริศนาความทรงจำ'
+- '冰果'
+- '冰菓'
+- '氷菓'
+- '빙과'
+https://www.youtube.com/watch?v=aa_rX6J2fuQ:
+- 'Hyouka'
+- 'Hyoka'
+- 'Hyou-ka'
+- 'Hyou-ka: You can''t escape'
+- 'Hyou-ka: You Can`t Escape'
+- 'Hyouka: Forbidden Secrets'
+- 'Hyouka: You can''t escape'
+- 'I scream'
+- 'Ice-cream'
+- 'The Niece of Time'
+- 'Хьёка'
+- 'هیوکا'
+- 'ปริศนาความทรงจำ'
+- '冰果'
+- '冰菓'
+- '氷菓'
+- '빙과'
+https://www.youtube.com/watch?v=M8zyki0Si6A:
+- 'Lovely Complex'
+- 'Bezvadná dvojka'
+- 'LC'
+- 'LoveCom'
+- 'Lovely★Complex'
+- 'Uroczy związek'
+- 'Комплекс кохання'
+- 'Любовен Комплекс'
+- 'Трогательный комплекс'
+- 'ラブ★コン'
+- '恋爱方程式'
+https://www.youtube.com/watch?v=KM9ZF9nvlBc:
+- 'Lovely Complex'
+- 'Bezvadná dvojka'
+- 'LC'
+- 'LoveCom'
+- 'Lovely★Complex'
+- 'Uroczy związek'
+- 'Комплекс кохання'
+- 'Любовен Комплекс'
+- 'Трогательный комплекс'
+- 'ラブ★コン'
+- '恋爱方程式'
+https://www.youtube.com/watch?v=KOWcj7XKnfQ:
+- 'Overlord'
+- 'Over Lord'
+- 'OVERLORD'
+- 'Владетелят'
+- 'Повелитель'
+- 'اوفرلورد'
+- 'オーバーロード'
+- '오버로드'
+https://www.youtube.com/watch?v=lfpyJUnwW0w:
+- 'Overlord II'
+- 'Over Lord 2'
+- 'オーバーロードⅡ'
+https://www.youtube.com/watch?v=S9yfM5OrpKU:
+- 'Overlord'
+- 'Over Lord'
+- 'OVERLORD'
+- 'Владетелят'
+- 'Повелитель'
+- 'اوفرلورد'
+- 'オーバーロード'
+- '오버로드'
+https://www.youtube.com/watch?v=C_68r0xJhX0:
+- 'Saiunkoku Monogatari'
+- 'CcP'
+- 'Colorcloud Palace'
+- 'ColourCloud Palace'
+- 'Colourcloud Palace'
+- 'Kokumono'
+- 'Saimono'
+- 'saimono'
+- 'Saiun'
+- 'Story of the Land of Many-Colored Clouds'
+- 'Tale of Saiunkoku'
+- 'Tales of Saiunkoku'
+- 'The Story of Saiunkoku'
+- 'The Tale of Saiun Country'
+- 'The Tale of the Luminous Cloud Palace'
+- 'ToS'
+- 'Приказка за страната на многоцветните облаци'
+- '彩云国物语'
+- '彩雲国物語'
+https://www.youtube.com/watch?v=erh6DUUXsjA:
+- 'Kodomo no Omocha'
+- 'Child''s Toy'
+- 'Kodocha'
+- 'こどものおもちゃ'
+https://www.youtube.com/watch?v=8Ez0zrDxwkY:
+- 'Kodomo no Omocha'
+- 'Child''s Toy'
+- 'Kodocha'
+- 'こどものおもちゃ'
+https://www.youtube.com/watch?v=Da3JfD4CDnY:
+- 'Koukyou Shihen Eureka Seven'
+- 'Eureka 7'
+- 'Eureka Seven'
+- 'Eureka Seven Psalms of Planets'
+- '交響詩篇エウレカセブン'
+https://www.youtube.com/watch?v=3QKeYCLoYgg:
+- 'Koukyou Shihen Eureka Seven'
+- 'Eureka 7'
+- 'Eureka Seven'
+- 'Eureka Seven Psalms of Planets'
+- '交響詩篇エウレカセブン'
+https://www.youtube.com/watch?v=Tg7EQpMMUq0:
+- 'Koukyou Shihen Eureka Seven'
+- 'Eureka 7'
+- 'Eureka Seven'
+- 'Eureka Seven Psalms of Planets'
+- '交響詩篇エウレカセブン'
+https://www.youtube.com/watch?v=935szsi41Vo:
+- 'Koukyou Shihen Eureka Seven'
+- 'Eureka 7'
+- 'Eureka Seven'
+- 'Eureka Seven Psalms of Planets'
+- '交響詩篇エウレカセブン'
+https://www.youtube.com/watch?v=aeegEiFWCmM:
+- 'Eureka Seven AO'
+- 'Eureka 7 AO'
+- 'Eureka Seven Astral Ocean'
+- 'エウレカセブンAO'
+https://www.youtube.com/watch?v=iSGCKUU044A:
+- 'D.Gray-man'
+- 'D.G'
+- 'D.Gray-Man'
+- 'D.格雷少年'
+- 'DGM'
+- 'dgrayman'
+- 'Grayman'
+- 'O Homen Cinza'
+- 'Ди Грей Мен'
+- 'Сивият'
+- 'دي. جراي مان'
+- 'ดีเกรย์แมน'
+- 'ディー・グレイマン'
+- '驅魔少年'
+- '디그레이맨'
+https://www.youtube.com/watch?v=zK-EVhaeB48:
+- 'D.Gray-man'
+- 'D.G'
+- 'D.Gray-Man'
+- 'D.格雷少年'
+- 'DGM'
+- 'dgrayman'
+- 'Grayman'
+- 'O Homen Cinza'
+- 'Ди Грей Мен'
+- 'Сивият'
+- 'دي. جراي مان'
+- 'ดีเกรย์แมน'
+- 'ディー・グレイマン'
+- '驅魔少年'
+- '디그레이맨'
+https://www.youtube.com/watch?v=AVo2xm89Suw:
+- 'D.Gray-man'
+- 'D.G'
+- 'D.Gray-Man'
+- 'D.格雷少年'
+- 'DGM'
+- 'dgrayman'
+- 'Grayman'
+- 'O Homen Cinza'
+- 'Ди Грей Мен'
+- 'Сивият'
+- 'دي. جراي مان'
+- 'ดีเกรย์แมน'
+- 'ディー・グレイマン'
+- '驅魔少年'
+- '디그레이맨'
+https://www.youtube.com/watch?v=ZK05OU05Zig:
+- 'Fullmetal Panic!'
+- '!פול מטאל פאניק'
+- 'FMP'
+- 'FMP!'
+- 'FMP1'
+- 'Full Metal Panic'
+- 'Full Metal Panic!'
+- 'Металева тривога'
+- 'Металлобоязнь'
+- 'Пълна метална паника!'
+- 'Сталева тривога!'
+- 'Стальная тревога'
+- 'ฟูลเมทัล แพนิค!'
+- 'フルメタル・パニック!'
+- '全金属狂潮'
+- '全金属狂潮2 校园篇'
+- '풀 메탈 패닉!'
+https://www.youtube.com/watch?v=Q82FOFotCyg:
+- 'Full Metal Panic? Fumoffu'
+- 'Full Metal Panic Fumoffu'
+- 'Fullmetal Panic? Fumoffu'
+- 'フルメタル・パニック? ふもっふ'
+https://www.youtube.com/watch?v=VD1WMzMlBQo:
+- 'Dennou Coil'
+- 'Coil - A Circle of Children'
+- 'Cyber Coil'
+- 'Cyberkrąg'
+- 'Den-noh Coil'
+- 'DenCo'
+- 'Denno Coil'
+- 'Dennō Coil'
+- 'Виртуален шум'
+- 'Кибер-виток'
+- 'ذغال الکترونیکی'
+- 'سایبر کویل'
+- '电脑线圈'
+- '電脳コイル'
+https://www.youtube.com/watch?v=VUxx7iCSekQ:
+- 'Hidamari Sketch'
+- 'ひだまりスケッチ'
+https://www.youtube.com/watch?v=mPwHWmyIhws:
+- 'Hidamari Sketch x Honeycomb'
+- 'Hidamari Sketch 4th Season'
+- 'Hidamari Sketch Dai Yon Ki'
+- 'Hidamari Sketch Fourth Series'
+- 'Hidamari Sketch x Hanikamu'
+- 'Hidamari Sketch: xHoneycomb'
+- 'ひだまりスケッチ×ハニカム'
+https://www.youtube.com/watch?v=YKnDzLHZHkU:
+- 'Akagami no Shirayuki-hime'
+- 'Akagami no Shirayukihime'
+- 'Die rothaarige Schneeprinzessin'
+- 'Shirayuki aux cheveux rouges'
+- 'Snow White with the Red Hair'
+- '赤髪の白雪姫 Snow White with the Red Hair'
+- '빨강머리 백설공주'
+https://www.youtube.com/watch?v=Wyj68m_nNxY:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=6hJ9tHvP55g:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=NVKqS7hkxTQ:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=uLWjBJMEMaU:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=D4LHdvB0RZg:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=gz69tyXfhMA:
+- 'City Hunter'
+- 'CHun1'
+- 'CITY HUNTER'
+- 'City Hunter (1. Staffel)'
+- 'city hunter 1'
+- 'Nicky Larson'
+- 'Şehir Avcısı'
+- 'Городской охотник'
+- 'صياد المدينة'
+- 'シティーハンター'
+https://www.youtube.com/watch?v=jVw-cUMEQMc:
+- 'Juuni Kokuki'
+- '12 Karalysčių'
+- '12 Kingdoms'
+- '12 Kingdoms - Juuni Kokki'
+- '12 Kokuki'
+- '12 Krallık'
+- '12 królestw'
+- '12 Împărăţii'
+- '12 อาณาจักรเทพยุทธ์'
+- '12K'
+- 'Doce Reinos'
+- 'Doze Reinos'
+- 'Dvanáct království'
+- 'Dwanaście królestw'
+- 'Els Dotze Regnes'
+- 'JK'
+- 'Juuni'
+- 'Juuni Kokki'
+- 'Kaksteist Kuningriiki'
+- 'Les 12 royaumes'
+- 'Los Doce Reinos'
+- 'Record of 12 countries'
+- 'The Twelve Kingdoms'
+- 'Дванадесете Кралства'
+- 'Двенадцать королевств'
+- 'Хроники Двенадцати Королевств'
+- 'Хроніки дванадцяти королівств'
+- 'שתים עשרה הממלכות'
+- 'الممالك الاثنى عشر'
+- '十二国記'
+- '十二国记'
+https://www.youtube.com/watch?v=sjJzR6ghQ2c:
+- 'Kimi ni Todoke'
+- 'Kimi ni Todoke: From Me to You'
+- 'Reaching You'
+- '君に届け'
+https://www.youtube.com/watch?v=fv2Ybecq92E:
+- 'Toaru Majutsu no Index'
+- 'A Certain Magical Index'
+- 'Historia pewnego magicznego Indexu'
+- 'Index'
+- 'Index1'
+- 'To Aru Majutsu no Index'
+- 'Toaru Majutsu no Kinsho Mokuroku'
+- 'Индекс Волшебства'
+- 'Некий магический индекс'
+- 'То ару маджіцу но Індекс'
+- 'คัมภีร์คาถาต้องห้าม อินเด็กซ์'
+- 'とある魔術の禁書目録[インデックス]'
+- '魔法禁书目录'
+- '魔法禁書目錄'
+https://www.youtube.com/watch?v=Q34iirTNwr4:
+- 'Toaru Majutsu no Index'
+- 'A Certain Magical Index'
+- 'Historia pewnego magicznego Indexu'
+- 'Index'
+- 'Index1'
+- 'To Aru Majutsu no Index'
+- 'Toaru Majutsu no Kinsho Mokuroku'
+- 'Индекс Волшебства'
+- 'Некий магический индекс'
+- 'То ару маджіцу но Індекс'
+- 'คัมภีร์คาถาต้องห้าม อินเด็กซ์'
+- 'とある魔術の禁書目録[インデックス]'
+- '魔法禁书目录'
+- '魔法禁書目錄'
+https://www.youtube.com/watch?v=YKvnc7z0roM:
+- 'Toaru Majutsu no Index II'
+- 'A Certain Magical Index 2'
+- 'A Certain Magical Index II'
+- 'Index2'
+- 'To Aru Majutsu no Index II'
+- 'Toaru Majutsu no Index 2'
+- 'Toaru Majutsu no Kinsho Mokuroku II'
+- 'とある魔術の禁書目録[インデックス]II'
+- 'とある魔術の禁書目録II'
+- '魔法禁书目录 2'
+- '魔法禁書目錄 II'
+https://www.youtube.com/watch?v=uqEwvVIeFr4:
+- 'Toaru Majutsu no Index II'
+- 'A Certain Magical Index 2'
+- 'A Certain Magical Index II'
+- 'Index2'
+- 'To Aru Majutsu no Index II'
+- 'Toaru Majutsu no Index 2'
+- 'Toaru Majutsu no Kinsho Mokuroku II'
+- 'とある魔術の禁書目録[インデックス]II'
+- 'とある魔術の禁書目録II'
+- '魔法禁书目录 2'
+- '魔法禁書目錄 II'
+https://www.youtube.com/watch?v=us6W03IJ8X0:
+- 'Toaru Majutsu no Index III'
+- 'A Certain Magical Index III'
+- 'Toaru Majutsu no Index 3'
+- 'Toaru Majutsu no Kinsho Mokuroku 3'
+- 'とある魔術の禁書目録III'
+- 'とある魔術の禁書目録Ⅲ'
+https://www.youtube.com/watch?v=tJzF1tu7-dw:
+- 'Toaru Majutsu no Index III'
+- 'A Certain Magical Index III'
+- 'Toaru Majutsu no Index 3'
+- 'Toaru Majutsu no Kinsho Mokuroku 3'
+- 'とある魔術の禁書目録III'
+- 'とある魔術の禁書目録Ⅲ'
+https://www.youtube.com/watch?v=iZ2j45PHlHs:
+- 'Toaru Kagaku no Railgun'
+- 'A Certain Scientific Railgun'
+- 'railgun'
+- 'To Aru Kagaku no Railgun'
+- 'Toaru Kagaku no Choudenjihou'
+- 'Некий научный рейлган'
+- 'เรลกัน แฟ้มลับคดีวิทยาศาสตร์'
+- 'とある科学の超電磁砲[レールガン]'
+- '某科学的超电磁炮'
+- '科學超電磁砲'
+- '魔法禁书目录外传_科学的超电磁炮'
+- '어떤 과학의 초전자포'
+https://www.youtube.com/watch?v=1NYUKIZCV5k:
+- 'Toaru Kagaku no Railgun'
+- 'A Certain Scientific Railgun'
+- 'Toaru Kagaku no Choudenjihou'
+- 'とある科学の超電磁砲'
+https://www.youtube.com/watch?v=rNWITQJzbls:
+- 'Toaru Kagaku no Railgun S'
+- 'A Certain Scientific Railgun 2'
+- 'A Certain Scientific Railgun 2nd Season'
+- 'A Certain Scientific Railgun S'
+- 'Toaru Kagaku no Choudenjihou 2'
+- 'Toaru Kagaku no Railgun 2'
+- 'Toaru Kagaku no Railgun 2nd Season'
+- 'とある科学の超電磁砲S'
+https://www.youtube.com/watch?v=2covdFPm1GE:
+- 'Toaru Kagaku no Railgun S'
+- 'A Certain Scientific Railgun 2'
+- 'A Certain Scientific Railgun 2nd Season'
+- 'A Certain Scientific Railgun S'
+- 'Toaru Kagaku no Choudenjihou 2'
+- 'Toaru Kagaku no Railgun 2'
+- 'Toaru Kagaku no Railgun 2nd Season'
+- 'とある科学の超電磁砲S'
+https://www.youtube.com/watch?v=3zUodItQWx8:
+- 'Yuuki Yuuna wa Yuusha de Aru'
+- 'Yuki Yuna Is a Hero'
+- 'yuyuyu'
+- '結城友奈は勇者である'
+- '结城友奈是勇者'
+- '유우키 유우나는 용사다'
+https://www.youtube.com/watch?v=Egmf2bl6HoI:
+- 'Ef - a Tale of Memories.'
+- 'ef'
+- 'ef - a tale of memories.'
+- 'ef - opowieść o wspomnieniach'
+- 'ef - prisiminimų pasaka'
+- 'ef - розповідь про спогади'
+- 'ef1'
+- 'Ef: A Tale of Memories'
+- 'Еф - Приказка за Спомените'
+- 'Перо на вечността: История за спомени'
+- 'Эф - история воспоминаний'
+- '悠久之翼'
+https://www.youtube.com/watch?v=PxvYla19EOQ:
+- 'Junjou Romantica'
+- 'Junjo Romantica'
+- 'Junjou Romantica 1'
+- 'Чиста Романтика'
+- 'Чистая романтика'
+- '純情ロマンチカ'
+- '纯情罗曼史'
+https://www.youtube.com/watch?v=j7TsN9rHA0I:
+- 'Junjou Romantica'
+- 'Junjo Romantica'
+- 'Junjou Romantica 1'
+- 'Чиста Романтика'
+- 'Чистая романтика'
+- '純情ロマンチカ'
+- '纯情罗曼史'
+https://www.youtube.com/watch?v=hYFA8IcmX0w:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=SjIXE-YWMHM:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=e_HYQZsAk54:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=AvBhJw1ZZdo:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=TE5cWjN3fdk:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=p0RAE_erKUs:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=fflOd-dHbZI:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=dvTWmdlBl_U:
+- 'Kindaichi Shounen no Jikenbo'
+- 'Kindaichi Case Files'
+- 'Les Enquetes de Kindaichi'
+- 'Young Kindaichi''s Casebook'
+- '金田一少年の事件簿'
+https://www.youtube.com/watch?v=nftv-qmi5rY:
+- 'Kindaichi Shounen no Jikenbo Returns'
+- 'Kindaichi Case Files R'
+- 'Kindaichi R'
+- 'Los casos de Kindaichi regresan'
+- 'The Case File of Young Kindaichi Returns'
+- 'The File of Young Kindaichi Returns'
+- '金田一少年の事件簿R[リターンズ]'
+https://www.youtube.com/watch?v=2R9VmRtuNwo:
+- 'Kokoro Connect'
+- 'kokoco'
+- 'kokoroco'
+- 'ココロコネクト'
+https://www.youtube.com/watch?v=8vIux5EO7ck:
+- 'Slayers Next'
+- 'スレイヤーズ NEXT'
+- 'スレイヤーズNEXT'
+https://www.youtube.com/watch?v=O5rJRlq11pc:
+- 'Slayers Try'
+- 'スレイヤーズ TRY'
+https://www.youtube.com/watch?v=0iXzeZF173Q:
+- 'Prince of Tennis'
+- 'Tennis no Ouji-sama'
+- 'The Prince of Tennis'
+- 'テニスの王子様'
+https://www.youtube.com/watch?v=7Uu7caB0OWI:
+- 'Tennis no Oujisama'
+- 'Tennis no Ouji-sama'
+- 'The Prince of Tennis'
+- 'テニスの王子様'
+https://www.youtube.com/watch?v=NwBjuFcX7z8:
+- 'Prince of Tennis'
+- 'Tennis no Ouji-sama'
+- 'The Prince of Tennis'
+- 'テニスの王子様'
+https://www.youtube.com/watch?v=Bm1n0zF0yEk:
+- 'Touch'
+- 'Bateadores'
+- 'Prendi il mondo e vai'
+- 'Théo ou la batte de la victoire'
+- 'Touch TV'
+- 'Касание'
+- 'لمسة'
+- 'ทัช ยอดรักนักกีฬา'
+- 'タッチ'
+- '棒球英豪'
+- '터치'
+https://www.youtube.com/watch?v=7nreCjekf8k:
+- 'Nurarihyon no Mago'
+- 'Grandchild of Nurarihyon'
+- 'Nura: Rise of the Yokai Clan'
+- 'The Grandson of Nurarihyon'
+- 'ぬらりひょんの孫'
+https://www.youtube.com/watch?v=K7WVSvTdcos:
+- 'Nurarihyon no Mago'
+- 'Grandchild of Nurarihyon'
+- 'Nura: Rise of the Yokai Clan'
+- 'The Grandson of Nurarihyon'
+- 'ぬらりひょんの孫'
+https://www.youtube.com/watch?v=k-XHBUganUs:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=bm-WORKaOEc:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=_F6LD_czS8s:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=QvSswGgmMd0:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=mVvoD_ErXUo:
+- 'Persona: Trinity Soul'
+- 'persona'
+- 'PERSONA -trinity soul-'
+- 'Persona -trinity soul-'
+- 'Persona trinity soul'
+- 'Персона: Душа троицы'
+- 'ペルソナ トリニティ・ソウル'
+- '女神异闻录 -圣洁之魂-'
+https://www.youtube.com/watch?v=xoQuu7GPxAI:
+- 'Wolf`s Rain'
+- 'Vilkų lietus'
+- 'Wolfs Rain'
+- 'WR'
+- 'Вовчий дощ'
+- 'Волчий дождь'
+- 'Вълчи дъжд'
+- 'مطر الذئاب'
+- 'ウルフズレイン'
+- '狼雨'
+https://www.youtube.com/watch?v=YtNMIbQPzCY:
+- 'Zetsuen no Tempest'
+- 'Blast of Tempest'
+- 'Zetsuen no Tempest: The Civilization Blaster'
+- '絶園のテンペスト'
+https://www.youtube.com/watch?v=K6OTgfKirvQ:
+- 'Zetsuen no Tempest'
+- 'Blast of Tempest'
+- 'Zetsuen no Tempest: The Civilization Blaster'
+- '絶園のテンペスト'
+https://www.youtube.com/watch?v=ES06Fkkl8ac:
+- 'Girls und Panzer'
+- 'garupan'
+- 'Girls and Panzer'
+- 'GIRLS und PANZER'
+- 'GuP'
+- 'Kızlar ve Panzerler'
+- 'Mädchen und Panzer'
+- 'ガルパン'
+- 'ガールズ&パンツァー'
+- '女子高生&重戰車'
+- '少女与战车'
+- '少女與戰車'
+https://www.youtube.com/watch?v=wew9zHCJYyI:
+- 'High Score Girl'
+- 'Hi Score Girl'
+- 'ハイスコアガール'
+https://www.youtube.com/watch?v=JRmgL564x8E:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=5vG5i-tkHEE:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=CZ73Qv-RQNg:
+- 'Log Horizon'
+- 'ورود به افق'
+- 'ログ・ホライズン'
+- '记录的地平线'
+- '로그 호라이즌'
+https://www.youtube.com/watch?v=igeYwGslD-M:
+- 'Full Moon wo Sagashite'
+- 'Full Moon o Sagashite'
+- 'Searching for the Full Moon'
+- '満月をさがして'
+https://www.youtube.com/watch?v=PXivj3ksge0:
+- 'Full Moon wo Sagashite'
+- 'Full Moon o Sagashite'
+- 'Searching for the Full Moon'
+- '満月をさがして'
+https://www.youtube.com/watch?v=qVULv9jIlI4:
+- 'Hyouge Mono'
+- 'Hyougemono'
+- 'Чудные вещи'
+- 'へうげもの'
+https://www.youtube.com/watch?v=s0kPAh2EBjM:
+- 'Kobato.'
+- 'Kobato'
+- 'kobato'
+- 'Кобато'
+- 'كوباتو'
+- 'こばと.'
+- '奇蹟少女'
+- '小鸠'
+https://www.youtube.com/watch?v=AzV9ug9BQds:
+- 'Azumanga Daioh'
+- 'Azumanga Daioh: The Animation'
+- 'Azumanga Daiou'
+- 'あずまんが大王'
+- 'あずまんが大王 THE ANIMATION'
+https://www.youtube.com/watch?v=DD3wSwOX7CY:
+- 'Grisaia no Kajitsu'
+- 'Le Fruit De La Grisaia'
+- 'The Fruit of Grisaia'
+- 'グリザイアの果実'
+https://www.youtube.com/watch?v=fABdDZBFJzs:
+- 'Grisaia no Rakuen'
+- 'Het Paradijs van Grisaia'
+- 'The Eden of Grisaia'
+- 'グリザイアの楽園'
+- '그리자이아의 낙원'
+https://www.youtube.com/watch?v=4J8jcI0WtzM:
+- 'Kekkai Sensen'
+- 'Blood Blockade Battlefront'
+- '血界戦線'
+https://www.youtube.com/watch?v=_16vOCt-sYk:
+- 'Kekkai Sensen & Beyond'
+- 'Blood Blockade Battlefront & Beyond'
+- '血界戦線 & BEYOND'
+- '혈계전선 & 비욘드'
+https://www.youtube.com/watch?v=I4aQQBLokNo:
+- 'Macross'
+- 'Cho Jiku Yosai Macross'
+- 'Choujikuu Yousai Macross'
+- 'Robotech (U.S.)'
+- 'SDF Macross'
+- 'Super Dimensional Fortress Macross'
+- '超時空要塞マクロス'
+https://www.youtube.com/watch?v=9yWpFWhmdnw:
+- 'Macross'
+- 'Cho Jiku Yosai Macross'
+- 'Choujikuu Yousai Macross'
+- 'Robotech (U.S.)'
+- 'SDF Macross'
+- 'Super Dimensional Fortress Macross'
+- '超時空要塞マクロス'
+https://www.youtube.com/watch?v=57sTEUanE_Q:
+- 'Macross Frontier'
+- 'macF'
+- 'Macross F'
+- 'Macross Frontier Deculture Edition'
+- 'Macross Frontier Yakku Deculture Edition'
+- 'Macross Fufonfia'
+- 'Макрос F'
+- 'Макросс F'
+- 'Макросс Фронтир'
+- 'マクロスF'
+- 'マクロスfrontier'
+- '마크로스 프론티어'
+https://www.youtube.com/watch?v=eEQ3JLP8cxQ:
+- 'Macross Frontier'
+- 'macF'
+- 'Macross F'
+- 'Macross Frontier Deculture Edition'
+- 'Macross Frontier Yakku Deculture Edition'
+- 'Macross Fufonfia'
+- 'Макрос F'
+- 'Макросс F'
+- 'Макросс Фронтир'
+- 'マクロスF'
+- 'マクロスfrontier'
+- '마크로스 프론티어'
+https://www.youtube.com/watch?v=9OS1hZCU6z4:
+- 'Macross Delta'
+- 'Macross Δ'
+- 'Макросс Дельта'
+- 'マクロスΔ[デルタ]'
+- '超时空要塞Δ'
+- '마크로스 델타'
+https://www.youtube.com/watch?v=MuNMinXVIIM:
+- 'Macross Delta'
+- 'Macross Δ'
+- 'Макросс Дельта'
+- 'マクロスΔ[デルタ]'
+- '超时空要塞Δ'
+- '마크로스 델타'
+https://www.youtube.com/watch?v=X2LvnbC6LgQ:
+- 'Ushio to Tora'
+- 'Ushio and Tora'
+- 'ushitora'
+- 'うしおととら'
+https://www.youtube.com/watch?v=kALFWulNp1Y:
+- 'Ushio to Tora'
+- 'Ushio and Tora'
+- 'ushitora'
+- 'うしおととら'
+https://www.youtube.com/watch?v=cXabZ_-QPb0:
+- 'Drifters'
+- 'DRIFTERS'
+- 'Drifters: Battle in a Brand-new World War'
+https://www.youtube.com/watch?v=wApAEg0ErgE:
+- 'Haibane Renmei'
+- 'Ailes Grises'
+- 'Alas Grises'
+- 'Ales Grises'
+- 'Ali Grigie'
+- 'Charcoal Feather Federation'
+- 'Haibane'
+- 'Haibane Renmei - Ailes Grises'
+- 'Haibane renmei: Stowarzyszenie szaropiórych'
+- 'HR'
+- 'La Federación de las Plumas de Carbón'
+- 'La Federazione delle Piume Cineree'
+- 'Przymierze szarych skrzydeł'
+- 'Альянс Пепельнокрылых'
+- 'Альянс Попелястокрилих'
+- 'Альянс Серокрылых'
+- 'Союз Серокрылых'
+- 'Союз сірокрилих'
+- 'Съюзът на Среброкрилите'
+- 'Товариство сірокрилих'
+- 'بال گچی ها'
+- 'هایبانه رنمی'
+- '灰羽聯盟'
+- '灰羽連盟'
+- '잿빛 날개의 연맹'
+- '하이바네 연맹'
+- '회색 날개의 연맹'
+https://www.youtube.com/watch?v=3Zrr0k6WSEE:
+- 'Kaleido Star'
+- 'Kaleido Star: New Wings'
+- 'カレイドスター'
+https://www.youtube.com/watch?v=dMtweykufLo:
+- 'Kaleido Star'
+- 'Kaleido Star: New Wings'
+- 'カレイドスター'
+https://www.youtube.com/watch?v=QQ6qIWNkLbk:
+- 'Tiger & Bunny'
+- 'Taibani'
+- 'TIGER & BUNNY (タイガー・アンド・バニー)'
+- 'Tiger and Bunny'
+https://www.youtube.com/watch?v=kycPLw1IoSw:
+- 'Yume-iro Pâtissière'
+- 'Dream-Colored Pastry Chef'
+- 'Yume-Iro Pâtissière'
+- 'Yumeiro Patissiere'
+- 'Yumeiro Pâtissière'
+- 'YumePati'
+- '夢色パティシエール'
+https://www.youtube.com/watch?v=BkHZhFhxQUI:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=MQ2wWTAO5B4:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=8gjiI0KRxjA:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=5C0IE_Y5CUU:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=G1tpPYTI07c:
+- 'Beelzebub'
+- 'beel'
+- 'Beelzebub TV'
+- 'Белзебъб'
+- 'Велзевул'
+- 'Вельзепуз'
+- 'بلزباب'
+- 'べるぜバブ'
+- '惡魔奶爸'
+https://www.youtube.com/watch?v=6GW0wXMt2CQ:
+- 'Date a Live'
+- 'Рандеву с жизнью'
+- 'Среща на живо'
+- 'デート・ア・ライブ'
+- '约会大作战'
+https://www.youtube.com/watch?v=JT0OXWLozz8:
+- 'Date a Live'
+- 'Рандеву с жизнью'
+- 'Среща на живо'
+- 'デート・ア・ライブ'
+- '约会大作战'
+https://www.youtube.com/watch?v=gHTqQSW_g4k:
+- 'Date A Live III'
+- 'Date A Live 3rd Season'
+- 'デート・ア・ライブⅢ'
+https://www.youtube.com/watch?v=iVBmh1EmC5M:
+- 'Jigoku Shoujo'
+- 'Cehennem Kızı'
+- 'Dívka z Pekla'
+- 'Fata Iadului'
+- 'Garota do Inferno'
+- 'Hell Girl'
+- 'hg1'
+- 'Jigoku Shojo'
+- 'js'
+- 'La chica infernal'
+- 'La fille des enfers'
+- 'Menina do Inferno'
+- 'Piekielna dziewczyna'
+- 'Pokoli Lány'
+- 'Адская девочка'
+- 'Момичето от ада'
+- 'Пекельна дівчина'
+- 'فتاة الجحيم'
+- 'สัญญามรณะ ธิดาอเวจี'
+- '地狱少女'
+- '地獄少女'
+https://www.youtube.com/watch?v=BpFBY9ML-2g:
+- 'Jigoku Shoujo'
+- 'Cehennem Kızı'
+- 'Dívka z Pekla'
+- 'Fata Iadului'
+- 'Garota do Inferno'
+- 'Hell Girl'
+- 'hg1'
+- 'Jigoku Shojo'
+- 'js'
+- 'La chica infernal'
+- 'La fille des enfers'
+- 'Menina do Inferno'
+- 'Piekielna dziewczyna'
+- 'Pokoli Lány'
+- 'Адская девочка'
+- 'Момичето от ада'
+- 'Пекельна дівчина'
+- 'فتاة الجحيم'
+- 'สัญญามรณะ ธิดาอเวจี'
+- '地狱少女'
+- '地獄少女'
+https://www.youtube.com/watch?v=MExUl7kouk0:
+- 'Jigoku Shoujo Yoi no Togi'
+- 'Hell Girl Yoi no Togi'
+- 'Hell Girl: Fourth Twilight'
+- '地獄少女宵伽'
+https://www.youtube.com/watch?v=UElVwKyA5R8:
+- 'Koutetsujou no Kabaneri'
+- 'kabaneri'
+- 'Kabaneri of the Iron Fortress'
+- 'Желязната крепост на мъртвите'
+- 'Заклеймённые из «Стальной крепости»'
+- 'Кабанери от Желязната крепост'
+- '甲鉄城のカバネリ'
+- '甲鐵城的卡巴內里'
+- '甲铁城的卡巴内瑞'
+- '갑철성의 카바네리'
+https://www.youtube.com/watch?v=NB2sow7tbJ8:
+- 'Mawaru Penguindrum'
+- 'Penguindrum'
+- '輪るピングドラム'
+https://www.youtube.com/watch?v=IKyIXiTLJc4:
+- 'Plastic Memories'
+- 'Пластикові спогади'
+- 'プラスティック・メモリーズ'
+- 'プラスティック・メモリーズ'
+- '플라스틱 메모리즈'
+https://www.youtube.com/watch?v=zzJ8U8OtEsE:
+- 'Soul Eater'
+- 'Bohové smrti'
+- 'Pemakan Jiwa'
+- 'Pożeracz Dusz'
+- 'SE'
+- 'setv'
+- 'Sielų Rijikas'
+- 'Soul Eater - Lélekfalók'
+- 'Soul Eater - Secera Mortii'
+- 'Гълтач на Души'
+- 'Пожиратель душ'
+- 'Пожиратель Душ'
+- 'Събирачи на души'
+- 'אוכל הנשמות'
+- 'ソウルイーター'
+- 'ソウルイーター リピートショー'
+- '噬魂师'
+https://www.youtube.com/watch?v=-eYK3YP524A:
+- 'Soul Eater'
+- 'Bohové smrti'
+- 'Pemakan Jiwa'
+- 'Pożeracz Dusz'
+- 'SE'
+- 'setv'
+- 'Sielų Rijikas'
+- 'Soul Eater - Lélekfalók'
+- 'Soul Eater - Secera Mortii'
+- 'Гълтач на Души'
+- 'Пожиратель душ'
+- 'Пожиратель Душ'
+- 'Събирачи на души'
+- 'אוכל הנשמות'
+- 'ソウルイーター'
+- 'ソウルイーター リピートショー'
+- '噬魂师'
+https://www.youtube.com/watch?v=0hgwUqC5_mM:
+- 'Yagate Kimi ni Naru'
+- 'Bloom Into You'
+- 'Eventually'
+- 'Eventually, I Will Become You'
+- 'I Will Become You'
+- 'YagaKimi'
+- 'やがて君になる'
+https://www.youtube.com/watch?v=D1AHfipwpLk:
+- 'Yakitate!! Japan'
+- 'Amassando Ja-pão'
+- 'Freshly Baked!! Ja-pan!'
+- 'japan'
+- 'Vua bánh mì'
+- 'Y!!J'
+- 'Yakitate'
+- 'Yakitate Japan'
+- 'Yakitate!!'
+- 'Yakitate!! Ja-pan'
+- 'YJ'
+- 'Свежевыпеченный!! Япония!'
+- 'Японская свежая выпечка'
+- 'ישר מהתנור! יפן!'
+- 'แชมเปี้ยน เจปัง สูตรดังเขย่าโลก!!'
+- '日式麵包王'
+- '焼きたて!! ジャぱん'
+https://www.youtube.com/watch?v=2hd0ViolSPI:
+- 'Yakitate!! Japan'
+- 'Amassando Ja-pão'
+- 'Freshly Baked!! Ja-pan!'
+- 'japan'
+- 'Vua bánh mì'
+- 'Y!!J'
+- 'Yakitate'
+- 'Yakitate Japan'
+- 'Yakitate!!'
+- 'Yakitate!! Ja-pan'
+- 'YJ'
+- 'Свежевыпеченный!! Япония!'
+- 'Японская свежая выпечка'
+- 'ישר מהתנור! יפן!'
+- 'แชมเปี้ยน เจปัง สูตรดังเขย่าโลก!!'
+- '日式麵包王'
+- '焼きたて!! ジャぱん'
+https://www.youtube.com/watch?v=RsP74hesnac:
+- 'Yakitate!! Japan'
+- 'Amassando Ja-pão'
+- 'Freshly Baked!! Ja-pan!'
+- 'japan'
+- 'Vua bánh mì'
+- 'Y!!J'
+- 'Yakitate'
+- 'Yakitate Japan'
+- 'Yakitate!!'
+- 'Yakitate!! Ja-pan'
+- 'YJ'
+- 'Свежевыпеченный!! Япония!'
+- 'Японская свежая выпечка'
+- 'ישר מהתנור! יפן!'
+- 'แชมเปี้ยน เจปัง สูตรดังเขย่าโลก!!'
+- '日式麵包王'
+- '焼きたて!! ジャぱん'
+https://www.youtube.com/watch?v=qxJWUj-MMGs:
+- 'Hanasaku Iroha'
+- 'Hana-Saku Iroha'
+- 'Hanairo'
+- 'Hanasaku Iroha ~Blossoms for Tomorrow~'
+- 'Hanasaku Iroha: Blossoms for Tomorrow'
+- '花咲くいろは'
+https://www.youtube.com/watch?v=6MffR9xOLIM:
+- 'Hanasaku Iroha'
+- 'Hana-Saku Iroha'
+- 'Hanairo'
+- 'Hanasaku Iroha ~Blossoms for Tomorrow~'
+- 'Hanasaku Iroha: Blossoms for Tomorrow'
+- '花咲くいろは'
+https://www.youtube.com/watch?v=_W6CqnQODbw:
+- 'Igano Kabamaru'
+- 'Iga no Kabamaru'
+- 'Ninja Boy'
+- '伊賀野カバ丸'
+https://www.youtube.com/watch?v=uDhEtUl7U-A:
+- 'Jormungand'
+- 'ヨルムンガンド'
+https://www.youtube.com/watch?v=zRsiCn8tszM:
+- 'Tentai Senshi Sunred'
+- 'Astro Fighter Sunred'
+- 'Sunred'
+- '天体战士桑雷德'
+- '天体戦士サンレッド'
+https://www.youtube.com/watch?v=N7bnr2_njfQ:
+- 'Tentai Senshi Sunred'
+- 'Astro Fighter Sunred'
+- 'Sunred'
+- '天体战士桑雷德'
+- '天体戦士サンレッド'
+https://www.youtube.com/watch?v=9WdSzmL80eE:
+- 'Bishoujo Senshi Sailor Moon'
+- 'Pretty Soldier Sailor Moon'
+- 'Sailor Moon'
+- '美少女戦士セーラームーン'
+https://www.youtube.com/watch?v=5txHGxJRwtQ:
+- 'Bishoujo Senshi Sailor Moon'
+- 'Pretty Soldier Sailor Moon'
+- 'Sailor Moon'
+- '美少女戦士セーラームーン'
+https://www.youtube.com/watch?v=-30SCRuk5_o:
+- 'Bishoujo Senshi Sailor Moon: Crystal'
+- 'Sailor Moon Crystal'
+- '美少女戦士セーラームーンCrystal'
+https://www.youtube.com/watch?v=ce0ZzDDk3dY:
+- 'Bishoujo Senshi Sailor Moon'
+- 'Pretty Soldier Sailor Moon'
+- 'Sailor Moon'
+- '美少女戦士セーラームーン'
+https://www.youtube.com/watch?v=gjwxINQYwPg:
+- 'Isekai no Seikishi Monogatari'
+- 'ISM'
+- 'Tenchi Muyo! War on Geminar'
+- '異世界の聖機師物語'
+https://www.youtube.com/watch?v=lOhV_ZJNIxQ:
+- 'Touhai Densetsu Akagi: Yami ni Maiorita Tensai'
+- 'Akagi'
+- 'Mahjong Legend Akagi: The Genius Who Descended Into the Darkness'
+- 'The Legend of Mahjong: Akagi'
+- 'Акаги'
+- 'легенда маджонга'
+- 'アカギ'
+- '斗牌传说'
+- '闘牌伝説アカギ 闇に舞い降りた天才'
+- '투패전설 아카기'
+https://www.youtube.com/watch?v=oAXrRWLKzko:
+- 'Ergo Proxy'
+- 'EP'
+- 'ergo'
+- 'Ergo Proksi'
+- 'Ergoproxy'
+- 'proxy'
+- 'Ерго Прокси'
+- 'Ерго проксі'
+- 'Ерґо Проксі'
+- 'Эрго Прокси'
+- 'ارگو پروکسی'
+- 'پروکسی مابعد'
+- 'エルゴプラクシ'
+- 'エルゴプラクシー'
+- '死亡代理人'
+https://www.youtube.com/watch?v=2Y2VzSY1HIg:
+- 'Hokuto no Ken'
+- 'El Puño de la Estrella del Norte'
+- 'Fist of the North Star'
+- 'FOTNS'
+- 'HNK'
+- 'HnK'
+- 'Ken il Guerriero'
+- 'Ken le survivant'
+- 'Seikimatsu Kyuseishu Densetsu: Hokuto no Ken'
+- 'Юмрукът на северната звезда'
+- 'سيف النار'
+- 'قبضة النجم الشمالي'
+- 'ฤทธิ์หมัดเทพเจ้าดาวเหนือ'
+- '世紀末救世主伝説 北斗の拳'
+- '北斗の拳'
+- '北斗神拳'
+https://www.youtube.com/watch?v=OdGIcEin4M4:
+- 'Saiyuuki Reload'
+- 'Saiyuki - Reload'
+- 'Saiyuki 2'
+- 'Saiyuki R'
+- 'Saiyuki Reload'
+- 'Saiyuki2'
+- 'ไซยูกิ สี่แสบฝ่าแดนทมิฬ'
+- '最遊記RELOAD'
+- '최유기 리로드'
+https://www.youtube.com/watch?v=Z7teW_NNZ24:
+- 'Goku Sayonara Zetsubou Sensei'
+- 'Goodbye Mr. Despair OAD'
+- 'Goodbye Mr. Despair OVA'
+- 'GSZS'
+- 'Sayonara Zetsubou Sensei OAD'
+- '獄・さよなら絶望先生'
+https://www.youtube.com/watch?v=YObykpjbLRU:
+- 'Sayonara Zetsubou Sensei'
+- 'Goodbye Teacher Despair'
+- 'Sayonara'
+- 'Sayonara Zetsubo Sensei'
+- 'Sayonara, Zetsubou-Sensei'
+- 'SZS'
+- 'Zetsubou-Sensei'
+- 'さよなら絶望先生'
+https://www.youtube.com/watch?v=-k3UmUI_YB4:
+- 'Eikoku Koi Monogatari Emma'
+- 'Emma'
+- 'Emma - Eine viktorianische Liebe'
+- 'Emma - Una storia romantica'
+- 'emma 1'
+- 'emma1'
+- 'Emma: A Victorian Romance'
+- 'English Love Story Emma'
+- 'Victorian Romance Emma'
+- '英國戀物語エマ'
+https://www.youtube.com/watch?v=OsLY7DXWsF4:
+- 'Sword Art Online'
+- 'SAO'
+- 'SAO1'
+- 'Sword Art Online: Aincrad'
+- 'Sword Art Online: Fairy Dance'
+- 'Мастер меча онлайн'
+- 'فن السيف عبر الإنترنت'
+- 'فن السيف عبر الانترنت'
+- 'هنر شمشیر زنی آنلاین'
+- 'ソードアート・オンライン'
+- '刀剑神域'
+- '刀劍神域'
+- '소드 아트 온라인'
+https://www.youtube.com/watch?v=gAi4PwjTfRU:
+- 'Sword Art Online'
+- 'SAO'
+- 'SAO1'
+- 'Sword Art Online: Aincrad'
+- 'Sword Art Online: Fairy Dance'
+- 'Мастер меча онлайн'
+- 'فن السيف عبر الإنترنت'
+- 'فن السيف عبر الانترنت'
+- 'هنر شمشیر زنی آنلاین'
+- 'ソードアート・オンライン'
+- '刀剑神域'
+- '刀劍神域'
+- '소드 아트 온라인'
+https://www.youtube.com/watch?v=b7xOm8XrXNY:
+- 'Sword Art Online'
+- 'SAO'
+- 'SAO1'
+- 'Sword Art Online: Aincrad'
+- 'Sword Art Online: Fairy Dance'
+- 'Мастер меча онлайн'
+- 'فن السيف عبر الإنترنت'
+- 'فن السيف عبر الانترنت'
+- 'هنر شمشیر زنی آنلاین'
+- 'ソードアート・オンライン'
+- '刀剑神域'
+- '刀劍神域'
+- '소드 아트 온라인'
+https://www.youtube.com/watch?v=kBUkTavYOjY:
+- 'Sword Art Online: Alicization'
+- 'SAO Alicization'
+- 'SAO3'
+- 'Sword Art Online - Alicization'
+- 'Sword Art Online Alicization'
+- 'Sword Art Online III'
+- 'ソードアート・オンライン アリシゼーション'
+- '刀劍神域 Alicization'
+- '소드 아트 온라인: 앨리시제이션'
+https://www.youtube.com/watch?v=uEO_D0Cz2R8:
+- 'Sword Art Online: Alicization'
+- 'SAO Alicization'
+- 'SAO3'
+- 'Sword Art Online - Alicization'
+- 'Sword Art Online Alicization'
+- 'Sword Art Online III'
+- 'ソードアート・オンライン アリシゼーション'
+- '刀劍神域 Alicization'
+- '소드 아트 온라인: 앨리시제이션'
+https://www.youtube.com/watch?v=7aMOurgDB-o:
+- 'Tokyo Ghoul'
+- 'Токийски гул'
+- 'Токийский гуль'
+- 'Токийско чудовище'
+- 'آزارگر توکیو'
+- 'غول توکیو'
+- '东京喰种'
+- '東京喰種[トーキョーグール]'
+https://www.youtube.com/watch?v=62c7_zKoSV8:
+- 'Carnival Phantasm'
+- 'カーニバル・ファンタズム'
+- '幻想嘉年华'
+- '幻想嘉年華'
+https://www.youtube.com/watch?v=Q9esf5COzck:
+- 'Magic Kaito'
+- 'Detective Conan Special: Secret Birth of Kaito Kid'
+- 'Kaito Kid'
+- 'Kaitou Kid'
+- 'Kaitou Kid Tanjou no Himitsu'
+- 'Magic Kaitou'
+- 'Majikku Kaito'
+- 'まじっく快斗'
+https://www.youtube.com/watch?v=3LucBfR1w6Y:
+- 'Outlaw Star'
+- 'Future Hero Next Generation Outlaw Star'
+- 'Seihou Bukyou Outlaw Star'
+- '星方武侠アウトロースター'
+https://www.youtube.com/watch?v=DjUtmbZt8zc:
+- 'Guilty Crown'
+- 'GUILTY CROWN'
+- 'ギルティクラウン'
+https://www.youtube.com/watch?v=a-TzvgFZYI0:
+- 'Guilty Crown'
+- 'GUILTY CROWN'
+- 'ギルティクラウン'
+https://www.youtube.com/watch?v=e5_bqv17g9c:
+- 'Top o Nerae! Gunbuster'
+- 'Aim for the top!'
+- 'Gunbuster'
+- 'gunbuster 1'
+- 'Punta al Top! - Gunbuster'
+- 'Top o Nerae'
+- 'Top wo Nerae'
+- 'Top wo Nerae!'
+- 'top1'
+- 'Zirveyi Hedefle! Avcı Silah'
+- 'Дотянись до Неба'
+- 'กันบัสเตอร์'
+- 'トップをねらえ! GunBuster'
+https://www.youtube.com/watch?v=kMBaVZqUXYY:
+- 'Youkoso Jitsuryoku Shijou Shugi no Kyoushitsu e'
+- 'Classroom of the Elite'
+- 'Youjitsu'
+- 'Добро пожаловать в класс превосходства'
+- 'ようこそ実力至上主義の教室へ'
+- '어서오세요 실력지상주의의 교실에'
+https://www.youtube.com/watch?v=cB8_w7XdW_I:
+- 'Break Blade'
+- 'Broken Blade'
+- 'ブレイク ブレイド'
+https://www.youtube.com/watch?v=Hlf5yNAiU9A:
+- 'Gungrave'
+- 'ggr'
+- 'ggrave'
+- 'Mộ Súng'
+- 'Silah Mezarlığı'
+- 'Гангрейв'
+- 'Оръжие до гроб'
+- 'Убийца с того света'
+- 'Ґанґрейв'
+- 'ガングレイヴ'
+https://www.youtube.com/watch?v=xLCMrIf6uG8:
+- 'Hakuouki'
+- 'Hakuoki'
+- 'Hakuoki ~Demon of the Fleeting Blossom~'
+- 'Hakuoki,Hakuouki: Shinsengumi Kitan'
+- 'Hakuouki Shinsengumi Kitan'
+- 'Hakuouki: Shinsengumi Kitan'
+- '薄桜鬼'
+https://www.youtube.com/watch?v=T4vPdlTlzcE:
+- 'Hakuouki Reimeiroku'
+- 'Hakuoki 3'
+- 'Hakuoki ~Demon of the Fleeting Blossom~ Dawn of the Shinsengumi'
+- 'Hakuouki 3'
+- 'Hakuouki Shinsengumi Kitan Reimeiroku'
+- '薄桜鬼 黎明録'
+https://www.youtube.com/watch?v=HOvkBbV_pCk:
+- 'Tasogare Otome x Amnesia'
+- 'amnesia'
+- 'Dusk Maiden of Amnesia'
+- 'Niepamięć Panny Zmierzchu'
+- 'TOxA'
+- 'Сумеречная Дева и Амнезия'
+- 'Сутінкова дівчина х Амнезія'
+- '黄昏乙女xアムネジア'
+- '黄昏少女x失忆'
+https://www.youtube.com/watch?v=VlQSWmzcG58:
+- 'Charlotte'
+- 'Charlotte(シャーロット)'
+- 'Charlotte(シャーロット)'
+https://www.youtube.com/watch?v=W6ahWjlP3q4:
+- 'Getter Robo'
+- 'Getta Robo'
+- 'Getta: Το Σούπερ Ρομπότ'
+- 'Space Robot'
+- 'ゲッターロボ'
+https://www.youtube.com/watch?v=MoNmzoP3CF8:
+- 'Change!! Getter Robo: Sekai Saigo no Hi'
+- 'Change!! Getter Robo'
+- 'Change!! Getter Robo: The Final Days of the World'
+- 'Change!! True Getter Robo - The Final Days of the World'
+- 'Getter Robo Armageddon'
+- 'Getter Robo: Armageddon'
+- 'Shin (Change!!) Getter Robo - The Final Days of the World'
+- 'Shin Getter Robo: Sekai Saigo no Hi'
+- 'Shin Getter Robo: The Last Day'
+- 'True (Change!!) Getter Robo - The Final Days of the World'
+- '真(チェンジ!!)ゲッターロボ 世界最後の日'
+- '真(チェンジ!!)ゲッターロボ~世界最後の日'
+https://www.youtube.com/watch?v=1pYduET6PwI:
+- 'Change!! Getter Robo: Sekai Saigo no Hi'
+- 'Change!! Getter Robo'
+- 'Change!! Getter Robo: The Final Days of the World'
+- 'Change!! True Getter Robo - The Final Days of the World'
+- 'Getter Robo Armageddon'
+- 'Getter Robo: Armageddon'
+- 'Shin (Change!!) Getter Robo - The Final Days of the World'
+- 'Shin Getter Robo: Sekai Saigo no Hi'
+- 'Shin Getter Robo: The Last Day'
+- 'True (Change!!) Getter Robo - The Final Days of the World'
+- '真(チェンジ!!)ゲッターロボ 世界最後の日'
+- '真(チェンジ!!)ゲッターロボ~世界最後の日'
+https://www.youtube.com/watch?v=V-AiGlgHUk8:
+- 'Jungle wa Itsumo Hare Nochi Guu'
+- 'and then came Guu'
+- 'Guu'
+- 'guu tv'
+- 'Hare+Guu'
+- 'Haré+Guu'
+- 'Jungle wa Itsumo Hale nochi Guu'
+- 'The jungle was always peaceful'
+- 'В джунглях всё было хорошо'
+- 'Всичко в джунглата беше наред'
+- 'пока не пришла Гуу'
+- 'преди да дойде Гуу'
+- 'ジャングルはいつもハレのちグゥ'
+- '热带雨林的爆笑生活'
+- '정글은 언제나 맑은뒤 흐림'
+https://www.youtube.com/watch?v=HoQfJjaoGLk:
+- 'Doukyonin wa Hiza, Tokidoki, Atama no Ue.'
+- 'My Roommate is a Cat'
+- '同居人はひざ、時々、頭のうえ。'
+https://www.youtube.com/watch?v=eHaxcnHRJoc:
+- 'Ghost Hunt'
+- 'GH'
+- 'Hayalet Avı'
+- 'Vaiduoklių medžioklė'
+- 'Łowcy duchów'
+- 'Лов на духове'
+- 'صيد الأشباح'
+- 'ゴーストハント'
+- '奇幻貴公子'
+- '恶灵猎人'
+- '狩灵师'
+https://www.youtube.com/watch?v=n89IGp4fC2U:
+- 'Gundam Build Fighters'
+- 'gbf'
+- 'Gundam BF'
+- 'ガンダムビルドファイターズ'
+- '高达创战者'
+- '건담 빌드 파이터즈'
+https://www.youtube.com/watch?v=XuccKeDW8i4:
+- 'Paradise Kiss'
+- 'Cennet Öpücüğü'
+- 'Paradise kiss'
+- 'parakiss'
+- 'parakisu'
+- 'PKiss'
+- 'Парадайз Кисс'
+- 'паракіс'
+- 'Райський цілунок'
+- 'قبلة الجنة'
+- 'พาราไดซ์ คิส'
+- 'パラダイス・キス'
+- '天堂之吻'
+https://www.youtube.com/watch?v=Czj0m3vZhBY:
+- 'Days'
+- 'DAYS'
+- 'Ден след ден'
+- 'デイズ'
+https://www.youtube.com/watch?v=CXW9KqRVa7E:
+- 'Baka to Test to Shoukanjuu'
+- 'and Summoned Creatures'
+- 'Baka and Test: Summon the Beasts'
+- 'Baka to Test to Shokanju'
+- 'BakaTest'
+- 'Idioten'
+- 'Idiots'
+- 'Tests'
+- 'Tests und beschworene Viecher'
+- 'The Idiot'
+- 'the Test'
+- 'Аватары'
+- 'Глупаци'
+- 'Дурни'
+- 'тестове и странни същества'
+- 'Тесты'
+- 'احمق ها، امتحان و موجودات احضار کردنی'
+- 'الأحمق و الامتحان : استدعاء الوحوش'
+- 'バカとテストと召喚獣'
+- '召唤兽'
+- '测验'
+- '笨蛋'
+https://www.youtube.com/watch?v=EFNQhmDLjTk:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=oeqvhwjYBws:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=2edBgIH7y68:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=375Axn5QB_s:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=r15yXAZ32Fg:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=3U8NnnYzV7A:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=OvahxFH7IGg:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=wKMybibgt6Q:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=7O87OdsVOIE:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=b9vIpu0kAbE:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=VUgxCUd3Bsk:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=rUuHxyYqUSU:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=XXjgwpayNoM:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=ifrTLAd6UQY:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=E-ejE--Q3UE:
+- 'Bleach'
+- '`בליץ'
+- 'BLEACH'
+- 'bleach tv'
+- 'BTV'
+- 'Izbeljivač'
+- 'Белина'
+- 'Блиич'
+- 'Блийч'
+- 'Блич'
+- 'Бліч'
+- 'Отбеливатель'
+- 'بليتش'
+- 'بلیچ'
+- 'บลีช เทพมรณะ'
+- 'ブリーチ'
+- '블리치'
+https://www.youtube.com/watch?v=jOz5mHKWaQ8:
+- 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri'
+- 'GATE'
+- 'Gate'
+- 'Gate : Au-delà de la porte'
+- 'GATE 自衛隊 彼の地にて, 斯く戦えり'
+- 'Gate: Thus the JSDF Fought There'
+- 'Gate: Thus the JSDF Fought There!'
+- 'GATE(ゲート)自衛隊 彼の地にて、斯く戦えり'
+- 'Врата'
+https://www.youtube.com/watch?v=pl1sTU2MANU:
+- 'Gate: Jieitai Kanochi nite, Kaku Tatakaeri'
+- 'GATE'
+- 'Gate'
+- 'Gate : Au-delà de la porte'
+- 'GATE 自衛隊 彼の地にて, 斯く戦えり'
+- 'Gate: Thus the JSDF Fought There'
+- 'Gate: Thus the JSDF Fought There!'
+- 'GATE(ゲート)自衛隊 彼の地にて、斯く戦えり'
+- 'Врата'
+https://www.youtube.com/watch?v=oB1iB0_tS80:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=Iw5u3QVdHjA:
+- 'Shiki'
+- 'Corpse Demon'
+- '屍鬼'
+https://www.youtube.com/watch?v=3VSdQO_Z5Cw:
+- 'Shiki'
+- 'Corpse Demon'
+- '屍鬼'
+https://www.youtube.com/watch?v=vMVdjGibgM4:
+- 'Digimon Adventure'
+- 'Digimon Adventure 01'
+- 'Digimon: Digital Monsters'
+- 'デジモンアドベンチャー'
+https://www.youtube.com/watch?v=C4mr0MLSYcE:
+- 'Digimon Adventure'
+- 'Digimon Adventure 01'
+- 'Digimon: Digital Monsters'
+- 'デジモンアドベンチャー'
+https://www.youtube.com/watch?v=HhtO0kIKKww:
+- 'Digimon Tamers'
+- 'Digimon 3'
+- 'digimon3'
+- 'Digimon: Digital Monsters 03'
+- 'Digimon: Îmblânzitorii'
+- 'Digimonszelídítők'
+- 'Digimontrenéři'
+- 'DT'
+- 'Les Digimon - Saison 3'
+- 'דיג`ימון 3'
+- 'أبطال الديجيتال الجزء الثالث'
+- 'デジモンテイマーズ'
+- '数码暴龙 驯兽师之王'
+- '디지몬 테이머즈'
+https://www.youtube.com/watch?v=ZBDYY2w_ArY:
+- 'Digimon Adventure'
+- 'Digimon'
+- 'Digimon 01'
+- 'digimon1'
+- 'Digimon: Digital Monsters'
+- 'Digimon: Digitala Monster'
+- 'Digimonai'
+- 'Digimoni'
+- 'Digimonok'
+- 'Les Digimon - Saison 1'
+- 'Os Digimon'
+- 'Приключения дигимонов'
+- 'דיג`ימון'
+- 'أبطال الديجيتال الجزء الأول'
+- 'ماجراهای دیجیمون'
+- 'مغامرات الديجيمون'
+- 'デジモンアドベンチャー'
+- '数码暴龙'
+- '디지몬 어드벤쳐'
+https://www.youtube.com/watch?v=1yFBgjvjHec:
+- 'Digimon Savers'
+- 'Digimon Data Squad'
+- 'digimon5'
+- 'Спасатели дигимонов'
+- 'デジモンセイバーズ'
+- '数码兽拯救者'
+https://www.youtube.com/watch?v=fIUI0tEL3Ng:
+- 'Digimon Xros Wars'
+- 'Digimon Cross Wars'
+- 'Digimon Fusion'
+- 'Digimon Fusion Battles'
+- 'digimon6'
+- 'digixw'
+- 'デジモンクロスウォーズ'
+https://www.youtube.com/watch?v=GuPMqo4qPcE:
+- 'One Piece'
+- 'ONE PIECE'
+- 'OP'
+- 'ワンピース'
+https://www.youtube.com/watch?v=KbguIYcVSg8:
+- 'Golden Time'
+- 'ゴールデンタイム'
+https://www.youtube.com/watch?v=IsMTpSDAGxM:
+- 'Kidou Keisatsu Patlabor: Patlabor on Television'
+- 'Mobile Police Patlabor (1989)'
+- 'Patlabor'
+- 'patlabor tv'
+- 'Patlabor: Policía Especial'
+- 'TV פאטלייבור'
+- '機動警察パトレイバー PATLABOR ON TELEVISION'
+https://www.youtube.com/watch?v=FQf-NkWz7Yo:
+- 'Michiko to Hatchin'
+- 'Michiko & Hatchin'
+- 'Michiko e Hatchin'
+- 'Michiko to Hacchin'
+- 'ミチコとハッチン'
+https://www.youtube.com/watch?v=nhJ-EasC3rQ:
+- 'Saenai Heroine no Sodatekata'
+- 'How to Train the Ordinary Girl to be a Heroine'
+- 'saekano'
+- 'Saekano: How to Raise a Boring Girlfriend'
+- 'Saenai Kanojo no Sodatekata'
+- '不起眼女主角培育法'
+- '冴えない彼女の育てかた'
+- '冴えカノ'
+- '路人女主的养成方法'
+- '시원찮은 그녀를 위한 육성방법'
+https://www.youtube.com/watch?v=mIj-OvTf9GE:
+- 'Saenai Heroine no Sodatekata'
+- 'How to Train the Ordinary Girl to be a Heroine'
+- 'saekano'
+- 'Saekano: How to Raise a Boring Girlfriend'
+- 'Saenai Kanojo no Sodatekata'
+- '不起眼女主角培育法'
+- '冴えない彼女の育てかた'
+- '冴えカノ'
+- '路人女主的养成方法'
+- '시원찮은 그녀를 위한 육성방법'
+https://www.youtube.com/watch?v=NqxJ191ecPQ:
+- 'Kyoukai no Kanata'
+- 'Beyond The Boundary'
+- 'Beyond the Boundary'
+- 'Beyond the Boundary: Kyoukai no Kanata'
+- 'Megane-hen'
+- 'За гранню'
+- 'Отвъд хоризонта'
+- '境界の彼方'
+- '境界的彼方'
+- '경계의 저편'
+https://www.youtube.com/watch?v=O-UWCu7v-3I:
+- 'Prison School'
+- 'Kangoku Gakuen'
+- '監獄学園[プリズンスクール]'
+- '감옥학원'
+https://www.youtube.com/watch?v=MR7xA2JbNCQ:
+- 'Mazinger Z'
+- 'Mazinga Z'
+- 'TranZor Z'
+- 'マジンガーZ'
+https://www.youtube.com/watch?v=c3OZ5apjSwk:
+- 'Shin Mazinger Shougeki! Z Hen on Television'
+- 'Mazinger Edition Z - The Impact'
+- 'Mazinger Edition Z: The Impact!'
+- 'Mazinger Z: Edición Impacto!'
+- 'Shin Mazinger'
+- 'True Mazinger'
+- 'True Mazinger Impact! Z Chapter'
+- 'True Mazinger Impact! Z Chapter on television'
+- 'مازنجر الحقيقي'
+- '真マジンガー 衝撃! Z編 on television'
+- '真魔神Z'
+https://www.youtube.com/watch?v=UDjkXkMTg-c:
+- 'Great Mazinger'
+- 'Gran Mazinger'
+- 'Il grande Mazinga'
+- 'Il grande Mazinger'
+- 'مازنجر'
+- 'グレートマジンガー'
+https://www.youtube.com/watch?v=S5o0KaXDlzY:
+- 'Mazinkaiser SKL'
+- 'Mazinkaiser Skull'
+- 'Mazinkaizer SKL'
+- 'マジンカイザー SKL'
+https://www.youtube.com/watch?v=IoaYuQxRxKo:
+- 'Claymore'
+- 'クレイモア'
+https://www.youtube.com/watch?v=UuP42KOOkyQ:
+- 'Hanasakeru Seishounen'
+- 'Hanasakeru Seishonen'
+- '花咲ける青少年'
+https://www.youtube.com/watch?v=oYDKDrQaJ9Q:
+- 'Kyousougiga (2013)'
+- 'Capital Craze Comic (2013)'
+- 'Kyousogiga (2013)'
+- 'kyousougiga tv'
+- 'Mirror Capital'
+- 'קיוסוגיגה'
+- '京騒戯画 (2013)'
+https://www.youtube.com/watch?v=DMyF9DiMH1A:
+- 'Urusei Yatsura'
+- 'Lamu'
+- 'Lamu - Lum, La Chica Invasora'
+- 'Lamù la ragazza dello spazio'
+- 'Lum'
+- 'Lum the Invader Girl'
+- 'Lum TV'
+- 'Those Obnoxious Aliens'
+- 'Turma do Barulho'
+- 'Uru'
+- 'Urusei Yatsura TV'
+- 'UY'
+- 'Несносные пришельцы'
+- 'うる星やつら'
+https://www.youtube.com/watch?v=Sn_uVt0pGrI:
+- 'Urusei Yatsura'
+- 'Lamu'
+- 'Lamu - Lum, La Chica Invasora'
+- 'Lamù la ragazza dello spazio'
+- 'Lum'
+- 'Lum the Invader Girl'
+- 'Lum TV'
+- 'Those Obnoxious Aliens'
+- 'Turma do Barulho'
+- 'Uru'
+- 'Urusei Yatsura TV'
+- 'UY'
+- 'Несносные пришельцы'
+- 'うる星やつら'
+https://www.youtube.com/watch?v=02MGVX8A6Ec:
+- 'Urusei Yatsura'
+- 'Lamu'
+- 'Lamu - Lum, La Chica Invasora'
+- 'Lamù la ragazza dello spazio'
+- 'Lum'
+- 'Lum the Invader Girl'
+- 'Lum TV'
+- 'Those Obnoxious Aliens'
+- 'Turma do Barulho'
+- 'Uru'
+- 'Urusei Yatsura TV'
+- 'UY'
+- 'Несносные пришельцы'
+- 'うる星やつら'
+https://www.youtube.com/watch?v=UGCr2kgW-e4:
+- 'Bang Dream!'
+- 'Bang Dream'
+- 'BanG Dream'
+- 'BanG Dream!'
+https://www.youtube.com/watch?v=Agm-_culDz8:
+- 'Jinrui wa Suitai Shimashita'
+- 'El declive de la humanidad'
+- 'Humanity Has Declined'
+- 'Jintai'
+- 'Mankind Has Fallen'
+- 'Човечеството запада'
+- '人类衰退之后'
+- '人退'
+- '人類は衰退しました'
+- '人類衰退之後'
+https://www.youtube.com/watch?v=SY_TG1EvwxU:
+- 'Keroro'
+- 'Keroro Gunsou (2014)'
+- 'Keroro Gunsou TV 2'
+- '☆ケロロ☆'
+- 'ケロロ'
+https://www.youtube.com/watch?v=M9KeGflHaq4:
+- 'Keroro'
+- 'Keroro Gunsou (2014)'
+- 'Keroro Gunsou TV 2'
+- '☆ケロロ☆'
+- 'ケロロ'
+https://www.youtube.com/watch?v=Syd129Vla0Q:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=1L_uO6UPC0M:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=fEMyemsk7kA:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=td2pAEPLSBg:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=V_7VIItPi2M:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=Oeq3xzUtKsM:
+- 'Ranma 1/2 Nettou Hen'
+- 'Ranma'
+- 'Ranma 1/2 (1989)'
+- 'Ranma 1/2 (Continuação)'
+- 'Ranma 1/2 (suite)'
+- 'Ranma 1/2 (Teil 2)'
+- 'Ranma 1/2 Nettouhen'
+- 'Ranma Nibun No Ichi: Nettohen'
+- 'Ranma ½ (1989)'
+- 'Ранма 1/2 (1989-1992)'
+- 'רנמה 1/2'
+- 'رانما1/2'
+- 'らんま1/2 熱闘編'
+- '乱马1/2 热斗篇'
+- '亂馬1/2 熱鬥篇'
+https://www.youtube.com/watch?v=SkGiz4hQJEM:
+- 'Sidonia no Kishi'
+- 'Knights of Sidonia'
+- 'シドニアの騎士'
+https://www.youtube.com/watch?v=lImMw-cKw_4:
+- 'Tegami Bachi Reverse'
+- 'bee2'
+- 'Letter Bee 2'
+- 'Letter Bee REVERSE'
+- 'Letter Bee Reverse'
+- 'tb2'
+- 'tbr'
+- 'Tegami Bachi 2'
+- 'Tegami Bachi: Letter Bee Reverse'
+- 'テガミバチ REVERSE'
+https://www.youtube.com/watch?v=uqlk8P22XYc:
+- 'Tsurezure Children'
+- 'Tsure*Dure Children'
+- 'Tsuredure Children'
+- '徒然チルドレン'
+https://www.youtube.com/watch?v=UQUEZ4kGwMU:
+- 'Black Jack (2004)'
+- 'BJ 04'
+- 'bjtv'
+- 'Black Jack'
+- 'Black Jack TV'
+- 'Блек Джак (2004)'
+- 'แบล็คแจ็คหมอปีศาจ'
+- 'ブラックジャック (2004)'
+- '怪醫黑傑克'
+https://www.youtube.com/watch?v=xXriNZjvPyk:
+- 'Young Black Jack'
+- 'ヤング ブラック・ジャック'
+https://www.youtube.com/watch?v=m7dF3Blhg_o:
+- 'Black Jack'
+- 'Black Jack Final'
+- 'Black Jack OVA'
+- 'ブラック・ジャック'
+https://www.youtube.com/watch?v=RvZ_f9umldU:
+- 'Hana yori Dango'
+- 'BOF'
+- 'Boys Before Flowers'
+- 'Boys Over Flowers'
+- 'Hana Yori Dango'
+- 'HYD'
+- 'HYD TV'
+- 'شباب على الزهور'
+- '花より男子'
+https://www.youtube.com/watch?v=0xTEksnrmEw:
+- 'K: Return of Kings'
+- 'K 2nd Season'
+- 'K RETURN OF KINGS'
+- 'K-Project 2'
+- 'K-Project Sequel'
+- 'K: Return Of Kings'
+https://www.youtube.com/watch?v=DPWPd5d0sQk:
+- 'Shaman King'
+- 'シャーマンキング'
+https://www.youtube.com/watch?v=ufjAq4au2mo:
+- 'Shaman King'
+- 'シャーマンキング'
+https://www.youtube.com/watch?v=hIXKFbNB9U4:
+- 'Tantei Gakuen Q'
+- 'DAQ'
+- 'Detective Academy Q'
+- 'Detective School Q'
+- 'Escuela de detectives'
+- 'TGQ'
+- 'โรงเรียนนักสืบQ'
+- '探偵学園Q'
+https://www.youtube.com/watch?v=AFnF2E6nJDw:
+- 'Inuyashiki'
+- 'INUYASHIKI LAST HERO'
+- 'Inuyashiki: Last Hero'
+- 'いぬやしき'
+https://www.youtube.com/watch?v=cUlCbewOEHc:
+- 'Hayate no Gotoku!'
+- 'Hayate the Combat Butler'
+- 'ハヤテのごとく!'
+https://www.youtube.com/watch?v=03x0bU2w9HI:
+- 'Lucky Star'
+- 'Estrela da Sorte'
+- 'ls'
+- 'LSTV'
+- 'Lucky Star TV'
+- 'Lucky☆Star'
+- 'L☆S'
+- 'Ngôi sao may mắn'
+- 'Szczęśliwa gwiazda'
+- 'Şanslı Yıldız'
+- 'Зірка☆Щастя'
+- 'Късметлийска звезда'
+- 'Лакі☆Стар'
+- 'Счастливая Звезда'
+- 'نجم محظوظ'
+- 'らき☆すた'
+- '幸运☆星'
+- '幸运星'
+- '幸運☆星'
+- '러키☆스타'
+https://www.youtube.com/watch?v=0Y4taQosGFs:
+- 'Pandora Hearts'
+- 'PandoraHearts'
+- 'PH'
+- 'Сердца Пандоры'
+- 'قلوب باندورا'
+- 'パンドラハーツ'
+- '潘多拉之心'
+- '潘朵拉之心'
+https://www.youtube.com/watch?v=0H_RCGEcjhs:
+- 'Dungeon ni Deai o Motomeru no wa Machigatte Iru Darouka: Familia Myth'
+- 'danmachi'
+- 'DanMachi : Familia Myth'
+- 'DanMachi: ¿Está mal seducir chicas en un calabozo?'
+- 'DanMachi: ¿Qué tiene de malo intentar ligar en una mazmorra?'
+- 'Dungeon ni Deai wo Motomeru no wa Machigatteiru Darou ka'
+- 'Is het Verkeerd om Meisjes Op te Pikken in Een Dungeon?'
+- 'Is It Wrong to Try to Pick Up Girls in a Dungeon?'
+- 'В подземелье я пойду'
+- 'Невже шукати дівчину в підземеллі - неправильно?'
+- 'там красавицу найду'
+- 'ダンジョンに出会いを求めるのは間違っているだろうか FAMILIA MYTH'
+- '在地下城寻求邂逅是否搞错了什么'
+- '던전에서 만남을 추구하면 안 되는 걸까?'
+https://www.youtube.com/watch?v=w_sfQy9AUfQ:
+- 'Genshiken'
+- 'Gendai Shikaku Bunka Kenkyuu Kai'
+- 'Genshiken - Club d`étude de la culture visuelle moderne'
+- 'Genshiken - Gesellschaft zum Studium moderner visueller Kultur'
+- 'Genshiken TV'
+- 'Genshiken: The Society for the Study of Modern Visual Culture'
+- 'Sociedad para el Estudio de la Cultura Visual Moderna'
+- 'Society for the Study of Modern Visual Culture'
+- 'The Society for the Study of Modern Visual Culture'
+- 'Гэнсикэн'
+- 'Ґеншікен'
+- 'مجتمع دراسة الثقافة المرئية الحديثة'
+- 'げんしけん'
+- 'ゲンシケン'
+- '现视研'
+- '現代視覚文化研究会'
+https://www.youtube.com/watch?v=-rIE7Qr4J0U:
+- 'Hai to Gensou no Grimgar'
+- 'Grimgar : Le monde de cendres et de fantaisie'
+- 'Grimgar of Fantasy and Ash'
+- 'Grimgar: Ashes and Illusions'
+- 'Гримгар'
+- 'свят на фантазии и пепел'
+- '灰と幻想のグリムガル'
+- '재와 환상의 그림갈'
+https://www.youtube.com/watch?v=I59V9pjEOLI:
+- 'Mirai Nikki'
+- 'Mirai Nikki (2011)'
+- 'The Future Diary'
+- '未来日記'
+https://www.youtube.com/watch?v=0_36iNzrEn0:
+- 'Mirai Nikki'
+- 'Mirai Nikki (2011)'
+- 'The Future Diary'
+- '未来日記'
+https://www.youtube.com/watch?v=2lx0S9LrOPc:
+- 'Mirai Nikki'
+- 'Mirai Nikki (2011)'
+- 'The Future Diary'
+- '未来日記'
+https://www.youtube.com/watch?v=J8hwDQJRU7E:
+- 'Soukou Kihei Votoms'
+- 'Armored Trooper Votoms'
+- 'Soko Kihei Votoms'
+- 'Votoms'
+- 'Votoms TV'
+- 'Zırhlı Piyade Votoms'
+- '装甲騎兵ボトムズ'
+https://www.youtube.com/watch?v=32dgEs0IDaM:
+- 'Ao Haru Ride'
+- 'aoha'
+- 'Aoharaido'
+- 'Blue Spring Ride'
+- 'Youth Ride'
+- 'Неудержимая юность'
+- 'Пътят на младостта'
+- 'アオハライド'
+https://www.youtube.com/watch?v=6vK92aJLaqE:
+- 'Arakawa Under the Bridge'
+- 'Arakava Po Tiltu'
+- 'Arakawa'
+- 'AUtB'
+- 'Под моста на Аракава'
+- '荒川アンダーザブリッジ'
+- '荒川爆笑团'
+- '荒川爆笑團'
+- '아라카와 언더 더 브리지'
+https://www.youtube.com/watch?v=PSGYL-ZD0_Q:
+- 'Arslan Senki'
+- 'The Heroic Legend of Arslan'
+- 'アルスラーン戦記'
+https://www.youtube.com/watch?v=Je2IrHp8bg8:
+- 'Rozen Maiden'
+- 'ローゼンメイデン'
+https://www.youtube.com/watch?v=B2JplQgMfis:
+- 'Rozen Maiden'
+- 'ローゼンメイデン'
+https://www.youtube.com/watch?v=LH7Hw18M56Q:
+- 'Rozen Maiden: Traumend'
+- 'rm2'
+- 'rmt'
+- 'Rozen Maiden - Träumend'
+- 'Rozen Maiden 2'
+- 'Rozen Maiden Traumend'
+- 'Rozen Maiden träumend'
+- 'Rozen Maiden Träumend'
+- 'Rozen Maiden: Dreaming'
+- 'Діви Розена: Сни'
+- 'ローゼンメイデン トロイメント'
+- '蔷薇少女2~梦见~'
+https://www.youtube.com/watch?v=dt6XXfcdVY0:
+- 'Space Cobra'
+- 'Space Adventure Cobra'
+- 'Super Agente Cobra'
+- 'スペースアドベンチャー コブラ'
+- 'スペースコブラ'
+https://www.youtube.com/watch?v=9-01piZuA6o:
+- 'Tetsuwan Birdy Decode'
+- 'Birdy the Mighty TV'
+- 'Birdy the Mighty: Decode'
+- 'Tetsuwan Birdy (2008)'
+- '鉄腕バーディー (2008)'
+https://www.youtube.com/watch?v=krja5ERoykg:
+- 'Tetsuwan Birdy Decode'
+- 'Birdy the Mighty TV'
+- 'Birdy the Mighty: Decode'
+- 'Tetsuwan Birdy (2008)'
+- '鉄腕バーディー (2008)'
+https://www.youtube.com/watch?v=80-W822k6Vw:
+- 'Ao no Exorcist'
+- 'AnE'
+- 'Ao no Futsumashi'
+- 'AoEx'
+- 'Blue Exorcist'
+- 'Синий экзорцист'
+- 'Синият Екзорсист'
+- 'المعوذ الأزرق'
+- 'اگزورسیست آبی'
+- 'جن گیر آبی'
+- 'جنگیر آبی'
+- '青のエクソシスト'
+- '青の祓魔師'
+- '青エク'
+- '青之驱魔师'
+https://www.youtube.com/watch?v=5ZPELMm-W68:
+- 'Ao no Exorcist'
+- 'AnE'
+- 'Ao no Futsumashi'
+- 'AoEx'
+- 'Blue Exorcist'
+- 'Синий экзорцист'
+- 'Синият Екзорсист'
+- 'المعوذ الأزرق'
+- 'اگزورسیست آبی'
+- 'جن گیر آبی'
+- 'جنگیر آبی'
+- '青のエクソシスト'
+- '青の祓魔師'
+- '青エク'
+- '青之驱魔师'
+https://www.youtube.com/watch?v=2hw9setFP4k:
+- 'Ao no Exorcist'
+- 'AnE'
+- 'Ao no Futsumashi'
+- 'AoEx'
+- 'Blue Exorcist'
+- 'Синий экзорцист'
+- 'Синият Екзорсист'
+- 'المعوذ الأزرق'
+- 'اگزورسیست آبی'
+- 'جن گیر آبی'
+- 'جنگیر آبی'
+- '青のエクソシスト'
+- '青の祓魔師'
+- '青エク'
+- '青之驱魔师'
+https://www.youtube.com/watch?v=FQK8Ve14A34:
+- 'Hourou Musuko'
+- 'Wandering Son'
+- 'Блудный сын'
+- '放浪息子'
+https://www.youtube.com/watch?v=GYorCbtf7P8:
+- 'Nisekoi'
+- 'Nisekoi: False Love'
+- 'ニセコイ'
+https://www.youtube.com/watch?v=ibCNze1BXpQ:
+- 'Nisekoi'
+- 'Nisekoi: False Love'
+- 'ニセコイ'
+https://www.youtube.com/watch?v=aAABi6Y3VQk:
+- 'Soredemo Sekai wa Utsukushii'
+- 'soreseka'
+- 'Still'
+- 'Still World Is Beautiful'
+- 'the World Is Beautiful'
+- 'The World Is Still Beautiful'
+- 'The World is Still Beautiful'
+- 'それでも世界は美しい Still world is Beautiful'
+- '即使如此世界依然美麗'
+https://www.youtube.com/watch?v=fVwTk7wk7ew:
+- 'To LOVE-Ru Darkness'
+- 'To LOVE Ru Darkness'
+- 'To LOVE-Ru Trouble Darkness'
+- 'To LOVEる -とらぶる- ダークネス'
+- 'To-Love-Ru Darkness'
+- 'ToLoveRu Darkness'
+https://www.youtube.com/watch?v=q5z57qYE2hw:
+- 'Motto To LOVE-Ru'
+- 'More ToLoveRu'
+- 'More Trouble'
+- 'Motto To LOVE Ru'
+- 'Motto To Love Ru'
+- 'Motto To Love-Ru'
+- 'Motto To-Love-Ru'
+- 'もっと To LOVEる -とらぶる-'
+https://www.youtube.com/watch?v=xxb51uh5bWk:
+- 'To LOVE-Ru Darkness'
+- 'To LOVE Ru Darkness'
+- 'To LOVE-Ru Trouble Darkness'
+- 'To LOVEる -とらぶる- ダークネス'
+- 'To-Love-Ru Darkness'
+- 'ToLoveRu Darkness'
+https://www.youtube.com/watch?v=Avr-Iu5vWsM:
+- 'Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation'
+- 'Dangan Ronpa the Animation'
+- 'Danganronpa'
+- 'Danganronpa: The Animation'
+- 'Murder School'
+- 'ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION'
+- '단간론파'
+https://www.youtube.com/watch?v=wrCJgIHQN0I:
+- 'Danganronpa: Kibou no Gakuen to Zetsubou no Koukousei - The Animation'
+- 'Dangan Ronpa the Animation'
+- 'Danganronpa'
+- 'Danganronpa: The Animation'
+- 'Murder School'
+- 'ダンガンロンパ 希望の学園と絶望の高校生 THE ANIMATION'
+- '단간론파'
+https://www.youtube.com/watch?v=YGncI1V3S6M:
+- 'Ichigo Mashimaro'
+- 'Strawberry Marshmallow'
+- '苺ましまろ'
+https://www.youtube.com/watch?v=EZRo8Z1Ser8:
+- 'Panty & Stocking with Garterbelt'
+- 'pansuto'
+- 'Panty and Stocking with Garterbelt'
+- 'Panty&Stocking with Garterbelt'
+- 'psg'
+- 'Панти и Стокинг с Гартербелт'
+- 'Труселя и Колготы'
+- 'Труська'
+- 'Чулко и Пресвятой Подвяз'
+- 'パンティ&ストッキングwithガーターベルト'
+- '吊带袜天使'
+- '팬티 & 스타킹 with 가터벨트'
+https://www.youtube.com/watch?v=M8oyfP4XKeM:
+- 'Piano no Mori'
+- 'A Floresta do Piano'
+- 'A Floresta do Piano: O Mundo Perfeito de Kai'
+- 'Klaver metsas'
+- 'Piano Forest'
+- 'Piano no Mori: The Perfect World of Kai'
+- 'Pianul din Padure'
+- 'Piyanonun Ormanı'
+- 'The Perfect World of Kai'
+- 'The Piano Forest'
+- 'Рояль в лесу'
+- 'ピアノの森'
+- 'ピアノの森 The Perfect World of Kai'
+- '피아노의 숲'
+https://www.youtube.com/watch?v=tPf8m_CryzM:
+- 'Sarazanmai'
+- 'さらざんまい'
+https://www.youtube.com/watch?v=u3SzOzm8lmo:
+- 'Texhnolyze'
+- 'Technolyze'
+- 'TEXHNOLYZE'
+- 'TEXHNOLYZE テクノライズ'
+https://www.youtube.com/watch?v=enSSxecPXYY:
+- 'Koyomimonogatari'
+- '暦物語'
+https://www.youtube.com/watch?v=MxoJvOE7hcU:
+- 'Owari no Seraph'
+- 'Serafin Dni Ostatnich'
+- 'Seraph of the End'
+- 'Seraph of the End: Vampire Reign'
+- 'Последний Серафим'
+- '終わりのセラフ Seraph of the end'
+- '종말의 세라프'
+https://www.youtube.com/watch?v=ikZPzwfiBYA:
+- 'Romeo x Juliet'
+- 'Romeo X Juliet'
+- 'RomeoxJuliet'
+- 'ロミオ × ジュリエット'
+- 'ロミオ×ジュリエット'
+https://www.youtube.com/watch?v=jbhcChdCAUk:
+- 'Escaflowne'
+- 'Tenkuu no Escaflowne'
+- 'The Vision of Escaflowne'
+- '天空のエスカフローネ'
+https://www.youtube.com/watch?v=e0oitN2clAw:
+- 'Gabriel DropOut'
+- 'ガヴリールドロップアウト'
+https://www.youtube.com/watch?v=ljdPRlN9g_Y:
+- 'Gakuen Alice'
+- 'AC'
+- 'Alice Academy'
+- 'alice g'
+- 'Campus Alice'
+- 'L`académie Alice'
+- 'أكاديمية أليس'
+- '学园爱丽丝'
+- '学園アリス'
+- '愛麗絲學園'
+- '학원 앨리스'
+https://www.youtube.com/watch?v=KAO743dXVqM:
+- 'Blood: The Last Vampire'
+- 'Blood'
+- 'Blood - Az utolsó vámpír'
+- 'Blood - The Last Vampire'
+- 'Blood - 最后的吸血鬼'
+- 'BLOOD THE LAST VAMPIRE'
+- 'Blood, el último vampiro'
+- 'Blood, l`últim vampir'
+- 'Blood: O Último Vampiro'
+- 'Blood: Последния вампир'
+- 'BtLV'
+- 'Kan: Son Vampir'
+- 'Kraujas: Paskutinis vampyras'
+- 'Кровь'
+- 'Кровь: Последний вампир'
+- 'Кръв: Последният вампир'
+- 'บลัด เดอะลาสท์แวมไพร์'
+https://www.youtube.com/watch?v=FWDrc1nIKlA:
+- 'Blood: The Last Vampire'
+- 'Blood'
+- 'Blood - Az utolsó vámpír'
+- 'Blood - The Last Vampire'
+- 'Blood - 最后的吸血鬼'
+- 'BLOOD THE LAST VAMPIRE'
+- 'Blood, el último vampiro'
+- 'Blood, l`últim vampir'
+- 'Blood: O Último Vampiro'
+- 'Blood: Последния вампир'
+- 'BtLV'
+- 'Kan: Son Vampir'
+- 'Kraujas: Paskutinis vampyras'
+- 'Кровь'
+- 'Кровь: Последний вампир'
+- 'Кръв: Последният вампир'
+- 'บลัด เดอะลาสท์แวมไพร์'
+https://www.youtube.com/watch?v=KSI_lwmtcoo:
+- 'Blood: The Last Vampire'
+- 'Blood'
+- 'Blood - Az utolsó vámpír'
+- 'Blood - The Last Vampire'
+- 'Blood - 最后的吸血鬼'
+- 'BLOOD THE LAST VAMPIRE'
+- 'Blood, el último vampiro'
+- 'Blood, l`últim vampir'
+- 'Blood: O Último Vampiro'
+- 'Blood: Последния вампир'
+- 'BtLV'
+- 'Kan: Son Vampir'
+- 'Kraujas: Paskutinis vampyras'
+- 'Кровь'
+- 'Кровь: Последний вампир'
+- 'Кръв: Последният вампир'
+- 'บลัด เดอะลาสท์แวมไพร์'
+https://www.youtube.com/watch?v=JaxUqFJ3JT4:
+- 'Bounen no Xamdou'
+- 'BnX'
+- 'Xam`d: Kayıp Hatıralar'
+- 'Xam`d: Lost Memories'
+- 'xamd'
+- 'Ксам`д: Потерянные Воспоминания'
+- 'ذكريات زامد الضائعة'
+- '亡念のザムド'
+- '亡念的扎穆德'
+https://www.youtube.com/watch?v=n76Vc8Fs0PM:
+- 'Chrno Crusade'
+- 'cc'
+- 'Chrno Crusade: Mary Magdalene'
+- 'Chrono Crusade'
+- 'Крестовый поход Хроно'
+- 'Кръстоносният поход на Хроно'
+- 'クロノクルセイド'
+https://www.youtube.com/watch?v=Xrz0e9BGaJs:
+- 'Fushigi Yuugi'
+- 'Curious Play'
+- 'Fushigi Yugi'
+- 'Fushigi Yugi: The Mysterious Play'
+- 'Mysterious Play'
+- 'ふしぎ遊戯'
+https://www.youtube.com/watch?v=UE-CdJCLGmA:
+- 'Mujin Wakusei Survive'
+- 'MuWa'
+- 'Planet Survival'
+- 'Survivants'
+- 'Survive'
+- 'Survive! - Uninhabited Planet'
+- 'Uninhabited Planet Survival'
+- 'Uninhabited Planet SURVIVE'
+- 'Uninhabited Planet Survive'
+- 'ups'
+- 'Выжить на необитаемой планете'
+- 'כוכב ההישרדות'
+- 'مغامرات الكوكب المهجور'
+- '無人惑星サヴァイヴ'
+https://www.youtube.com/watch?v=es-aLJ3YPBg:
+- 'Mujin Wakusei Survive'
+- 'MuWa'
+- 'Planet Survival'
+- 'Survivants'
+- 'Survive'
+- 'Survive! - Uninhabited Planet'
+- 'Uninhabited Planet Survival'
+- 'Uninhabited Planet SURVIVE'
+- 'Uninhabited Planet Survive'
+- 'ups'
+- 'Выжить на необитаемой планете'
+- 'כוכב ההישרדות'
+- 'مغامرات الكوكب المهجور'
+- '無人惑星サヴァイヴ'
+https://www.youtube.com/watch?v=OKSrgdEG2Fo:
+- 'Sora no Otoshimono'
+- 'Heaven''s Lost Property'
+- 'Lost Property of the Sky'
+- 'Misplaced by Heaven'
+- 'そらのおとしもの'
+https://www.youtube.com/watch?v=wPcE4ZEg3vs:
+- 'Hinomaru Zumou'
+- 'Hinomaru Sumo'
+- 'Hinozumo'
+- '火ノ丸相撲'
+- '火之丸相撲'
+- '히노마루 스모'
+https://www.youtube.com/watch?v=p5uQ87OItqU:
+- 'Hinomaru Zumou'
+- 'Hinomaru Sumo'
+- 'Hinozumo'
+- '火ノ丸相撲'
+- '火之丸相撲'
+- '히노마루 스모'
+https://www.youtube.com/watch?v=LTOZhZSr6RY:
+- 'Kimagure Orange Road'
+- 'Capricciosa Orange Road'
+- 'Capricious Orange Road'
+- 'Johnny y sus amigos'
+- 'Kimagure Orange Road TV'
+- 'KOR'
+- 'kor tv'
+- 'Max & compagnie'
+- 'Max et compagnie'
+- 'Orange Road - Superfamiljen'
+- 'Portakal Yolu'
+- 'Superperhe'
+- 'È quasi magia Johnny'
+- 'Капризы Апельсиновой улицы [ТВ]'
+- 'きまぐれオレンジ☆ロード'
+- '橙路'
+- '변덕쟁이 오렌지☆로드'
+- '오렌지로드'
+https://www.youtube.com/watch?v=I_x_45Xwnkk:
+- 'Mahou Sensei Negima!'
+- 'Le maître magicien Negima !'
+- 'Magic Teacher Negima'
+- 'Magister Negi Magi'
+- 'Magister Negima'
+- 'Mahou Sensei Negima'
+- 'msn'
+- 'negi'
+- 'negima'
+- 'Negima!'
+- 'Волшебный учитель Нэгима!'
+- 'Магічний вчитель Неґіма!'
+- 'คุณครูจอมเวท เนกิมะ!'
+- '魔法先生 ネギま!'
+- '魔法老師'
+https://www.youtube.com/watch?v=z7sJHgyROrY:
+- 'Mahou Sensei Negima!'
+- 'Le maître magicien Negima !'
+- 'Magic Teacher Negima'
+- 'Magister Negi Magi'
+- 'Magister Negima'
+- 'Mahou Sensei Negima'
+- 'msn'
+- 'negi'
+- 'negima'
+- 'Negima!'
+- 'Волшебный учитель Нэгима!'
+- 'Магічний вчитель Неґіма!'
+- 'คุณครูจอมเวท เนกิมะ!'
+- '魔法先生 ネギま!'
+- '魔法老師'
+https://www.youtube.com/watch?v=KeC_u0Mn6xQ:
+- 'Mahou Sensei Negima!'
+- 'Le maître magicien Negima !'
+- 'Magic Teacher Negima'
+- 'Magister Negi Magi'
+- 'Magister Negima'
+- 'Mahou Sensei Negima'
+- 'msn'
+- 'negi'
+- 'negima'
+- 'Negima!'
+- 'Волшебный учитель Нэгима!'
+- 'Магічний вчитель Неґіма!'
+- 'คุณครูจอมเวท เนกิมะ!'
+- '魔法先生 ネギま!'
+- '魔法老師'
+https://www.youtube.com/watch?v=f8lyyT0dQ9Y:
+- 'R.O.D OVA'
+- 'R.O.D - READ OR DIE'
+- 'R.O.D - Read or Die'
+- 'R.O.D リード・オア・ダイ'
+- 'R.O.D.'
+- 'Read or Die'
+- 'Read or Die OVA'
+- 'ROD'
+- 'ROD OVA'
+https://www.youtube.com/watch?v=6ogz68X3HUE:
+- 'To LOVE-Ru Darkness'
+- 'To LOVE Ru Darkness'
+- 'To LOVE-Ru Trouble Darkness'
+- 'To LOVEる -とらぶる- ダークネス'
+- 'To-Love-Ru Darkness'
+- 'ToLoveRu Darkness'
+https://www.youtube.com/watch?v=05p646nlYS0:
+- 'Bokurano'
+- 'Bokurano: Ours'
+- 'ぼくらの'
+https://www.youtube.com/watch?v=_E2XXe3esgE:
+- 'Densetsu no Yuusha no Densetsu'
+- 'Densetsu no Yusha no Densetsu'
+- 'DenYuDen'
+- 'DenYuuDen'
+- 'LOLH'
+- 'The Legend of the Legendary Heroes'
+- '伝説の勇者の伝説'
+https://www.youtube.com/watch?v=j5npIyCcv8k:
+- 'Densetsu no Yuusha no Densetsu'
+- 'Densetsu no Yusha no Densetsu'
+- 'DenYuDen'
+- 'DenYuuDen'
+- 'LOLH'
+- 'The Legend of the Legendary Heroes'
+- '伝説の勇者の伝説'
+https://www.youtube.com/watch?v=iBfoYjb7Y7k:
+- 'Garo: Honoo no Kokuin'
+- 'garo'
+- 'Garo the Animation'
+- 'Garo: The Animation'
+- '牙狼 炎之刻印'
+- '牙狼[GARO]-炎の刻印-'
+https://www.youtube.com/watch?v=eeXU6ciFubk:
+- 'Garo: Honoo no Kokuin'
+- 'garo'
+- 'Garo the Animation'
+- 'Garo: The Animation'
+- '牙狼 炎之刻印'
+- '牙狼[GARO]-炎の刻印-'
+https://www.youtube.com/watch?v=q9B7cbdjt8I:
+- 'High School DxD'
+- 'Highschool DxD'
+- 'ハイスクールD×D'
+https://www.youtube.com/watch?v=-5feX8g1nM4:
+- 'High School DxD Born'
+- 'Highschool DxD BorN'
+- 'ハイスクールDxD BorN'
+https://www.youtube.com/watch?v=AkjL42f10eY:
+- 'High School DxD'
+- 'DxD'
+- 'Harem King'
+- 'HDD'
+- 'Демоны старшей школы'
+- 'Старша школа DxD'
+- 'ハイスクールDxD'
+- '惡魔高校'
+- '惡魔高校D×D'
+- '高校龍中龍'
+- '하이스쿨 DxD'
+https://www.youtube.com/watch?v=M2ssHyFbOtw:
+- 'High School DxD New'
+- 'High School DxD 2nd Season'
+- 'High School DxD Dai 2-ki'
+- 'High School DxD Second Season'
+- 'Highschool DxD 2'
+- 'ハイスクールD×D NEW'
+https://www.youtube.com/watch?v=OppMPRDxCuA:
+- 'High School DxD New'
+- 'High School DxD 2nd Season'
+- 'High School DxD Dai 2-ki'
+- 'High School DxD Second Season'
+- 'Highschool DxD 2'
+- 'ハイスクールD×D NEW'
+https://www.youtube.com/watch?v=-anabfAg06U:
+- 'Mousou Dairinin'
+- 'Mousou'
+- 'PAG'
+- 'Para Agent'
+- 'Paranoia Agent'
+- 'Paranojos Agentas'
+- 'Paranoya Etmeni'
+- 'Агент паранойи'
+- 'Агент Паранойя'
+- 'Щамът "Параноя"'
+- '妄想代理人'
+https://www.youtube.com/watch?v=07sg564pM9U:
+- 'Rakudai Kishi no Cavalry'
+- 'A Chivalry of the Failed Knight'
+- 'A Tale of Worst One'
+- 'A tale of worst one'
+- 'Chivalry of a Failed Knight'
+- 'Rakudai Kishi no Eiyuutan'
+- '落第騎士の英雄譚《キャバルリィ》'
+- '落第騎士の英雄譚(キャバルリィ)'
+https://www.youtube.com/watch?v=PAvoanZhSl8:
+- 'Utawarerumono'
+- 'Le chant des rêves'
+- 'o Którym Śpiewają Legendy'
+- 'Ten'
+- 'The One Being Sung'
+- 'The One of Whom Legends Are Sung'
+- 'utaware'
+- 'Utawareru Mono'
+- 'Utawarerumono - Heldenlied'
+- 'uwm'
+- 'Прославения'
+- 'Прославленный'
+- 'ריי רומונו מתחת למים'
+- 'うたわれるもの'
+- '传诵'
+- '传诵之物'
+- '传颂'
+- '传颂之物'
+- '칭송받는 자'
+https://www.youtube.com/watch?v=jtWUTVOrqGc:
+- 'Utawarerumono'
+- 'Le chant des rêves'
+- 'o Którym Śpiewają Legendy'
+- 'Ten'
+- 'The One Being Sung'
+- 'The One of Whom Legends Are Sung'
+- 'utaware'
+- 'Utawareru Mono'
+- 'Utawarerumono - Heldenlied'
+- 'uwm'
+- 'Прославения'
+- 'Прославленный'
+- 'ריי רומונו מתחת למים'
+- 'うたわれるもの'
+- '传诵'
+- '传诵之物'
+- '传颂'
+- '传颂之物'
+- '칭송받는 자'
+https://www.youtube.com/watch?v=kupW7eDG48s:
+- 'Another'
+- 'アナザー'
+https://www.youtube.com/watch?v=68lDew_mVz4:
+- 'Mahouka Koukou no Rettousei'
+- 'The Irregular at Magic High School'
+- '魔法科高校の劣等生'
+https://www.youtube.com/watch?v=b6pNl7qejNw:
+- 'Mahouka Koukou no Rettousei'
+- 'The Irregular at Magic High School'
+- '魔法科高校の劣等生'
+https://www.youtube.com/watch?v=Qml0mNDJvKs:
+- 'Orange'
+- 'orange'
+https://www.youtube.com/watch?v=0Vwwr3VGsYg:
+- 'Re:Zero kara Hajimeru Isekai Seikatsu'
+- 'Re Zero kara Hajimeru Isekai Seikatsu'
+- 'Re: Life in a Different World from Zero'
+- 'Re: 从零开始的异世界生活'
+- 'Re:Zero'
+- 'Re:Zero - Starting Life in Another World'
+- 'Re:ゼロから始める異世界生活'
+- 'rezero'
+- 'rizero'
+- 'リゼロ'
+- '从零开始的异世界'
+https://www.youtube.com/watch?v=O9VOud8y3tg:
+- 'Zombie Land Saga'
+- 'ZOMBIE LAND SAGA'
+- 'Zombieland Saga'
+- 'ゾンビランドサガ'
+https://www.youtube.com/watch?v=N4e6aQF9gMw:
+- 'Ga-Rei: Zero'
+- 'Ga-rei -Zero-'
+- 'Ga-Rei Zero'
+- 'Ga-Rei-Zero'
+- 'garei zero'
+- 'GRZ'
+- 'Га-Рей Зеро'
+- 'Екзорсисти: ЗЕРО'
+- 'Пожиратели Духов: Зеро'
+- '喰霊 -零-'
+- '食灵~零'
+https://www.youtube.com/watch?v=XG9XCndxT8E:
+- 'Hitoribocchi no Marumaru Seikatsu'
+- 'Bocchi Seikatsu'
+- 'Hitori Bocchi''s ○○ Lifestyle'
+- 'Hitoribocchi no Marumaruseikatsu'
+- 'Hitoribocchi no ○○ Seikatsu'
+- 'ひとりぼっちの○○生活'
+https://www.youtube.com/watch?v=A8GZReei1hY:
+- 'Majin Tantei Nougami Neuro'
+- 'Demon Detective Nougami Neuro'
+- 'Neuro: Supernatural Detective'
+- 'Private Evil-Eye Nougami Neuro'
+- '魔人探偵 脳噛ネウロ'
+https://www.youtube.com/watch?v=od5pOw6y2a0:
+- 'Sengoku Basara'
+- 'Sengoku Basara: Samurai Kings'
+- '戦国BASARA'
+https://www.youtube.com/watch?v=lrQN0tPjREk:
+- 'Sengoku Basara'
+- 'Sengoku Basara: Samurai Kings'
+- '戦国BASARA'
+https://www.youtube.com/watch?v=r0z-7WFWbKI:
+- 'Senjou no Valkyria'
+- 'Battlefield Valkyria: Gallian Chronicles'
+- 'Valkyria Chronicles'
+- '戦場のヴァルキュリア'
+https://www.youtube.com/watch?v=8yLeJHcyfww:
+- 'GetBackers'
+- 'Get Backers'
+- 'Getbackers'
+- 'GetBackers: Dakkan''ya'
+- 'ゲットバッカーズ 奪還屋'
+https://www.youtube.com/watch?v=_fIoGXCND4s:
+- 'GetBackers'
+- 'Get Backers'
+- 'Getbackers'
+- 'GetBackers: Dakkan''ya'
+- 'ゲットバッカーズ 奪還屋'
+https://www.youtube.com/watch?v=xht0MY1Tjnk:
+- 'Kekkaishi'
+- 'Barrier Master'
+- '結界師'
+https://www.youtube.com/watch?v=LYy9G7kAb68:
+- 'Noein: Mou Hitori no Kimi e'
+- 'Noein'
+- 'Noein 到另一个你的身边去'
+- 'Noein: Diğer `Sen`e Doğru'
+- 'Noein: To Your Other Self'
+- 'Noein: to your other self'
+- 'Noein: Toward Another You'
+- 'Noein: toward another you'
+- 'Ноеін'
+- 'Ноэйн'
+- 'ノエイン もうひとりの君へ'
+- '到另一个你的身边去'
+https://www.youtube.com/watch?v=g-HcGIino8g:
+- 'Tokyo Ravens'
+- 'Токийски гарвани'
+- 'Токийские вороны'
+- '东京暗鸦'
+- '東京レイヴンズ'
+- '東京闇鴉'
+- '도쿄 레이븐즈'
+https://www.youtube.com/watch?v=EanY3KxkvKY:
+- 'Fune wo Amu'
+- 'The Great Passage'
+- '舟を編む'
+https://www.youtube.com/watch?v=0i0z98M2y5U:
+- 'Goblin Slayer'
+- 'Goblin Katili (Goblin Slayer)'
+- 'Gobusure'
+- 'Убиец на гоблини'
+- 'Убийца гоблинов'
+- 'قاتل الغوبلن'
+- 'ゴブスレ'
+- 'ゴブリンスレイヤー'
+- '哥布林杀手'
+- '고블린 슬레이어'
+https://www.youtube.com/watch?v=FR2CxJHbiUo:
+- 'Inazuma Eleven'
+- 'Inazuma 11'
+- 'Los Super Once'
+- 'Super Onze'
+- 'أبطال الكرة'
+- 'イナズマイレブン'
+https://www.youtube.com/watch?v=zOSMSG1sIEo:
+- 'Inazuma Eleven'
+- 'Inazuma 11'
+- 'Los Super Once'
+- 'Super Onze'
+- 'أبطال الكرة'
+- 'イナズマイレブン'
+https://www.youtube.com/watch?v=GV1p8511PhI:
+- 'Inazuma Eleven'
+- 'Inazuma 11'
+- 'Los Super Once'
+- 'Super Onze'
+- 'أبطال الكرة'
+- 'イナズマイレブン'
+https://www.youtube.com/watch?v=FHSHKe9cK6Q:
+- 'Inazuma Eleven'
+- 'Inazuma 11'
+- 'Los Super Once'
+- 'Super Onze'
+- 'أبطال الكرة'
+- 'イナズマイレブン'
+https://www.youtube.com/watch?v=KmCgorjYxys:
+- 'Inazuma Eleven Go'
+- 'イナズマイレブン Go'
+https://www.youtube.com/watch?v=dqzj4xtH3AM:
+- 'Inazuma Eleven Go'
+- 'イナズマイレブン Go'
+https://www.youtube.com/watch?v=zPeNlsAHbbs:
+- 'Inazuma Eleven Go'
+- 'イナズマイレブン Go'
+https://www.youtube.com/watch?v=Yxg-AADx39w:
+- 'Kemono Friends'
+- 'けものフレンズ'
+https://www.youtube.com/watch?v=vPvNWbVSEb0:
+- 'Kore wa Zombie Desu ka?'
+- 'Bu Bir Zombi Mi?'
+- 'Is This a Zombie?'
+- 'Kore ha Zombie Desu ka?'
+- 'Kore wa Zombie desu ka'
+- 'Kore wa Zombie Desuka?'
+- 'Koreha Zombie Desuka?'
+- 'korezom'
+- 'korezombie'
+- 'This is a Zombie?'
+- 'То це зомбі?'
+- 'Уж не зомби ли это?'
+- 'این یه زامبیه؟'
+- 'کوره وا زامبی دس کا؟'
+- 'これはゾンビですか?'
+- 'これゾン'
+- '这是僵尸吗?'
+https://www.youtube.com/watch?v=l-Xie4eZJyg:
+- 'OverDrive'
+- 'OD'
+- 'Over Drive'
+- '铁马少年'
+https://www.youtube.com/watch?v=vkvpA08IJDU:
+- 'Toriko'
+- 'Toriko (2011)'
+- 'Toriko (TV)'
+- 'Toriko x One Piece Collabo Special'
+- 'トリコ'
+https://www.youtube.com/watch?v=4OqMBeMsu6Q:
+- 'Toriko'
+- 'Toriko (2011)'
+- 'Toriko (TV)'
+- 'Toriko x One Piece Collabo Special'
+- 'トリコ'
+https://www.youtube.com/watch?v=8dx4ewFve_k:
+- 'Zero no Tsukaima'
+- 'The Familiar of Zero'
+- 'Zero''s Familiar'
+- 'ゼロの使い魔'
+https://www.youtube.com/watch?v=Xxt1rJW8TXs:
+- 'Zero no Tsukaima'
+- 'The Familiar of Zero'
+- 'Zero''s Familiar'
+- 'ゼロの使い魔'
+https://www.youtube.com/watch?v=FKIT6G_lw7c:
+- '5-toubun no Hanayome'
+- '5-Toubun no Hanayome'
+- 'Go-Toubun no Hanayome'
+- 'Go-toubun no Hanayome'
+- 'Gotoubun no Hanayome'
+- 'The Five Wedded Brides'
+- 'The Quintessential Quintuplets'
+- '五等分の花嫁'
+https://www.youtube.com/watch?v=Hr4e3BPDZoo:
+- 'Hakumei to Mikochi'
+- 'Ashimoto no Arukikata'
+- 'Hakumei & Mikochi'
+- 'Hakumei & Mikochi: Tiny Little Life in the Woods'
+- 'Hakumei and Mikochi'
+- 'HakuMiko'
+- 'Kinou no Akane'
+- 'Kobito Hiyori'
+- 'Kobitobiyori'
+- 'Tiny Little Life in the Woods'
+- 'ハクメイとミコチ'
+https://www.youtube.com/watch?v=HSaqvhvnAgI:
+- 'Strike Witches'
+- 'Strike Witches TV'
+- 'ストライクウィッチーズ'
+https://www.youtube.com/watch?v=LnntMZGBjZY:
+- 'Uchuu Patrol Luluco'
+- 'Space Patrol Luluco'
+- '宇宙パトロールルル子'
+https://www.youtube.com/watch?v=UCRMvRtkIuE:
+- 'To Love-Ru: Trouble'
+- 'tlr'
+- 'To LOVE Ru - Trouble'
+- 'To Loveru'
+- 'To LOVEる -とらぶる-'
+- 'To-Love-Ru'
+- 'toloveru'
+- 'Trouble'
+- 'Любовный переполох'
+- 'Любовь и прочие неприятности'
+- 'とらぶる'
+- '出包王女'
+https://www.youtube.com/watch?v=RO2pKwjtA_w:
+- 'To Love-Ru: Trouble'
+- 'tlr'
+- 'To LOVE Ru - Trouble'
+- 'To Loveru'
+- 'To LOVEる -とらぶる-'
+- 'To-Love-Ru'
+- 'toloveru'
+- 'Trouble'
+- 'Любовный переполох'
+- 'Любовь и прочие неприятности'
+- 'とらぶる'
+- '出包王女'
+https://www.youtube.com/watch?v=6y8PmMlYpCU:
+- 'Release the Spyce'
+- 'RELEASE THE SPYCE'
diff --git a/audiotrivia/data/lists/csgo.yaml b/audiotrivia/data/lists/csgo.yaml
deleted file mode 100644
index d29b37c..0000000
--- a/audiotrivia/data/lists/csgo.yaml
+++ /dev/null
@@ -1,106 +0,0 @@
-AUTHOR: bobloy
-https://www.youtube.com/watch?v=nfjiy-NX5b0:
-- flashbang
-https://www.youtube.com/watch?v=mJCE7s4W4IE:
-- starting round
-- round start
-- start round
-https://www.youtube.com/watch?v=XfLGi4cPu0Y:
-- select team
-- team select
-https://www.youtube.com/watch?v=b6ScVgFs-DQ:
-- desert eagle
-- deagle
-https://www.youtube.com/watch?v=JnHm-rn199Y:
-- planted bomb
-- bomb planted
-- bomb plant
-- plant bomb
-https://www.youtube.com/watch?v=3wztV24tbVU:
-- defusing bomb
-- defuse bomb
-- bomb defuse
-- bomb defusing
-https://www.youtube.com/watch?v=mpY9poBVje4:
-- lobby
-https://www.youtube.com/watch?v=zMT4ovCN7gk:
-- usp-s
-- usp s
-- usps
-https://www.youtube.com/watch?v=oI5Ww7y2aUQ:
-- gut knife
-https://www.youtube.com/watch?v=Dqmyxnx-OaQ:
-- ak47
-- ak 47
-https://www.youtube.com/watch?v=Ny4hGdziZP4:
-- hitmarker
-- hit
-- hitmaker
-- marker
-https://www.youtube.com/watch?v=vYUynDKM1Yw:
-- awp
-https://www.youtube.com/watch?v=52etXKmbQRM:
-- butterfly knife
-https://www.youtube.com/watch?v=99o4eyq0SzY:
-- won round
-- round won
-- win round
-- round win
-https://www.youtube.com/watch?v=V5tv1ZzqI_U:
-- lost round
-- round lost
-- lose round
-- round loss
-https://www.youtube.com/watch?v=1hI25OPdim0:
-- flashbang toss
-- toss flashbang
-- throwing flashbang
-- throw flashbang
-- flashbang throwing
-- flashbang throw
-- tossing flashbang
-- flashbang tossing
-https://www.youtube.com/watch?v=oML0z2Aj_D4:
-- firegrenade toss
-- toss firegrenade
-- throwing firegrenade
-- throw firegrenade
-- firegrenade throwing
-- firegrenade throw
-- tossing firegrenade
-- firegrenade tossing
-- fire grenade toss
-- toss fire grenade
-- throwing fire grenade
-- throw fire grenade
-- fire grenade throwing
-- fire grenade throw
-- tossing fire grenade
-- fire grenade tossing
-https://www.youtube.com/watch?v=9otQ9OLfaQc:
-- grenade out
-https://www.youtube.com/watch?v=tFA-8Vc32Kg:
-- famas
-https://www.youtube.com/watch?v=MdI1u8oXKZw:
-- awp zoom
-- zoom awp
-- awp scope
-- scope awp
-https://www.youtube.com/watch?v=6NiZhX4h32Q:
-- c4
-https://www.youtube.com/watch?v=3N0NxsyWPiY:
-- planting c4
-- c4 planting
-- plant c4
-- c4 plant
-https://www.youtube.com/watch?v=XLaJIXZ5QUc:
-- awp
-https://www.youtube.com/watch?v=DmuK9Wml88E:
-- P90
-https://www.youtube.com/watch?v=t1Ky_TbDXHY:
-- smoke
-https://www.youtube.com/watch?v=sJvdTbejDRY:
-- kill bonus
-https://www.youtube.com/watch?v=DYWi8qdvWCk:
-- AK47
-- AK 47
diff --git a/audiotrivia/data/lists/games-plab.yaml b/audiotrivia/data/lists/games-plab.yaml
deleted file mode 100644
index c3a9078..0000000
--- a/audiotrivia/data/lists/games-plab.yaml
+++ /dev/null
@@ -1,5183 +0,0 @@
-AUTHOR: Plab
-https://www.youtube.com/watch?v=--bWm9hhoZo:
-- Transistor
-https://www.youtube.com/watch?v=-4nCbgayZNE:
-- Dark Cloud 2
-- Dark Cloud II
-https://www.youtube.com/watch?v=-64NlME4lJU:
-- Mega Man 7
-- Mega Man VII
-https://www.youtube.com/watch?v=-AesqnudNuw:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=-BmGDtP2t7M:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=-Gg6v-GMnsU:
-- 'FTL: Faster Than Light'
-https://www.youtube.com/watch?v=-GouzQ8y5Cc:
-- Minecraft
-https://www.youtube.com/watch?v=-IsFD_jw6lM:
-- Advance Wars DS
-https://www.youtube.com/watch?v=-J55bt2b3Z8:
-- Mario Kart 8
-- Mario Kart VIII
-https://www.youtube.com/watch?v=-KXPZ81aUPY:
-- 'Ratchet & Clank: Going Commando'
-- 'ratchet and clank: going commando'
-https://www.youtube.com/watch?v=-L45Lm02jIU:
-- Super Street Fighter II
-- Super Street Fighter 2
-https://www.youtube.com/watch?v=-LId8l6Rc6Y:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=-LLr-88UG1U:
-- The Last Story
-https://www.youtube.com/watch?v=-PQ9hQLWNCM:
-- Pokemon
-https://www.youtube.com/watch?v=-Q-S4wQOcr8:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=-Q2Srm60GLg:
-- Dustforce
-https://www.youtube.com/watch?v=-ROXEo0YD10:
-- Halo
-https://www.youtube.com/watch?v=-TG5VLGPdRc:
-- Wild Arms Alter Code F
-https://www.youtube.com/watch?v=-UkyW5eHKlg:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=-VtNcqxyNnA:
-- Dragon Quest II
-- Dragon Quest 2
-https://www.youtube.com/watch?v=-WQGbuqnVlc:
-- Guacamelee!
-https://www.youtube.com/watch?v=-XTYsUzDWEM:
-- 'The Legend of Zelda: Link''s Awakening'
-- 'link''s awakening'
-https://www.youtube.com/watch?v=-YfpDN84qls:
-- Bioshock Infinite
-https://www.youtube.com/watch?v=-_51UVCkOh4:
-- 'Donkey Kong Country: Tropical Freeze'
-https://www.youtube.com/watch?v=-czsPXU_Sn0:
-- StarFighter 3000
-- StarFighter MMM
-https://www.youtube.com/watch?v=-eHjgg4cnjo:
-- Tintin in Tibet
-https://www.youtube.com/watch?v=-ehGFSkPfko:
-- Contact
-https://www.youtube.com/watch?v=-finZK4D6NA:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=-ltGbYCYr-Q:
-- Enchanted Arms
-https://www.youtube.com/watch?v=-lz8ydvkFuo:
-- Super Metroid
-https://www.youtube.com/watch?v=-m3VGoy-4Qo:
-- Mega Man X6
-https://www.youtube.com/watch?v=-nOJ6c1umMU:
-- Mega Man 7
-- Mega Man VII
-https://www.youtube.com/watch?v=-oGZIqeeTt0:
-- NeoTokyo
-https://www.youtube.com/watch?v=-ohvCzPIBvM:
-- Dark Cloud
-https://www.youtube.com/watch?v=-uJOYd76nSQ:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=-u_udSjbXgs:
-- Radiata Stories
-https://www.youtube.com/watch?v=-xpUOrwVMHo:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=00mLin2YU54:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=01n8imWdT6g:
-- Ristar
-https://www.youtube.com/watch?v=02VD6G-JD4w:
-- SimCity 4
-- SimCity IV
-https://www.youtube.com/watch?v=03L56CE7QWc:
-- Little Nightmares
-https://www.youtube.com/watch?v=04TLq1cKeTI:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=07EXFbZaXiM:
-- Airport Tycoon 3
-- Airport Tycoon III
-https://www.youtube.com/watch?v=096M0eZMk5Q:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=0E-_TG7vGP0:
-- Battletoads & Double Dragon
-- battletoads
-- double dragon
-https://www.youtube.com/watch?v=0EhiDgp8Drg:
-- Mario Party
-https://www.youtube.com/watch?v=0F-hJjD3XAs:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=0F0ONH92OoY:
-- Donkey Kong 64
-https://www.youtube.com/watch?v=0Fbgho32K4A:
-- 'FFCC: The Crystal Bearers'
-https://www.youtube.com/watch?v=0Fff6en_Crc:
-- 'Emperor: Battle for Dune'
-https://www.youtube.com/watch?v=0H5YoFv09uQ:
-- Waterworld
-https://www.youtube.com/watch?v=0IcVJVcjAxA:
-- 'Star Ocean 3: Till the End of Time'
-- 'Star Ocean III: Till the End of Time'
-https://www.youtube.com/watch?v=0KDjcSaMgfI:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=0Lo8Q5tL0WQ:
-- Chrono Trigger
-https://www.youtube.com/watch?v=0OMlZPg8tl4:
-- Robocop 3 (C64)
-- Robocop III
-- robocop 3
-https://www.youtube.com/watch?v=0RKF6gqCXiM:
-- Persona 3
-- Persona III
-https://www.youtube.com/watch?v=0U_7HnAvbR8:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=0Y0RwyI8j8k:
-- Jet Force Gemini
-https://www.youtube.com/watch?v=0Y1Y3buSm2I:
-- Mario Kart Wii
-https://www.youtube.com/watch?v=0YN7-nirAbk:
-- Ys II Chronicles
-- Ys 2 Chronicles
-https://www.youtube.com/watch?v=0_8CS1mrfFA:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=0_YB2lagalY:
-- Marble Madness
-https://www.youtube.com/watch?v=0_ph5htjyl0:
-- Dear Esther
-https://www.youtube.com/watch?v=0dEc-UyQf58:
-- Pokemon Trading Card Game
-https://www.youtube.com/watch?v=0dMkx7c-uNM:
-- VVVVVV
-https://www.youtube.com/watch?v=0mmvYvsN32Q:
-- Batman
-https://www.youtube.com/watch?v=0oBT5dOZPig:
-- Final Fantasy X-2
-- Final Fantasy 10-2
-- Final Fantasy X-II
-https://www.youtube.com/watch?v=0ptVf0dQ18M:
-- F-Zero GX
-https://www.youtube.com/watch?v=0rz-SlHMtkE:
-- Panzer Dragoon
-https://www.youtube.com/watch?v=0tWIVmHNDYk:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=0w-9yZBE_nQ:
-- Blaster Master
-https://www.youtube.com/watch?v=0yKsce_NsWA:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=11CqmhtBfJI:
-- Wild Arms
-https://www.youtube.com/watch?v=13Uk8RB6kzQ:
-- The Smurfs
-https://www.youtube.com/watch?v=14-tduXVhNQ:
-- The Magical Quest starring Mickey Mouse
-https://www.youtube.com/watch?v=14gpqf8JP-Y:
-- Super Turrican
-https://www.youtube.com/watch?v=15PEwOkJ5DA:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=16e2Okdc-PQ:
-- Threads of Fate
-https://www.youtube.com/watch?v=16sK7JwZ9nI:
-- Sands of Destruction
-https://www.youtube.com/watch?v=18NQOEU2jvU:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=1ALDFlUYdcQ:
-- Mega Man 10
-https://www.youtube.com/watch?v=1B0D2_zhYyM:
-- Return All Robots!
-https://www.youtube.com/watch?v=1BcHKsDr5CM:
-- Grandia
-https://www.youtube.com/watch?v=1CJ69ZxnVOs:
-- Jets 'N' Guns
-https://www.youtube.com/watch?v=1DAD230gipE:
-- 'Vampire The Masquerade: Bloodlines'
-https://www.youtube.com/watch?v=1DFIYMTnlzo:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=1DwQk4-Smn0:
-- Crusader of Centy
-https://www.youtube.com/watch?v=1EJ2gbCFpGM:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=1HOQJZiKbew:
-- Kirby's Adventure
-https://www.youtube.com/watch?v=1IMUSeMsxwI:
-- Touch My Katamari
-https://www.youtube.com/watch?v=1KCcXn5xBeY:
-- Inside
-https://www.youtube.com/watch?v=1KaAALej7BY:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=1MRrLo4awBI:
-- Golden Sun
-https://www.youtube.com/watch?v=1MVAIf-leiQ:
-- Fez
-https://www.youtube.com/watch?v=1NmzdFvqzSU:
-- Ruin Arm
-https://www.youtube.com/watch?v=1OzPeu60ZvU:
-- Swiv
-https://www.youtube.com/watch?v=1QHyvhnEe2g:
-- Ice Hockey
-https://www.youtube.com/watch?v=1R1-hXIeiKI:
-- Punch-Out!!
-https://www.youtube.com/watch?v=1RBvXjg_QAc:
-- 'E.T.: Return to the Green Planet'
-https://www.youtube.com/watch?v=1THa11egbMI:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=1UZ1fKOlZC0:
-- Axiom Verge
-https://www.youtube.com/watch?v=1UzoyIwC3Lg:
-- Master Spy
-https://www.youtube.com/watch?v=1X5Y6Opw26s:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=1YWdyLlEu5w:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=1_8u5eDjEwY:
-- 'Digital: A Love Story'
-https://www.youtube.com/watch?v=1agK890YmvQ:
-- Sonic Colors
-https://www.youtube.com/watch?v=1gZaH16gqgk:
-- Sonic Colors
-https://www.youtube.com/watch?v=1hxkqsEz4dk:
-- Mega Man Battle Network 3
-- Mega Man Battle Network III
-https://www.youtube.com/watch?v=1iKxdUnF0Vg:
-- The Revenge of Shinobi
-https://www.youtube.com/watch?v=1kt-H7qUr58:
-- Deus Ex
-https://www.youtube.com/watch?v=1r5BYjZdAtI:
-- Rusty
-https://www.youtube.com/watch?v=1riMeMvabu0:
-- Grim Fandango
-https://www.youtube.com/watch?v=1s7lAVqC0Ps:
-- Tales of Graces
-https://www.youtube.com/watch?v=1saL4_XcwVA:
-- Dustforce
-https://www.youtube.com/watch?v=1uEHUSinwD8:
-- Secret of Mana
-https://www.youtube.com/watch?v=1wskjjST4F8:
-- Plok
-https://www.youtube.com/watch?v=1xzf_Ey5th8:
-- Breath of Fire V
-- Breath of Fire 5
-https://www.youtube.com/watch?v=1yBlUvZ-taY:
-- Tribes Ascend
-https://www.youtube.com/watch?v=1zU2agExFiE:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=20Or4fIOgBk:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=248TO66gf8M:
-- Sonic Mania
-https://www.youtube.com/watch?v=29dJ6XlsMds:
-- Elvandia Story
-https://www.youtube.com/watch?v=29h1H6neu3k:
-- Dragon Quest VII
-- Dragon Quest 7
-https://www.youtube.com/watch?v=2AzKwVALPJU:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=2BNMm9irLTw:
-- 'Mario & Luigi: Superstar Saga'
-- 'mario and luigi: superstar saga'
-https://www.youtube.com/watch?v=2CEZdt5n5JQ:
-- Metal Gear Rising
-https://www.youtube.com/watch?v=2CyFFMCC67U:
-- Super Mario Land 2
-- Super Mario Land II
-https://www.youtube.com/watch?v=2Mf0f91AfQo:
-- Octopath Traveler
-https://www.youtube.com/watch?v=2MzcVSPUJw0:
-- Super Metroid
-https://www.youtube.com/watch?v=2NGWhKhMojQ:
-- Klonoa
-https://www.youtube.com/watch?v=2NfhrT3gQdY:
-- 'Lunar: The Silver Star'
-https://www.youtube.com/watch?v=2O4aNHy2Dcc:
-- X-Men vs Street Fighter
-https://www.youtube.com/watch?v=2TgWzuTOXN8:
-- Shadow of the Ninja
-https://www.youtube.com/watch?v=2WYI83Cx9Ko:
-- Earthbound
-https://www.youtube.com/watch?v=2ZX41kMN9V8:
-- 'Castlevania: Aria of Sorrow'
-https://www.youtube.com/watch?v=2bd4NId7GiA:
-- Catherine
-https://www.youtube.com/watch?v=2biS2NM9QeE:
-- Napple Tale
-https://www.youtube.com/watch?v=2c1e5ASpwjk:
-- Persona 4
-- Persona IV
-https://www.youtube.com/watch?v=2e9MvGGtz6c:
-- Secret of Mana (2018)
-- Secret of Mana
-https://www.youtube.com/watch?v=2gKlqJXIDVQ:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=2hfgF1RoqJo:
-- Gunstar Heroes
-https://www.youtube.com/watch?v=2jbJSftFr20:
-- Plok
-https://www.youtube.com/watch?v=2mLCr2sV3rs:
-- Mother
-https://www.youtube.com/watch?v=2mlPgPBDovw:
-- 'Castlevania: Bloodlines'
-https://www.youtube.com/watch?v=2oo0qQ79uWE:
-- Sonic 3D Blast (Saturn)
-- sonic 3d blast
-https://www.youtube.com/watch?v=2qDajCHTkWc:
-- 'Arc the Lad IV: Twilight of the Spirits'
-- 'Arc the Lad 4: Twilight of the Spirits'
-https://www.youtube.com/watch?v=2r1iesThvYg:
-- Chrono Trigger
-https://www.youtube.com/watch?v=2r35JpoRCOk:
-- NieR
-https://www.youtube.com/watch?v=2xP0dFTlxdo:
-- Vagrant Story
-https://www.youtube.com/watch?v=31NHdGB1ZSk:
-- Metroid Prime 3
-- Metroid Prime III
-https://www.youtube.com/watch?v=3283ANpvPPM:
-- Super Spy Hunter
-https://www.youtube.com/watch?v=37rVPijCrCA:
-- Earthbound
-https://www.youtube.com/watch?v=3Bl0nIoCB5Q:
-- Wii Sports
-https://www.youtube.com/watch?v=3Hf0L8oddrA:
-- Lagoon
-https://www.youtube.com/watch?v=3J9-q-cv_Io:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=3ODKKILZiYY:
-- Plok
-https://www.youtube.com/watch?v=3PAHwO_GsrQ:
-- Chrono Trigger
-https://www.youtube.com/watch?v=3TjzvAGDubE:
-- Super Mario 64
-https://www.youtube.com/watch?v=3WVqKTCx7Ug:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=3XM9eiSys98:
-- Hotline Miami
-https://www.youtube.com/watch?v=3Y8toBvkRpc:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=3bNlWGyxkCU:
-- Diablo III
-- Diablo 3
-https://www.youtube.com/watch?v=3cIi2PEagmg:
-- Super Mario Bros 3
-- Super Mario Bros III
-https://www.youtube.com/watch?v=3iygPesmC-U:
-- Shadow Hearts
-https://www.youtube.com/watch?v=3kmwqOIeego:
-- Touch My Katamari
-https://www.youtube.com/watch?v=3lehXRPWyes:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=3lhiseKpDDY:
-- Heimdall 2
-- Heimdall II
-https://www.youtube.com/watch?v=3nLtMX4Y8XI:
-- Mr. Nutz
-https://www.youtube.com/watch?v=3nPLwrTvII0:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=3q_o-86lmcg:
-- Crash Bandicoot
-https://www.youtube.com/watch?v=3tItkV0GeoY:
-- Diddy Kong Racing
-https://www.youtube.com/watch?v=3tpO54VR6Oo:
-- Pop'n Music 4
-- Pop'n Music IV
-https://www.youtube.com/watch?v=3vYAXZs8pFU:
-- Umineko no Naku Koro ni
-https://www.youtube.com/watch?v=44lJD2Xd5rc:
-- Super Mario World
-https://www.youtube.com/watch?v=44u87NnaV4Q:
-- 'Castlevania: Dracula X'
-https://www.youtube.com/watch?v=44vPlW8_X3s:
-- DOOM
-https://www.youtube.com/watch?v=46WQk6Qvne8:
-- Blast Corps
-https://www.youtube.com/watch?v=473L99I88n8:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=476siHQiW0k:
-- 'JESUS: Kyoufu no Bio Monster'
-https://www.youtube.com/watch?v=49rleD-HNCk:
-- Tekken Tag Tournament 2
-- Tekken Tag Tournament II
-https://www.youtube.com/watch?v=4CEc0t0t46s:
-- Ittle Dew 2
-- Ittle Dew II
-https://www.youtube.com/watch?v=4DmNrnj6wUI:
-- Napple Tale
-https://www.youtube.com/watch?v=4EBNeFI0QW4:
-- 'OFF'
-https://www.youtube.com/watch?v=4GTm-jHQm90:
-- 'Pokemon XD: Gale of Darkness'
-https://www.youtube.com/watch?v=4HHlWg5iZDs:
-- Terraria
-https://www.youtube.com/watch?v=4HLSGn4_3WE:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=4H_0h3n6pMk:
-- Silver Surfer
-https://www.youtube.com/watch?v=4J99hnghz4Y:
-- Beyond Good & Evil
-- beyond good and evil
-https://www.youtube.com/watch?v=4JJEaVI3JRs:
-- 'The Legend of Zelda: Oracle of Seasons & Ages'
-- 'oracle of seasons'
-- 'oracle of ages'
-https://www.youtube.com/watch?v=4JzDb3PZGEg:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=4Jzh0BThaaU:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=4MnzJjEuOUs:
-- 'Atelier Iris 3: Grand Phantasm'
-- 'Atelier Iris III: Grand Phantasm'
-https://www.youtube.com/watch?v=4RPbxVl6z5I:
-- Ms. Pac-Man Maze Madness
-https://www.youtube.com/watch?v=4Rh6wmLE8FU:
-- Kingdom Hearts II
-- Kingdom Hearts 2
-https://www.youtube.com/watch?v=4Ze5BfLk0J8:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=4a767iv9VaI:
-- 'Spyro: Year of the Dragon'
-https://www.youtube.com/watch?v=4axwWk4dfe8:
-- Battletoads & Double Dragon
-- battletoads
-- double dragon
-https://www.youtube.com/watch?v=4d2Wwxbsk64:
-- Dragon Ball Z Butouden 3
-- Dragon Ball Z Butouden III
-https://www.youtube.com/watch?v=4f6siAA3C9M:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=4fMd_2XeXLA:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=4h5FzzXKjLA:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=4hWT8nYhvN0:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=4i-qGSwyu5M:
-- Breath of Fire II
-- Breath of Fire 2
-https://www.youtube.com/watch?v=4uJBIxKB01E:
-- Vay
-https://www.youtube.com/watch?v=4ugpeNkSyMc:
-- Thunder Spirits
-https://www.youtube.com/watch?v=5-0KCJvfJZE:
-- Children of Mana
-https://www.youtube.com/watch?v=52f2DQl8eGE:
-- Mega Man & Bass
-- mega man and bass
-https://www.youtube.com/watch?v=554IOtmsavA:
-- Dark Void
-https://www.youtube.com/watch?v=56oPoX8sCcY:
-- 'The Legend of Zelda: Twilight Princess'
-- 'twilight princess'
-https://www.youtube.com/watch?v=57aCSLmg9hA:
-- The Green Lantern
-https://www.youtube.com/watch?v=5B46aBeR4zo:
-- MapleStory
-https://www.youtube.com/watch?v=5CLpmBIb4MM:
-- Summoner
-https://www.youtube.com/watch?v=5Em0e5SdYs0:
-- 'Mario & Luigi: Partners in Time'
-- 'mario and luigi: partners in time'
-https://www.youtube.com/watch?v=5FDigjKtluM:
-- NieR
-https://www.youtube.com/watch?v=5IUXyzqrZsw:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=5OLxWTdtOkU:
-- Extreme-G
-https://www.youtube.com/watch?v=5OZIrAW7aSY:
-- Way of the Samurai
-https://www.youtube.com/watch?v=5WSE5sLUTnk:
-- Ristar
-https://www.youtube.com/watch?v=5ZMI6Gu2aac:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=5a5EDaSasRU:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=5bTAdrq6leQ:
-- Castlevania
-https://www.youtube.com/watch?v=5gCAhdDAPHE:
-- Yoshi's Island
-https://www.youtube.com/watch?v=5hVRaTn_ogE:
-- BattleBlock Theater
-https://www.youtube.com/watch?v=5hc3R4Tso2k:
-- Shadow Hearts
-https://www.youtube.com/watch?v=5kmENsE8NHc:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=5lyXiD-OYXU:
-- Wild Arms
-https://www.youtube.com/watch?v=5maIQJ79hGM:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=5nJSvKpqXzM:
-- Legend of Mana
-https://www.youtube.com/watch?v=5niLxq7_yN4:
-- Devil May Cry 3
-- Devil May Cry III
-https://www.youtube.com/watch?v=5oGK9YN0Ux8:
-- Shadow Hearts
-https://www.youtube.com/watch?v=5pQMJEzNwtM:
-- Street Racer
-https://www.youtube.com/watch?v=5trQZ9u9xNM:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=5w_SgBImsGg:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=62HoIMZ8xAE:
-- Alundra
-https://www.youtube.com/watch?v=62_S0Sl02TM:
-- Alundra 2
-- Alundra II
-https://www.youtube.com/watch?v=66-rV8v6TNo:
-- Cool World
-https://www.youtube.com/watch?v=67nrJieFVI0:
-- 'World of Warcraft: Wrath of the Lich King'
-https://www.youtube.com/watch?v=69142JeBFXM:
-- Baten Kaitos Origins
-https://www.youtube.com/watch?v=6AZLmFaSpR0:
-- 'Castlevania: Lords of Shadow'
-https://www.youtube.com/watch?v=6AuCTNAJz_M:
-- Rollercoaster Tycoon 3
-- Rollercoaster Tycoon III
-https://www.youtube.com/watch?v=6CMTXyExkeI:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=6FdjTwtvKCE:
-- Bit.Trip Flux
-https://www.youtube.com/watch?v=6GWxoOc3TFI:
-- Super Mario Land
-https://www.youtube.com/watch?v=6GX_qN7hEEM:
-- Faxanadu
-https://www.youtube.com/watch?v=6GhseRvdAgs:
-- Tekken 5
-- Tekken V
-https://www.youtube.com/watch?v=6IadffCqEQw:
-- The Legend of Zelda
-https://www.youtube.com/watch?v=6JdMvEBtFSE:
-- 'Parasite Eve: The 3rd Birthday'
-https://www.youtube.com/watch?v=6JuO7v84BiY:
-- Pop'n Music 16 PARTY
-- Pop'n Music XVI PARTY
-https://www.youtube.com/watch?v=6MQRL7xws7w:
-- Wild Arms
-https://www.youtube.com/watch?v=6R8jGeVw-9Y:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=6TJWqX8i8-E:
-- 'Moon: Remix RPG Adventure'
-https://www.youtube.com/watch?v=6UWGh1A1fPw:
-- Dustforce
-https://www.youtube.com/watch?v=6VD_aVMOL1c:
-- Dark Cloud 2
-- Dark Cloud II
-https://www.youtube.com/watch?v=6XOEZIZMUl0:
-- 'SMT: Digital Devil Saga 2'
-- 'SMT: Digital Devil Saga II'
-https://www.youtube.com/watch?v=6ZiYK9U4TfE:
-- Dirt Trax FX
-https://www.youtube.com/watch?v=6_JLe4OxrbA:
-- Super Mario 64
-https://www.youtube.com/watch?v=6b77tr2Vu9U:
-- Pokemon
-https://www.youtube.com/watch?v=6fA_EQBPB94:
-- Super Metroid
-https://www.youtube.com/watch?v=6jp9d66QRz0:
-- Jazz Jackrabbit 2
-- Jazz Jackrabbit II
-https://www.youtube.com/watch?v=6kIE2xVJdTc:
-- Earthbound
-https://www.youtube.com/watch?v=6l3nVyGhbpE:
-- Extreme-G
-https://www.youtube.com/watch?v=6l8a_pzRcRI:
-- Blast Corps
-https://www.youtube.com/watch?v=6nJgdcnFtcQ:
-- Snake's Revenge
-https://www.youtube.com/watch?v=6paAqMXurdA:
-- Chrono Trigger
-https://www.youtube.com/watch?v=6s6Bc0QAyxU:
-- Ghosts 'n' Goblins
-https://www.youtube.com/watch?v=6uWBacK2RxI:
-- 'Mr. Nutz: Hoppin'' Mad'
-https://www.youtube.com/watch?v=6uo5ripzKwc:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=6xXHeaLmAcM:
-- Mario + Rabbids Kingdom Battle
-https://www.youtube.com/watch?v=70oTg2go0XU:
-- 3D Dot Game Heroes
-https://www.youtube.com/watch?v=718qcWPzvAY:
-- Super Paper Mario
-https://www.youtube.com/watch?v=72RLQGHxE08:
-- Zack & Wiki
-- zack and wiki
-https://www.youtube.com/watch?v=745hAPheACw:
-- Dark Cloud 2
-- Dark Cloud II
-https://www.youtube.com/watch?v=74cYr5ZLeko:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=763w2hsKUpk:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=77F1lLI5LZw:
-- Grandia
-https://www.youtube.com/watch?v=77Z3VDq_9_0:
-- Street Fighter II
-- Street Fighter 2
-https://www.youtube.com/watch?v=7DC2Qj2LKng:
-- Wild Arms
-https://www.youtube.com/watch?v=7DYL2blxWSA:
-- Gran Turismo
-https://www.youtube.com/watch?v=7Dwc0prm7z4:
-- Child of Eden
-https://www.youtube.com/watch?v=7F3KhzpImm4:
-- 'The Legend of Zelda: Twilight Princess'
-- 'twilight princess'
-https://www.youtube.com/watch?v=7FwtoHygavA:
-- Super Mario 3D Land
-https://www.youtube.com/watch?v=7HMGj_KUBzU:
-- Mega Man 6
-- Mega Man VI
-https://www.youtube.com/watch?v=7JIkz4g0dQc:
-- Mega Man 10
-https://www.youtube.com/watch?v=7JWi5dyzW2Q:
-- Dark Cloud 2
-- Dark Cloud II
-https://www.youtube.com/watch?v=7L3VJpMORxM:
-- Lost Odyssey
-https://www.youtube.com/watch?v=7MQFljss6Pc:
-- Red Dead Redemption
-https://www.youtube.com/watch?v=7MhWtz8Nv9Q:
-- The Last Remnant
-https://www.youtube.com/watch?v=7OHV_ByQIIw:
-- Plok
-https://www.youtube.com/watch?v=7RDRhAKsLHo:
-- Dragon Quest V
-- Dragon Quest 5
-https://www.youtube.com/watch?v=7X5-xwb6otQ:
-- Lady Stalker
-https://www.youtube.com/watch?v=7Y9ea3Ph7FI:
-- Unreal Tournament 2003 & 2004
-- unreal tournament 2003
-- unreal tournament 2004
-https://www.youtube.com/watch?v=7d8nmKL5hbU:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=7lHAHFl_3u0:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=7m2yOHjObCM:
-- Chrono Trigger
-https://www.youtube.com/watch?v=7rNgsqxnIuY:
-- Magic Johnson's Fast Break
-https://www.youtube.com/watch?v=7sb2q6JedKk:
-- Anodyne
-https://www.youtube.com/watch?v=7sc7R7jeOX0:
-- Sonic and the Black Knight
-https://www.youtube.com/watch?v=7u3tJbtAi_o:
-- Grounseed
-https://www.youtube.com/watch?v=7vpHPBE59HE:
-- Valkyria Chronicles
-https://www.youtube.com/watch?v=8-Q-UsqJ8iM:
-- Katamari Damacy
-https://www.youtube.com/watch?v=80YFKvaRou4:
-- Mass Effect
-https://www.youtube.com/watch?v=81-SoTxMmiI:
-- Deep Labyrinth
-https://www.youtube.com/watch?v=81dgZtXKMII:
-- 'Nintendo 3DS Guide: Louvre'
-https://www.youtube.com/watch?v=83p9uYd4peM:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=83xEzdYAmSg:
-- Oceanhorn
-https://www.youtube.com/watch?v=84NsPpkY4l0:
-- Live a Live
-https://www.youtube.com/watch?v=88VyZ4Lvd0c:
-- Wild Arms
-https://www.youtube.com/watch?v=8EaxiB6Yt5g:
-- Earthbound
-https://www.youtube.com/watch?v=8Fl6WlJ-Pms:
-- Parasite Eve
-https://www.youtube.com/watch?v=8IP_IsXL7b4:
-- Super Mario Kart
-https://www.youtube.com/watch?v=8IVlnImPqQA:
-- Unreal Tournament 2003 & 2004
-- unreal tournament 2003
-- unreal tournament 2004
-https://www.youtube.com/watch?v=8K35MD4ZNRU:
-- Kirby's Epic Yarn
-https://www.youtube.com/watch?v=8K8hCmRDbWc:
-- Blue Dragon
-https://www.youtube.com/watch?v=8KX9L6YkA78:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=8MRHV_Cf41E:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=8OFao351gwU:
-- Mega Man 3
-- Mega Man III
-https://www.youtube.com/watch?v=8RtLhXibDfA:
-- Yoshi's Island
-https://www.youtube.com/watch?v=8SJl4mELFMM:
-- 'Pokemon Mystery Dungeon: Explorers of Sky'
-https://www.youtube.com/watch?v=8ZjZXguqmKM:
-- The Smurfs
-https://www.youtube.com/watch?v=8_9Dc7USBhY:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=8ajBHjJyVDE:
-- 'The Legend of Zelda: A Link Between Worlds'
-- 'a link between worlds'
-https://www.youtube.com/watch?v=8bEtK6g4g_Y:
-- 'Dragon Ball Z: Super Butoden'
-https://www.youtube.com/watch?v=8eZRNAtq_ps:
-- 'Target: Renegade'
-https://www.youtube.com/watch?v=8gGv1TdQaMI:
-- Tomb Raider II
-- Tomb Raider 2
-https://www.youtube.com/watch?v=8hLQart9bsQ:
-- Shadowrun Returns
-https://www.youtube.com/watch?v=8hzjxWVQnxo:
-- Soma
-https://www.youtube.com/watch?v=8iBCg85y0K8:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=8kBBJQ_ySpI:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=8lmjoPgEWb4:
-- Wangan Midnight Maximum Tune 3
-- Wangan Midnight Maximum Tune III
-https://www.youtube.com/watch?v=8mcUQ8Iv6QA:
-- MapleStory
-https://www.youtube.com/watch?v=8pJ4Q7L9rBs:
-- NieR
-https://www.youtube.com/watch?v=8qNwJeuk4gY:
-- Mega Man X
-https://www.youtube.com/watch?v=8qy4-VeSnYk:
-- Secret of Mana
-https://www.youtube.com/watch?v=8tffqG3zRLQ:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=8urO2NlhdiU:
-- Halo 3 ODST
-- Halo III ODST
-https://www.youtube.com/watch?v=8x1E_1TY8ig:
-- Double Dragon Neon
-https://www.youtube.com/watch?v=8xWWLSlQPeI:
-- 'The Legend of Zelda: Wind Waker'
-- 'wind waker'
-https://www.youtube.com/watch?v=8zY_4-MBuIc:
-- 'Phoenix Wright: Ace Attorney'
-https://www.youtube.com/watch?v=93Fqrbd-9gI:
-- Opoona
-https://www.youtube.com/watch?v=93jNP6y_Az8:
-- Yoshi's New Island
-https://www.youtube.com/watch?v=96ro-5alCGo:
-- One Piece Grand Battle 2
-- One Piece Grand Battle II
-https://www.youtube.com/watch?v=99RVgsDs1W0:
-- 'The Legend of Zelda: Twilight Princess'
-- 'twilight princess'
-https://www.youtube.com/watch?v=9BF1JT8rNKI:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=9BgCJL71YIY:
-- Wild Arms 2
-- Wild Arms II
-https://www.youtube.com/watch?v=9FZ-12a3dTI:
-- Deus Ex
-https://www.youtube.com/watch?v=9GvO7CWsWEg:
-- Baten Kaitos
-https://www.youtube.com/watch?v=9QVLuksB-d8:
-- 'Pop''n Music 12: Iroha'
-- 'Pop''n Music XII: Iroha'
-https://www.youtube.com/watch?v=9VE72cRcQKk:
-- Super Runabout
-https://www.youtube.com/watch?v=9VyMkkI39xc:
-- Okami
-https://www.youtube.com/watch?v=9WlrcP2zcys:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=9YRGh-hQq5c:
-- Journey
-https://www.youtube.com/watch?v=9YY-v0pPRc8:
-- Environmental Station Alpha
-https://www.youtube.com/watch?v=9YoDuIZa8tE:
-- Lost Odyssey
-https://www.youtube.com/watch?v=9ZanHcT3wJI:
-- Contact
-https://www.youtube.com/watch?v=9_wYMNZYaA4:
-- Radiata Stories
-https://www.youtube.com/watch?v=9alsJe-gEts:
-- 'The Legend of Heroes: Trails in the Sky'
-https://www.youtube.com/watch?v=9cJe5v5lLKk:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=9heorR5vEvA:
-- Streets of Rage
-https://www.youtube.com/watch?v=9kkQaWcpRvI:
-- Secret of Mana
-https://www.youtube.com/watch?v=9oVbqhGBKac:
-- Castle in the Darkness
-https://www.youtube.com/watch?v=9rldISzBkjE:
-- Undertale
-https://www.youtube.com/watch?v=9sVb_cb7Skg:
-- Diablo II
-- Diablo 2
-https://www.youtube.com/watch?v=9sYfDXfMO0o:
-- Parasite Eve
-https://www.youtube.com/watch?v=9saTXWj78tY:
-- Katamari Damacy
-https://www.youtube.com/watch?v=9th-yImn9aA:
-- Baten Kaitos
-https://www.youtube.com/watch?v=9u3xNXai8D8:
-- Civilization IV
-- Civilization 4
-https://www.youtube.com/watch?v=9v8qNLnTxHU:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=9v_B9wv_qTw:
-- Tower of Heaven
-https://www.youtube.com/watch?v=9xy9Q-BLp48:
-- Legaia 2
-- Legaia II
-https://www.youtube.com/watch?v=A-AmRMWqcBk:
-- Stunt Race FX
-https://www.youtube.com/watch?v=A-dyJWsn_2Y:
-- Pokken Tournament
-https://www.youtube.com/watch?v=A1b4QO48AoA:
-- Hollow Knight
-https://www.youtube.com/watch?v=A2Mi7tkE5T0:
-- Secret of Mana
-https://www.youtube.com/watch?v=A3PE47hImMo:
-- Paladin's Quest II
-- Paladin's Quest 2
-https://www.youtube.com/watch?v=A4e_sQEMC8c:
-- Streets of Fury
-https://www.youtube.com/watch?v=A6Qolno2AQA:
-- Super Princess Peach
-https://www.youtube.com/watch?v=A9PXQSFWuRY:
-- Radiant Historia
-https://www.youtube.com/watch?v=ABYH2x7xaBo:
-- Faxanadu
-https://www.youtube.com/watch?v=AC58piv97eM:
-- 'The Binding of Isaac: Afterbirth'
-https://www.youtube.com/watch?v=AE0hhzASHwY:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=AGWVzDhDHMc:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=AISrz88SJNI:
-- Digital Devil Saga
-https://www.youtube.com/watch?v=AJX08k_VZv8:
-- 'Ace Combat 4: Shattered Skies'
-- 'Ace Combat IV: Shattered Skies'
-https://www.youtube.com/watch?v=AKfLOMirwho:
-- Earthbound
-https://www.youtube.com/watch?v=AN-NbukIjKw:
-- Super Mario 64
-https://www.youtube.com/watch?v=APW3ZX8FvvE:
-- 'Phoenix Wright: Ace Attorney'
-https://www.youtube.com/watch?v=AQMonx8SlXc:
-- Enthusia Professional Racing
-https://www.youtube.com/watch?v=ARQfmb30M14:
-- Bejeweled 3
-- Bejeweled III
-https://www.youtube.com/watch?v=ARTuLmKjA7g:
-- King of Fighters 2002 Unlimited Match
-https://www.youtube.com/watch?v=ASl7qClvqTE:
-- 'Roommania #203'
-- 'Roommania #CCIII'
-https://www.youtube.com/watch?v=AU_tnstiX9s:
-- 'Ecco the Dolphin: Defender of the Future'
-https://www.youtube.com/watch?v=AVvhihA9gRc:
-- Berserk
-https://www.youtube.com/watch?v=AW7oKCS8HjM:
-- Hotline Miami
-https://www.youtube.com/watch?v=AWB3tT7e3D8:
-- 'The Legend of Zelda: Spirit Tracks'
-- 'spirit tracks'
-https://www.youtube.com/watch?v=AbRWDpruNu4:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=AdI6nJ_sPKQ:
-- Super Stickman Golf 3
-- Super Stickman Golf III
-https://www.youtube.com/watch?v=Ag-O4VfJx6U:
-- Metal Gear Solid 2
-- Metal Gear Solid II
-https://www.youtube.com/watch?v=AkKMlbmq6mc:
-- Mass Effect 2
-- Mass Effect II
-https://www.youtube.com/watch?v=Al0XOLM9FPw:
-- Skullmonkeys
-https://www.youtube.com/watch?v=AmDE3fCW9gY:
-- Okamiden
-https://www.youtube.com/watch?v=AtXEw2NgXx8:
-- Final Fantasy XII
-- Final Fantasy 12
-https://www.youtube.com/watch?v=AuluLeMp1aA:
-- Majokko de Go Go
-https://www.youtube.com/watch?v=AvZjyCGUj-Q:
-- Final Fantasy Tactics A2
-https://www.youtube.com/watch?v=AvlfNZ685B8:
-- Chaos Legion
-https://www.youtube.com/watch?v=AxVhRs8QC1U:
-- Banjo-Kazooie
-https://www.youtube.com/watch?v=Az9XUAcErIQ:
-- Tomb Raider
-https://www.youtube.com/watch?v=AzlWTsBn8M8:
-- Tetris
-https://www.youtube.com/watch?v=B-L4jj9lRmE:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=B0nk276pUv8:
-- Shovel Knight
-https://www.youtube.com/watch?v=B1e6VdnjLuA:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=B2j3_kaReP4:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=B4JvKl7nvL0:
-- Grand Theft Auto IV
-- Grand Theft Auto 4
-https://www.youtube.com/watch?v=B8MpofvFtqY:
-- 'Mario & Luigi: Superstar Saga'
-- 'mario and luigi: superstar saga'
-https://www.youtube.com/watch?v=BCjRd3LfRkE:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=BDg0P_L57SU:
-- Lagoon
-https://www.youtube.com/watch?v=BKmv_mecn5g:
-- Super Mario Sunshine
-https://www.youtube.com/watch?v=BMpvrfwD7Hg:
-- Kirby's Epic Yarn
-https://www.youtube.com/watch?v=BQRKQ-CQ27U:
-- 3D Dot Game Heroes
-https://www.youtube.com/watch?v=BSVBfElvom8:
-- 'The Legend of Zelda: Ocarina of Time'
-- 'ocarina of time'
-https://www.youtube.com/watch?v=BVLMdQfxzo4:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=BZWiBxlBCbM:
-- Hollow Knight
-https://www.youtube.com/watch?v=B_QTkyu2Ssk:
-- Yoshi's Island
-https://www.youtube.com/watch?v=B_ed-ZF9yR0:
-- Ragnarok Online
-https://www.youtube.com/watch?v=Ba4J-4bUN0w:
-- Bomberman Hero
-https://www.youtube.com/watch?v=BdFLRkDRtP0:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=BdlkxaSEgB0:
-- Galactic Pinball
-https://www.youtube.com/watch?v=BfR5AmZcZ9g:
-- Kirby Super Star
-https://www.youtube.com/watch?v=BfVmj3QGQDw:
-- The Neverhood
-https://www.youtube.com/watch?v=BhfevIZsXo0:
-- Outlast
-https://www.youtube.com/watch?v=BimaIgvOa-A:
-- Paper Mario
-https://www.youtube.com/watch?v=Bj5bng0KRPk:
-- 'The Legend of Zelda: Ocarina of Time'
-- 'ocarina of time'
-https://www.youtube.com/watch?v=Bk_NDMKfiVE:
-- Chrono Cross
-https://www.youtube.com/watch?v=BkmbbZZOgKg:
-- Cheetahmen II
-- Cheetahmen 2
-https://www.youtube.com/watch?v=Bkmn35Okxfw:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=Bqvy5KIeQhI:
-- Legend of Grimrock II
-- Legend of Grimrock 2
-https://www.youtube.com/watch?v=BqxjLbpmUiU:
-- Krater
-https://www.youtube.com/watch?v=Bvw2H15HDlM:
-- 'Final Fantasy XI: Rise of the Zilart'
-- 'Final Fantasy 11: Rise of the Zilart'
-https://www.youtube.com/watch?v=BwpzdyCvqN0:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=BxYfQBNFVSw:
-- Mega Man 7
-- Mega Man VII
-https://www.youtube.com/watch?v=C-QGg9FGzj4:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=C31ciPeuuXU:
-- 'Golden Sun: Dark Dawn'
-https://www.youtube.com/watch?v=C3xhG7wRnf0:
-- Super Paper Mario
-https://www.youtube.com/watch?v=C4cD-7dOohU:
-- Valdis Story
-https://www.youtube.com/watch?v=C7NTTBm7fS8:
-- Mighty Switch Force! 2
-- Mighty Switch Force! II
-https://www.youtube.com/watch?v=C7r8sJbeOJc:
-- NeoTokyo
-https://www.youtube.com/watch?v=C8aVq5yQPD8:
-- Lode Runner 3-D
-- Lode Runner 3-500
-- Lode Runner III-D
-https://www.youtube.com/watch?v=CADHl-iZ_Kw:
-- 'The Legend of Zelda: A Link to the Past'
-- 'a link to the past'
-https://www.youtube.com/watch?v=CBm1yaZOrB0:
-- Enthusia Professional Racing
-https://www.youtube.com/watch?v=CD9A7myidl4:
-- No More Heroes 2
-- No More Heroes II
-https://www.youtube.com/watch?v=CEPnbBgjWdk:
-- 'Brothers: A Tale of Two Sons'
-https://www.youtube.com/watch?v=CHQ56GSPi2I:
-- 'Arc the Lad IV: Twilight of the Spirits'
-- 'Arc the Lad 4: Twilight of the Spirits'
-https://www.youtube.com/watch?v=CHd4iWEFARM:
-- Klonoa
-https://www.youtube.com/watch?v=CHlEPgi4Fro:
-- 'Ace Combat Zero: The Belkan War'
-https://www.youtube.com/watch?v=CHydNVrPpAQ:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=CLl8UR5vrMk:
-- Yakuza 0
-- 'Yakuza '
-https://www.youtube.com/watch?v=CNUgwyd2iIA:
-- Sonic the Hedgehog 3
-- Sonic the Hedgehog III
-https://www.youtube.com/watch?v=CP0TcAnHftc:
-- Attack of the Friday Monsters! A Tokyo Tale
-https://www.youtube.com/watch?v=CPKoMt4QKmw:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=CPbjTzqyr7o:
-- Last Bible III
-- Last Bible 3
-https://www.youtube.com/watch?v=CRmOTY1lhYs:
-- Mass Effect
-https://www.youtube.com/watch?v=CYjYCaqshjE:
-- No More Heroes 2
-- No More Heroes II
-https://www.youtube.com/watch?v=CYswIEEMIWw:
-- Sonic CD
-- Sonic 400
-https://www.youtube.com/watch?v=Ca4QJ_pDqpA:
-- 'Dragon Ball Z: The Legacy of Goku II'
-- 'Dragon Ball Z: The Legacy of Goku 2'
-https://www.youtube.com/watch?v=Car2R06WZcw:
-- 'The Legend of Zelda: Wind Waker'
-- 'wind waker'
-https://www.youtube.com/watch?v=CcKUWCm_yRs:
-- Cool Spot
-https://www.youtube.com/watch?v=CcovgBkMTmE:
-- Guild Wars 2
-- Guild Wars II
-https://www.youtube.com/watch?v=CfoiK5ADejI:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=CgtvppDEyeU:
-- Shenmue
-https://www.youtube.com/watch?v=CkPqtTcBXTA:
-- Bully
-https://www.youtube.com/watch?v=CksHdwwG1yw:
-- Crystalis
-https://www.youtube.com/watch?v=Cm9HjyPkQbg:
-- Soul Edge
-https://www.youtube.com/watch?v=CmMswzZkMYY:
-- Super Metroid
-https://www.youtube.com/watch?v=Cnn9BW3OpJs:
-- 'Roommania #203'
-- 'Roommania #CCIII'
-https://www.youtube.com/watch?v=CoQrXSc_PPw:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=Cp0UTM-IzjM:
-- 'Castlevania: Lament of Innocence'
-https://www.youtube.com/watch?v=CpThkLTJjUQ:
-- Turok 2 (Gameboy)
-- Turok II
-- turok 2
-https://www.youtube.com/watch?v=CqAXFK8U32U:
-- McKids
-https://www.youtube.com/watch?v=CrjvBd9q4A0:
-- Demon's Souls
-https://www.youtube.com/watch?v=Ct54E7GryFQ:
-- Persona 4
-- Persona IV
-https://www.youtube.com/watch?v=CuQJ-qh9s_s:
-- Tekken 2
-- Tekken II
-https://www.youtube.com/watch?v=CumPOZtsxkU:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=Cw4IHZT7guM:
-- Final Fantasy XI
-- Final Fantasy 11
-https://www.youtube.com/watch?v=CwI39pDPlgc:
-- Shadow Madness
-https://www.youtube.com/watch?v=CzZab0uEd1w:
-- 'Tintin: Prisoners of the Sun'
-https://www.youtube.com/watch?v=D0uYrKpNE2o:
-- Valkyrie Profile
-https://www.youtube.com/watch?v=D2nWuGoRU0s:
-- 'Ecco the Dolphin: Defender of the Future'
-https://www.youtube.com/watch?v=D30VHuqhXm8:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=D3zfoec6tiw:
-- NieR
-https://www.youtube.com/watch?v=DFKoFzNfQdA:
-- Secret of Mana
-https://www.youtube.com/watch?v=DIyhbwBfOwE:
-- Tekken 4
-- Tekken IV
-https://www.youtube.com/watch?v=DKbzLuiop80:
-- Shin Megami Tensei Nocturne
-https://www.youtube.com/watch?v=DLqos66n3Qo:
-- Mega Turrican
-https://www.youtube.com/watch?v=DPO2XhA5F3Q:
-- Mana Khemia
-https://www.youtube.com/watch?v=DS825tbc9Ts:
-- Phantasy Star Online
-https://www.youtube.com/watch?v=DSOvrM20tMA:
-- Wild Arms
-https://www.youtube.com/watch?v=DTqp7jUBoA8:
-- Mega Man 3
-- Mega Man III
-https://www.youtube.com/watch?v=DTzf-vahsdI:
-- 'The Legend of Zelda: Breath of the Wild'
-- 'breath of the wild'
-https://www.youtube.com/watch?v=DW-tMwk3t04:
-- Grounseed
-https://www.youtube.com/watch?v=DWXXhLbqYOI:
-- Mario Kart 64
-https://www.youtube.com/watch?v=DY0L5o9y-YA:
-- Paladin's Quest
-https://www.youtube.com/watch?v=DY_Tz7UAeAY:
-- Darksiders II
-- Darksiders 2
-https://www.youtube.com/watch?v=DZQ1P_oafJ0:
-- Eternal Champions
-https://www.youtube.com/watch?v=DZaltYb0hjU:
-- Western Lords
-https://www.youtube.com/watch?v=DbQdgOVOjSU:
-- Super Mario RPG
-https://www.youtube.com/watch?v=DeqecCzDWhQ:
-- Streets of Rage 2
-- Streets of Rage II
-https://www.youtube.com/watch?v=Dhd4jJw8VtE:
-- 'Phoenix Wright: Ace Attorney'
-https://www.youtube.com/watch?v=DjKfEQD892I:
-- To the Moon
-https://www.youtube.com/watch?v=DlbCke52EBQ:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=DlcwDU0i6Mw:
-- Tribes 2
-- Tribes II
-https://www.youtube.com/watch?v=DmaFexLIh4s:
-- El Shaddai
-https://www.youtube.com/watch?v=DmpP-RMFNHo:
-- 'The Elder Scrolls III: Morrowind'
-- 'The Elder Scrolls 3: Morrowind'
-- Morrowind
-https://www.youtube.com/watch?v=DoQekfFkXvI:
-- Super Mario Land
-https://www.youtube.com/watch?v=Dr95nRD7vAo:
-- FTL
-https://www.youtube.com/watch?v=DxEl2p9GPnY:
-- The Lost Vikings
-https://www.youtube.com/watch?v=DzXQKut6Ih4:
-- 'Castlevania: Dracula X'
-https://www.youtube.com/watch?v=E3PKlQUYNTw:
-- Okamiden
-https://www.youtube.com/watch?v=E3Po0o6zoJY:
-- 'TrackMania 2: Stadium'
-- 'TrackMania II: Stadium'
-https://www.youtube.com/watch?v=E5K6la0Fzuw:
-- Driver
-https://www.youtube.com/watch?v=E99qxCMb05g:
-- VVVVVV
-https://www.youtube.com/watch?v=ECP710r6JCM:
-- Super Smash Bros. Wii U / 3DS
-- super smash bros wii u
-- super smash bros 3ds
-- super smash bros. wii u
-- super smash bros. 3ds
-https://www.youtube.com/watch?v=EDmsNVWZIws:
-- Dragon Quest
-https://www.youtube.com/watch?v=EF7QwcRAwac:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=EF_lbrpdRQo:
-- Contact
-https://www.youtube.com/watch?v=EHAbZoBjQEw:
-- Secret of Evermore
-https://www.youtube.com/watch?v=EHRfd2EQ_Do:
-- Persona 4
-- Persona IV
-https://www.youtube.com/watch?v=EL_jBUYPi88:
-- Journey to Silius
-https://www.youtube.com/watch?v=ELqpqweytFc:
-- Metroid Prime
-https://www.youtube.com/watch?v=ELyz549E_f4:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=ENStkWiosK4:
-- Kid Icarus
-https://www.youtube.com/watch?v=EQjT6103nLg:
-- Senko no Ronde (Wartech)
-- Wartech
-- senko no ronde
-https://www.youtube.com/watch?v=ERUnY6EIsn8:
-- Snake Pass
-https://www.youtube.com/watch?v=ERohLbXvzVQ:
-- Z-Out
-https://www.youtube.com/watch?v=EVo5O3hKVvo:
-- Mega Turrican
-https://www.youtube.com/watch?v=EX5V_PWI3yM:
-- Kingdom Hearts II
-- Kingdom Hearts 2
-https://www.youtube.com/watch?v=EcUxGQkLj2c:
-- Final Fantasy III DS
-- Final Fantasy 3 DS
-https://www.youtube.com/watch?v=EdkkgkEu_NQ:
-- The Smurfs' Nightmare
-https://www.youtube.com/watch?v=EeGhYL_8wtg:
-- Phantasy Star Portable 2
-- Phantasy Star Portable II
-https://www.youtube.com/watch?v=EeXlQNJnjj0:
-- 'E.V.O: Search for Eden'
-https://www.youtube.com/watch?v=Ef3xB2OP8l8:
-- Diddy Kong Racing
-https://www.youtube.com/watch?v=Ef5pp7mt1lA:
-- 'Animal Crossing: Wild World'
-https://www.youtube.com/watch?v=Ekiz0YMNp7A:
-- 'Romancing SaGa: Minstrel Song'
-https://www.youtube.com/watch?v=ElSUKQOF3d4:
-- Elebits
-https://www.youtube.com/watch?v=EmD9WnLYR5I:
-- Super Mario Land 2
-- Super Mario Land II
-https://www.youtube.com/watch?v=EohQnQbQQWk:
-- Super Mario Kart
-https://www.youtube.com/watch?v=EpbcztAybh0:
-- Super Mario Maker
-https://www.youtube.com/watch?v=ErlBKXnOHiQ:
-- Dragon Quest IV
-- Dragon Quest 4
-https://www.youtube.com/watch?v=Ev1MRskhUmA:
-- Dragon Quest VI
-- Dragon Quest 6
-https://www.youtube.com/watch?v=EvRTjXbb8iw:
-- Unlimited Saga
-https://www.youtube.com/watch?v=F0cuCvhbF9k:
-- 'The Legend of Zelda: Breath of the Wild'
-- 'breath of the wild'
-https://www.youtube.com/watch?v=F2-bROS64aI:
-- Mega Man Soccer
-https://www.youtube.com/watch?v=F3hz58VDWs8:
-- Chrono Trigger
-https://www.youtube.com/watch?v=F41PKROUnhA:
-- F-Zero GX
-https://www.youtube.com/watch?v=F4QbiPftlEE:
-- Dustforce
-https://www.youtube.com/watch?v=F6sjYt6EJVw:
-- Journey to Silius
-https://www.youtube.com/watch?v=F7p1agUovzs:
-- 'Silent Hill: Shattered Memories'
-https://www.youtube.com/watch?v=F8U5nxhxYf0:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=FCB7Dhm8RuY:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=FDAMxLKY2EY:
-- Ogre Battle
-https://www.youtube.com/watch?v=FE59rlKJRPs:
-- Rogue Galaxy
-https://www.youtube.com/watch?v=FEpAD0RQ66w:
-- Shinobi III
-- Shinobi 3
-https://www.youtube.com/watch?v=FGtk_eaVnxQ:
-- Minecraft
-https://www.youtube.com/watch?v=FJ976LQSY-k:
-- Western Lords
-https://www.youtube.com/watch?v=FJJPaBA7264:
-- 'Castlevania: Aria of Sorrow'
-https://www.youtube.com/watch?v=FKqTtZXIid4:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=FKtnlUcGVvM:
-- Star Ocean 3
-- Star Ocean III
-https://www.youtube.com/watch?v=FPjueitq904:
-- "Einh\xC3\xA4nder"
-https://www.youtube.com/watch?v=FQioui9YeiI:
-- Ragnarok Online
-https://www.youtube.com/watch?v=FR-TFI71s6w:
-- Super Monkey Ball 2
-- Super Monkey Ball II
-https://www.youtube.com/watch?v=FSfRr0LriBE:
-- Hearthstone
-https://www.youtube.com/watch?v=FWSwAKVS-IA:
-- 'Disaster: Day of Crisis'
-https://www.youtube.com/watch?v=FYSt4qX85oA:
-- 'Star Ocean 3: Till the End of Time'
-- 'Star Ocean III: Till the End of Time'
-https://www.youtube.com/watch?v=Fa9-pSBa9Cg:
-- Gran Turismo 5
-- Gran Turismo V
-https://www.youtube.com/watch?v=Ff_r_6N8PII:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=FgQaK7TGjX4:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=FjFx5oO-riE:
-- 'Castlevania: Order of Ecclesia'
-https://www.youtube.com/watch?v=FkMm63VAHps:
-- Gunlord
-https://www.youtube.com/watch?v=FnogL42dEL4:
-- 'Command & Conquer: Red Alert'
-- 'command and conquer: red alert'
-https://www.youtube.com/watch?v=FqrNEjtl2FI:
-- Twinsen's Odyssey
-https://www.youtube.com/watch?v=FrhLXDBP-2Q:
-- DuckTales
-https://www.youtube.com/watch?v=Fs9FhHHQKwE:
-- Chrono Cross
-https://www.youtube.com/watch?v=Ft-qnOD77V4:
-- Doom
-https://www.youtube.com/watch?v=G0YMlSu1DeA:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=G4g1SH2tEV0:
-- Aliens Incursion
-https://www.youtube.com/watch?v=GAVePrZeGTc:
-- SaGa Frontier
-https://www.youtube.com/watch?v=GBYsdw4Vwx8:
-- Silent Hill 2
-- Silent Hill II
-https://www.youtube.com/watch?v=GC99a8VRsIw:
-- Earthbound
-https://www.youtube.com/watch?v=GCiOjOMciOI:
-- LocoRoco
-https://www.youtube.com/watch?v=GEuRzRW86bI:
-- Musashi Samurai Legend
-https://www.youtube.com/watch?v=GIhf0yU94q4:
-- Mr. Nutz
-https://www.youtube.com/watch?v=GIuBC4GU6C8:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=GKFwm2NSJdc:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=GKKhBT0A1pE:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=GLPT6H4On4o:
-- Metroid Fusion
-https://www.youtube.com/watch?v=GM6lrZw9Fdg:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=GNqR9kGLAeA:
-- Croc 2
-- Croc II
-https://www.youtube.com/watch?v=GQND5Y7_pXc:
-- Sprint Vector
-https://www.youtube.com/watch?v=GRU4yR3FQww:
-- Final Fantasy XIII
-- Final Fantasy 13
-https://www.youtube.com/watch?v=GWaooxrlseo:
-- Mega Man X3
-https://www.youtube.com/watch?v=G_80PQ543rM:
-- DuckTales
-https://www.youtube.com/watch?v=GaOT77kUTD8:
-- Jack Bros.
-https://www.youtube.com/watch?v=GdOFuA2qpG4:
-- Mega Man Battle Network 3
-- Mega Man Battle Network III
-https://www.youtube.com/watch?v=GhFffRvPfig:
-- DuckTales
-https://www.youtube.com/watch?v=Gibt8OLA__M:
-- Pilotwings 64
-https://www.youtube.com/watch?v=GnwlAOp6tfI:
-- L.A. Noire
-- 50.A. Noire
-https://www.youtube.com/watch?v=Gt-QIiYkAOU:
-- Galactic Pinball
-https://www.youtube.com/watch?v=GtZNgj5OUCM:
-- 'Pokemon Mystery Dungeon: Explorers of Sky'
-https://www.youtube.com/watch?v=GyiSanVotOM:
-- Dark Souls II
-- Dark Souls 2
-https://www.youtube.com/watch?v=GyuReqv2Rnc:
-- ActRaiser
-https://www.youtube.com/watch?v=GzBsFGh6zoc:
-- Lufia
-https://www.youtube.com/watch?v=Gza34GxrZlk:
-- Secret of the Stars
-https://www.youtube.com/watch?v=H-CwNdgHcDw:
-- Lagoon
-https://www.youtube.com/watch?v=H1B52TSCl_A:
-- Super Mario 64
-https://www.youtube.com/watch?v=H2-rCJmEDIQ:
-- Fez
-https://www.youtube.com/watch?v=H3fQtYVwpx4:
-- Croc 2
-- Croc II
-https://www.youtube.com/watch?v=H4hryHF3kTw:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=HCHsMo4BOJ0:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=HCi2-HtFh78:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=HFKtYCcMWT4:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=HGMjMDE-gAY:
-- Terranigma
-https://www.youtube.com/watch?v=HHun7iYtbFU:
-- Mega Man 6
-- Mega Man VI
-https://www.youtube.com/watch?v=HIKOSJh9_5k:
-- Treasure Hunter G
-https://www.youtube.com/watch?v=HImC0q17Pk0:
-- 'FTL: Faster Than Light'
-https://www.youtube.com/watch?v=HLl-oMBhiPc:
-- 'Sailor Moon RPG: Another Story'
-https://www.youtube.com/watch?v=HNPqugUrdEM:
-- 'Castlevania: Lament of Innocence'
-https://www.youtube.com/watch?v=HO0rvkOPQww:
-- Guardian's Crusade
-https://www.youtube.com/watch?v=HRAnMmwuLx4:
-- Radiant Historia
-https://www.youtube.com/watch?v=HSWAPWjg5AM:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=HTo_H7376Rs:
-- Dark Souls II
-- Dark Souls 2
-https://www.youtube.com/watch?v=HUpDqe4s4do:
-- 'Lunar: The Silver Star'
-https://www.youtube.com/watch?v=HUzLO2GpPv4:
-- Castlevania 64
-https://www.youtube.com/watch?v=HW5WcFpYDc4:
-- 'Mega Man Battle Network 5: Double Team'
-- 'Mega Man Battle Network V: Double Team'
-https://www.youtube.com/watch?v=HXxA7QJTycA:
-- Mario Kart Wii
-https://www.youtube.com/watch?v=HZ9O1Gh58vI:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=H_rMLATTMws:
-- Illusion of Gaia
-https://www.youtube.com/watch?v=HaRmFcPG7o8:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=Hbw3ZVY7qGc:
-- Scott Pilgrim vs the World
-https://www.youtube.com/watch?v=He7jFaamHHk:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=HeirTA9Y9i0:
-- Maken X
-https://www.youtube.com/watch?v=HijQBbE0WiQ:
-- Heroes of Might and Magic III
-- Heroes of Might and Magic 3
-https://www.youtube.com/watch?v=HmOUI30QqiE:
-- Streets of Rage 2
-- Streets of Rage II
-https://www.youtube.com/watch?v=HneWfB9jsHk:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=Ho2TE9ZfkgI:
-- Battletoads (Arcade)
-- battletoads
-https://www.youtube.com/watch?v=HpecW3jSJvQ:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=Hro03nOyUuI:
-- Ecco the Dolphin (Sega CD)
-- Ecco the Dolphin
-https://www.youtube.com/watch?v=HtJPpVCuYGQ:
-- 'Chuck Rock II: Son of Chuck'
-- 'Chuck Rock 2: Son of Chuck'
-https://www.youtube.com/watch?v=HvnAkAQK82E:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=HvyPtN7_jNk:
-- F-Zero GX
-https://www.youtube.com/watch?v=HwBOvdH38l0:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=HyWy1vzcqGE:
-- Boom Blox
-https://www.youtube.com/watch?v=I-_yzFMnclM:
-- 'Lufia: The Legend Returns'
-https://www.youtube.com/watch?v=I0FNN-t4pRU:
-- Earthbound
-https://www.youtube.com/watch?v=I0rfWwuyHFg:
-- Time Trax
-https://www.youtube.com/watch?v=I1USJ16xqw4:
-- Disney's Aladdin
-https://www.youtube.com/watch?v=I2LzT-9KtNA:
-- The Oregon Trail
-https://www.youtube.com/watch?v=I4b8wCqmQfE:
-- Phantasy Star Online Episode III
-- Phantasy Star Online Episode 3
-https://www.youtube.com/watch?v=I4gMnPkOQe8:
-- Earthbound
-https://www.youtube.com/watch?v=I5GznpBjHE4:
-- Soul Blazer
-https://www.youtube.com/watch?v=I8ij2RGGBtc:
-- Mario Sports Mix
-https://www.youtube.com/watch?v=I8zZaUvkIFY:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=ICOotKB_MUc:
-- Top Gear
-https://www.youtube.com/watch?v=ICdhgaXXor4:
-- Mass Effect 3
-- Mass Effect III
-https://www.youtube.com/watch?v=IDUGJ22OWLE:
-- Front Mission 1st
-https://www.youtube.com/watch?v=IE3FTu_ppko:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=IEMaS33Wcd8:
-- Shovel Knight
-https://www.youtube.com/watch?v=IEf1ALD_TCA:
-- Bully
-https://www.youtube.com/watch?v=IQDiMzoTMH4:
-- 'World of Warcraft: Wrath of the Lich King'
-https://www.youtube.com/watch?v=IS-bZp4WW4w:
-- Crusader of Centy
-https://www.youtube.com/watch?v=ITQVlvGsSDA:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=ITijTBoqJpc:
-- 'Final Fantasy Fables: Chocobo''s Dungeon'
-https://www.youtube.com/watch?v=IUAZtA-hHsw:
-- SaGa Frontier II
-- SaGa Frontier 2
-https://www.youtube.com/watch?v=IVCQ-kau7gs:
-- Shatterhand
-https://www.youtube.com/watch?v=IWoCTYqBOIE:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=IXU7Jhi6jZ8:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=IY7hfsfPh84:
-- Radiata Stories
-https://www.youtube.com/watch?v=IYGLnkSrA50:
-- Super Paper Mario
-https://www.youtube.com/watch?v=Ia1BEcALLX0:
-- Radiata Stories
-https://www.youtube.com/watch?v=IbBmFShDBzs:
-- Secret of Mana
-https://www.youtube.com/watch?v=Ie1zB5PHwEw:
-- Contra
-https://www.youtube.com/watch?v=IgPtGSdLliQ:
-- Chrono Trigger
-https://www.youtube.com/watch?v=IjZaRBbmVUc:
-- Bastion
-https://www.youtube.com/watch?v=ImdjNeH310w:
-- Ragnarok Online II
-- Ragnarok Online 2
-https://www.youtube.com/watch?v=IrLs8cW3sIc:
-- 'The Legend of Zelda: Wind Waker'
-- wind waker
-https://www.youtube.com/watch?v=Ir_3DdPZeSg:
-- 'Far Cry 3: Blood Dragon'
-- 'Far Cry III: Blood Dragon'
-https://www.youtube.com/watch?v=Is_yOYLMlHY:
-- "We \xE2\u2122\xA5 Katamari"
-https://www.youtube.com/watch?v=Iss6CCi3zNk:
-- Earthbound
-https://www.youtube.com/watch?v=Iu4MCoIyV94:
-- Motorhead
-https://www.youtube.com/watch?v=IwIt4zlHSWM:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=IyAs15CjGXU:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=J-zD9QjtRNo:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=J1x1Ao6CxyA:
-- Double Dragon II
-- Double Dragon 2
-https://www.youtube.com/watch?v=J323aFuwx64:
-- Super Mario Bros 3
-- Super Mario Bros III
-https://www.youtube.com/watch?v=J4EE4hRA9eU:
-- Lost Odyssey
-https://www.youtube.com/watch?v=J67nkzoJ_2M:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=J6Beh5YUWdI:
-- Wario World
-https://www.youtube.com/watch?v=JA_VeKxyfiU:
-- Golden Sun
-https://www.youtube.com/watch?v=JCqSHvyY_2I:
-- Secret of Evermore
-https://www.youtube.com/watch?v=JE1hhd0E-_I:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=JF7ucc5IH_Y:
-- Mass Effect
-https://www.youtube.com/watch?v=JFadABMZnYM:
-- Ragnarok Online
-https://www.youtube.com/watch?v=JGQ_Z0W43D4:
-- Secret of Evermore
-https://www.youtube.com/watch?v=JHrGsxoZumY:
-- Soukaigi
-https://www.youtube.com/watch?v=JKVUavdztAg:
-- Shovel Knight
-https://www.youtube.com/watch?v=JOFsATsPiH0:
-- Deus Ex
-https://www.youtube.com/watch?v=JRKOBmaENoE:
-- Spanky's Quest
-https://www.youtube.com/watch?v=JS8vCLXX5Pg:
-- Panzer Dragoon Saga
-https://www.youtube.com/watch?v=JV8qMsWKTvk:
-- Legaia 2
-- Legaia II
-https://www.youtube.com/watch?v=JWMtsksJtYw:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=JXtWCWeM6uI:
-- Animal Crossing
-https://www.youtube.com/watch?v=J_cTMwAZil0:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=Jb83GX7k_08:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=Je3YoGKPC_o:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=Jg5M1meS6wI:
-- Metal Gear Solid
-https://www.youtube.com/watch?v=JgGPRcUgGNk:
-- Ace Combat 6
-- Ace Combat VI
-https://www.youtube.com/watch?v=Jgm24MNQigg:
-- Parasite Eve II
-- Parasite Eve 2
-https://www.youtube.com/watch?v=JhDblgtqx5o:
-- Arumana no Kiseki
-https://www.youtube.com/watch?v=Jig-PUAk-l0:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=JkEt-a3ro1U:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=JlGnZvt5OBE:
-- Ittle Dew
-https://www.youtube.com/watch?v=Jokz0rBmE7M:
-- ZombiU
-https://www.youtube.com/watch?v=Jq949CcPxnM:
-- Super Valis IV
-- Super Valis 4
-https://www.youtube.com/watch?v=JrlGy3ozlDA:
-- Deep Fear
-https://www.youtube.com/watch?v=JsjTpjxb9XU:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=JvGhaOX-aOo:
-- Mega Man & Bass
-- mega man and bass
-https://www.youtube.com/watch?v=JvMsfqT9KB8:
-- Hotline Miami
-https://www.youtube.com/watch?v=JwSV7nP5wcs:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=JxhYFSN_xQY:
-- Musashi Samurai Legend
-https://www.youtube.com/watch?v=Jz2sxbuN3gM:
-- 'Moon: Remix RPG Adventure'
-https://www.youtube.com/watch?v=JzPKClyQ1rQ:
-- Persona 3 Portable
-- Persona III Portable
-https://www.youtube.com/watch?v=K2fx7bngK80:
-- Thumper
-https://www.youtube.com/watch?v=K5AOu1d79WA:
-- 'Ecco the Dolphin: Defender of the Future'
-https://www.youtube.com/watch?v=KAHuWEfue8U:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=KB0Yxdtig90:
-- 'Hitman 2: Silent Assassin'
-- 'Hitman II: Silent Assassin'
-https://www.youtube.com/watch?v=KDVUlqp8aFM:
-- Earthworm Jim
-https://www.youtube.com/watch?v=KI6ZwWinXNM:
-- 'Digimon Story: Cyber Sleuth'
-https://www.youtube.com/watch?v=KTHBvQKkibA:
-- The 7th Saga
-https://www.youtube.com/watch?v=KULCV3TgyQk:
-- Breath of Fire
-https://www.youtube.com/watch?v=KWH19AGkFT0:
-- Dark Cloud
-https://www.youtube.com/watch?v=KWIbZ_4k3lE:
-- Final Fantasy III
-- Final Fantasy 3
-https://www.youtube.com/watch?v=KWRoyFQ1Sj4:
-- Persona 5
-- Persona V
-https://www.youtube.com/watch?v=KX57tzysYQc:
-- Metal Gear 2
-- Metal Gear II
-https://www.youtube.com/watch?v=KYfK61zxads:
-- Angry Video Game Nerd Adventures
-https://www.youtube.com/watch?v=KZA1PegcwIg:
-- Goldeneye
-https://www.youtube.com/watch?v=KZyPC4VPWCY:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=K_jigRSuN-g:
-- MediEvil
-https://www.youtube.com/watch?v=Kc7UynA9WVk:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=KgCLAXQow3w:
-- Ghouls 'n' Ghosts
-https://www.youtube.com/watch?v=KiGfjOLF_j0:
-- Earthbound
-https://www.youtube.com/watch?v=Kk0QDbYvtAQ:
-- Arcana
-https://www.youtube.com/watch?v=Km-cCxquP-s:
-- Yoshi's Island
-https://www.youtube.com/watch?v=KnTyM5OmRAM:
-- 'Mario & Luigi: Partners in Time'
-- 'mario and luigi: partners in time'
-https://www.youtube.com/watch?v=KnoUxId8yUQ:
-- Jak & Daxter
-- jak and daxter
-https://www.youtube.com/watch?v=KoPF_wOrQ6A:
-- 'Tales from Space: Mutant Blobs Attack'
-https://www.youtube.com/watch?v=Kr5mloai1B0:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=KrvdivSD98k:
-- Sonic the Hedgehog 3
-- Sonic the Hedgehog III
-https://www.youtube.com/watch?v=Ks9ZCaUNKx4:
-- Quake II
-- Quake 2
-https://www.youtube.com/watch?v=L5t48bbzRDs:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=L8TEsGhBOfI:
-- The Binding of Isaac
-https://www.youtube.com/watch?v=L9Uft-9CV4g:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=L9e6Pye7p5A:
-- Mystical Ninja Starring Goemon
-https://www.youtube.com/watch?v=LAHKscXvt3Q:
-- Space Harrier
-https://www.youtube.com/watch?v=LD4OAYQx1-I:
-- Metal Gear Solid 4
-- Metal Gear Solid IV
-https://www.youtube.com/watch?v=LDvKwSVuUGA:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=LGLW3qgiiB8:
-- "We \xE2\u2122\xA5 Katamari"
-https://www.youtube.com/watch?v=LPO5yrMSMEw:
-- Ridge Racers
-https://www.youtube.com/watch?v=LQ0uDk5i_s0:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=LQxlUTTrKWE:
-- 'Assassin''s Creed III: The Tyranny of King Washington'
-- 'Assassin''s Creed 3: The Tyranny of King Washington'
-https://www.youtube.com/watch?v=LSFho-sCOp0:
-- Grandia
-https://www.youtube.com/watch?v=LScvuN6-ZWo:
-- Battletoads & Double Dragon
-- battletoads
-- double dragon
-https://www.youtube.com/watch?v=LSfbb3WHClE:
-- No More Heroes
-https://www.youtube.com/watch?v=LTWbJDROe7A:
-- Xenoblade Chronicles X
-- Xenoblade Chronicles 10
-https://www.youtube.com/watch?v=LUjxPj3al5U:
-- Blue Dragon
-https://www.youtube.com/watch?v=LXuXWMV2hW4:
-- Metroid AM2R
-https://www.youtube.com/watch?v=LYiwMd5y78E:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=LcFX7lFjfqA:
-- Shin Megami Tensei IV
-- Shin Megami Tensei 4
-https://www.youtube.com/watch?v=LdIlCX2iOa0:
-- Antichamber
-https://www.youtube.com/watch?v=Lj8ouSLvqzU:
-- Megalomachia 2
-- Megalomachia II
-https://www.youtube.com/watch?v=LkRfePyfoj4:
-- Senko no Ronde (Wartech)
-- wartech
-- senko no ronde
-https://www.youtube.com/watch?v=LlokRNcURKM:
-- The Smurfs' Nightmare
-https://www.youtube.com/watch?v=LpO2ar64UGE:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=LpxUHj-a_UI:
-- Michael Jackson's Moonwalker
-https://www.youtube.com/watch?v=Luko2A5gNpk:
-- Metroid Prime
-https://www.youtube.com/watch?v=Lx906iVIZSE:
-- 'Diablo III: Reaper of Souls'
-- 'Diablo 3: Reaper of Souls'
-https://www.youtube.com/watch?v=M16kCIMiNyc:
-- 'Lisa: The Painful RPG'
-https://www.youtube.com/watch?v=M3FytW43iOI:
-- Fez
-https://www.youtube.com/watch?v=M3Wux3163kI:
-- 'Castlevania: Dracula X'
-https://www.youtube.com/watch?v=M4FN0sBxFoE:
-- Arc the Lad
-https://www.youtube.com/watch?v=M4XYQ8YfVdo:
-- Rollercoaster Tycoon 3
-- Rollercoaster Tycoon III
-https://www.youtube.com/watch?v=MCITsL-vfW8:
-- Miitopia
-https://www.youtube.com/watch?v=MH00uDOwD28:
-- Portal 2
-- Portal II
-https://www.youtube.com/watch?v=MK41-UzpQLk:
-- Star Fox 64
-https://www.youtube.com/watch?v=ML-kTPHnwKI:
-- Metroid
-https://www.youtube.com/watch?v=MLFX_CIsvS8:
-- Final Fantasy Adventure
-https://www.youtube.com/watch?v=MPvQoxXUQok:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=MTThoxoAVoI:
-- NieR
-https://www.youtube.com/watch?v=MYNeu0cZ3NE:
-- Silent Hill
-https://www.youtube.com/watch?v=M_B1DJu8FlQ:
-- Super Mario Odyssey
-https://www.youtube.com/watch?v=MaiHaXRYtNQ:
-- Tales of Vesperia
-https://www.youtube.com/watch?v=MbkMki62A4o:
-- Gran Turismo 5
-- Gran Turismo V
-https://www.youtube.com/watch?v=Mea-D-VFzck:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=MffE4TpsHto:
-- Assassin's Creed II
-- Assassin's Creed 2
-https://www.youtube.com/watch?v=MfsFZsPiw3M:
-- Grandia
-https://www.youtube.com/watch?v=Mg236zrHA40:
-- Dragon Quest VIII
-- Dragon Quest 8
-https://www.youtube.com/watch?v=MhjEEbyuJME:
-- Xenogears
-https://www.youtube.com/watch?v=MjeghICMVDY:
-- Ape Escape 3
-- Ape Escape III
-https://www.youtube.com/watch?v=MkKh-oP7DBQ:
-- Waterworld
-https://www.youtube.com/watch?v=MlRGotA3Yzs:
-- Mega Man 4
-- Mega Man IV
-https://www.youtube.com/watch?v=MlhPnFjCfwc:
-- Blue Stinger
-https://www.youtube.com/watch?v=Mn3HPClpZ6Q:
-- 'Vampire The Masquerade: Bloodlines'
-https://www.youtube.com/watch?v=Mobwl45u2J8:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=MowlJduEbgY:
-- Ori and the Blind Forest
-https://www.youtube.com/watch?v=MqK5MvPwPsE:
-- Hotline Miami
-https://www.youtube.com/watch?v=MthR2dXqWHI:
-- Super Mario RPG
-https://www.youtube.com/watch?v=MvJUxw8rbPA:
-- 'The Elder Scrolls III: Morrowind'
-- 'The Elder Scrolls 3: Morrowind'
-- Morrowind
-https://www.youtube.com/watch?v=MxShFnOgCnk:
-- Soma Bringer
-https://www.youtube.com/watch?v=MxyCk1mToY4:
-- Koudelka
-https://www.youtube.com/watch?v=N-BiX7QXE8k:
-- Shin Megami Tensei Nocturne
-https://www.youtube.com/watch?v=N-T8KwCCNh8:
-- Advance Wars DS
-https://www.youtube.com/watch?v=N1EyCv65yOI:
-- 'Qbeh-1: The Atlas Cube'
-- 'Qbeh-I: The Atlas Cube'
-https://www.youtube.com/watch?v=N1lp6YLpT_o:
-- Tribes 2
-- Tribes II
-https://www.youtube.com/watch?v=N2_yNExicyI:
-- 'Castlevania: Curse of Darkness'
-https://www.youtube.com/watch?v=N46rEikk4bw:
-- Ecco the Dolphin (Sega CD)
-- Ecco the Dolphin
-https://www.youtube.com/watch?v=N4V4OxH1d9Q:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=N6hzEQyU6QM:
-- Grounseed
-https://www.youtube.com/watch?v=N74vegXRMNk:
-- Bayonetta
-https://www.youtube.com/watch?v=NAyXKITCss8:
-- Forza Motorsport 4
-- Forza Motorsport IV
-https://www.youtube.com/watch?v=NFsvEFkZHoE:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=NGJp1-tPT54:
-- OutRun2
-https://www.youtube.com/watch?v=NL0AZ-oAraw:
-- Terranigma
-https://www.youtube.com/watch?v=NOomtJrX_MA:
-- Western Lords
-https://www.youtube.com/watch?v=NP3EK1Kr1sQ:
-- Dr. Mario
-https://www.youtube.com/watch?v=NRNHbaF_bvY:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=NT-c2ZeOpsg:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=NTfVsOnX0lY:
-- Rayman
-https://www.youtube.com/watch?v=NUloEiKpAZU:
-- Goldeneye
-https://www.youtube.com/watch?v=NVRgpAmkmPg:
-- Resident Evil 4
-- Resident Evil IV
-https://www.youtube.com/watch?v=NXr5V6umW6U:
-- Opoona
-https://www.youtube.com/watch?v=NZVZC4x9AzA:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=NcjcKZnJqAA:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=Nd2O6mbhCLU:
-- Mega Man 5
-- Mega Man V
-https://www.youtube.com/watch?v=NgKT8GTKhYU:
-- 'Final Fantasy XI: Wings of the Goddess'
-- 'Final Fantasy 11: Wings of the Goddess'
-https://www.youtube.com/watch?v=Nhj0Rct8v48:
-- The Wonderful 101
-- The Wonderful CI
-https://www.youtube.com/watch?v=NjG2ZjPqzzE:
-- Journey to Silius
-https://www.youtube.com/watch?v=NjmUCbNk65o:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=NkonFpRLGTU:
-- Transistor
-https://www.youtube.com/watch?v=NlsRts7Sims:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=Nn5K-NNmgTM:
-- Chrono Trigger
-https://www.youtube.com/watch?v=NnZlRu28fcU:
-- Etrian Odyssey
-https://www.youtube.com/watch?v=NnvD6RDF-SI:
-- Chibi-Robo
-https://www.youtube.com/watch?v=NnvZ6Dqv7Ws:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=Nr2McZBfSmc:
-- Uninvited
-https://www.youtube.com/watch?v=NtRlpjt5ItA:
-- Lone Survivor
-https://www.youtube.com/watch?v=NtXv9yFZI_Y:
-- Earthbound
-https://www.youtube.com/watch?v=Nu91ToSI4MU:
-- Breath of Death VII
-- Breath of Death 7
-https://www.youtube.com/watch?v=NuSPcCqiCZo:
-- Pilotwings 64
-https://www.youtube.com/watch?v=Nw5cfSRvFSA:
-- Super Meat Boy
-https://www.youtube.com/watch?v=Nw7bbb1mNHo:
-- NeoTokyo
-https://www.youtube.com/watch?v=NxWGa33zC8w:
-- Alien Breed
-https://www.youtube.com/watch?v=O-v3Df_q5QQ:
-- Star Fox Adventures
-https://www.youtube.com/watch?v=O0fQlDmSSvY:
-- Opoona
-https://www.youtube.com/watch?v=O0kjybFXyxM:
-- Final Fantasy X-2
-- Final Fantasy 10-2
-- Final Fantasy X-II
-https://www.youtube.com/watch?v=O0rVK4H0-Eo:
-- Legaia 2
-- Legaia II
-https://www.youtube.com/watch?v=O1Ysg-0v7aQ:
-- Tekken 2
-- Tekken II
-https://www.youtube.com/watch?v=O5a4jwv-jPo:
-- Teenage Mutant Ninja Turtles
-https://www.youtube.com/watch?v=O8jJJXgNLo4:
-- Diablo I & II
-- Diablo 1 & 2
-- diablo 1
-- diablo 2
-- diablo I
-- diablo II
-https://www.youtube.com/watch?v=OB9t0q4kkEE:
-- Katamari Damacy
-https://www.youtube.com/watch?v=OCFWEWW9tAo:
-- SimCity
-https://www.youtube.com/watch?v=OD49e9J3qbw:
-- 'Resident Evil: Revelations'
-https://www.youtube.com/watch?v=ODjYdlmwf1E:
-- 'The Binding of Isaac: Rebirth'
-https://www.youtube.com/watch?v=OIsI5kUyLcI:
-- Super Mario Maker
-https://www.youtube.com/watch?v=OJjsUitjhmU:
-- 'Chuck Rock II: Son of Chuck'
-- 'Chuck Rock 2: Son of Chuck'
-https://www.youtube.com/watch?v=OMsJdryIOQU:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=OUmeK282f-E:
-- 'Silent Hill 4: The Room'
-- 'Silent Hill IV: The Room'
-https://www.youtube.com/watch?v=OViAthHme2o:
-- The Binding of Isaac
-https://www.youtube.com/watch?v=OWQ4bzYMbNQ:
-- Devil May Cry 3
-- Devil May Cry III
-https://www.youtube.com/watch?v=OXHIuTm-w2o:
-- Super Mario RPG
-https://www.youtube.com/watch?v=OXWqqshHuYs:
-- La-Mulana
-https://www.youtube.com/watch?v=OXqxg3FpuDA:
-- Ollie King
-https://www.youtube.com/watch?v=OYr-B_KWM50:
-- Mega Man 3
-- Mega Man III
-https://www.youtube.com/watch?v=OZLXcCe7GgA:
-- Ninja Gaiden
-https://www.youtube.com/watch?v=Oam7ttk5RzA:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=OegoI_0vduQ:
-- Mystical Ninja Starring Goemon
-https://www.youtube.com/watch?v=OjRNSYsddz0:
-- Yo-Kai Watch
-https://www.youtube.com/watch?v=Ol9Ine1TkEk:
-- Dark Souls
-https://www.youtube.com/watch?v=OmMWlRu6pbM:
-- 'Call of Duty: Black Ops II'
-- 'Call of Duty: Black Ops 2'
-- black ops 2
-https://www.youtube.com/watch?v=On1N8hL95Xw:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=Op2h7kmJw10:
-- 'Castlevania: Dracula X'
-https://www.youtube.com/watch?v=OpvLr9vyOhQ:
-- Undertale
-https://www.youtube.com/watch?v=OqXhJ_eZaPI:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=Os2q1_PkgzY:
-- Super Adventure Island
-https://www.youtube.com/watch?v=Ou0WU5p5XkI:
-- 'Atelier Iris 3: Grand Phantasm'
-- 'Atelier Iris III: Grand Phantasm'
-https://www.youtube.com/watch?v=Ovn18xiJIKY:
-- Dragon Quest VI
-- Dragon Quest 6
-https://www.youtube.com/watch?v=OzbSP7ycMPM:
-- Yoshi's Island
-https://www.youtube.com/watch?v=P01-ckCZtCo:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=P1IBUrLte2w:
-- Earthbound 64
-https://www.youtube.com/watch?v=P2smOsHacjk:
-- The Magical Land of Wozz
-https://www.youtube.com/watch?v=P3FU2NOzUEU:
-- Paladin's Quest
-https://www.youtube.com/watch?v=P3oYGDwIKbc:
-- The Binding of Isaac
-https://www.youtube.com/watch?v=P3vzN5sizXk:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=P7K7jzxf6iw:
-- Legend of Legaia
-https://www.youtube.com/watch?v=P8oefrmJrWk:
-- Metroid Prime
-https://www.youtube.com/watch?v=P9OdKnQQchQ:
-- 'The Elder Scrolls IV: Oblivion'
-- 'The Elder Scrolls 4: Oblivion'
-- Oblivion
-https://www.youtube.com/watch?v=PAU7aZ_Pz4c:
-- Heimdall 2
-- Heimdall II
-https://www.youtube.com/watch?v=PAuFr7PZtGg:
-- Tales of Legendia
-https://www.youtube.com/watch?v=PFQCO_q6kW8:
-- Donkey Kong 64
-https://www.youtube.com/watch?v=PGowEQXyi3Y:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=PKno6qPQEJg:
-- Blaster Master
-https://www.youtube.com/watch?v=PMKc5Ffynzw:
-- 'Kid Icarus: Uprising'
-https://www.youtube.com/watch?v=POAGsegLMnA:
-- Super Mario Land
-https://www.youtube.com/watch?v=PQjOIZTv8I4:
-- Super Street Fighter II Turbo
-- Super Street Fighter 2 Turbo
-https://www.youtube.com/watch?v=PRCBxcvNApQ:
-- Glover
-https://www.youtube.com/watch?v=PRLWoJBwJFY:
-- World of Warcraft
-https://www.youtube.com/watch?v=PUZ8r9MJczQ:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=PXqJEm-vm-w:
-- Tales of Vesperia
-https://www.youtube.com/watch?v=PZBltehhkog:
-- 'MediEvil: Resurrection'
-https://www.youtube.com/watch?v=PZnF6rVTgQE:
-- Dragon Quest VII
-- Dragon Quest 7
-https://www.youtube.com/watch?v=PZwTdBbDmB8:
-- Mother
-https://www.youtube.com/watch?v=Pc3GfVHluvE:
-- Baten Kaitos
-https://www.youtube.com/watch?v=PfY_O8NPhkg:
-- 'Bravely Default: Flying Fairy'
-https://www.youtube.com/watch?v=PhW7tlUisEU:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=Pjdvqy1UGlI:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=PjlkqeMdZzU:
-- Paladin's Quest II
-- Paladin's Quest 2
-https://www.youtube.com/watch?v=PkKXW2-3wvg:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=Pmn-r3zx-E0:
-- Katamari Damacy
-https://www.youtube.com/watch?v=Poh9VDGhLNA:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=PqvQvt3ePyg:
-- Live a Live
-https://www.youtube.com/watch?v=PwEzeoxbHMQ:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=PwlvY_SeUQU:
-- Starcraft
-https://www.youtube.com/watch?v=PyubBPi9Oi0:
-- Pokemon
-https://www.youtube.com/watch?v=PzkbuitZEjE:
-- Ragnarok Online
-https://www.youtube.com/watch?v=Q1TnrjE909c:
-- 'Lunar: Dragon Song'
-https://www.youtube.com/watch?v=Q27un903ps0:
-- F-Zero GX
-https://www.youtube.com/watch?v=Q3Vci9ri4yM:
-- Cyborg 009
-https://www.youtube.com/watch?v=Q7a0piUG3jM:
-- Dragon Ball Z Butouden 2
-- Dragon Ball Z Butouden II
-https://www.youtube.com/watch?v=QD30b0MwpQw:
-- Shatter
-https://www.youtube.com/watch?v=QGgK5kQkLUE:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=QHStTXLP7II:
-- Breath of Fire IV
-- Breath of Fire 4
-https://www.youtube.com/watch?v=QLsVsiWgTMo:
-- 'Mario Kart: Double Dash!!'
-https://www.youtube.com/watch?v=QN1wbetaaTk:
-- Kirby & The Rainbow Curse
-- kirby and the rainbow curse
-https://www.youtube.com/watch?v=QNd4WYmj9WI:
-- 'World of Warcraft: Wrath of the Lich King'
-https://www.youtube.com/watch?v=QOKl7-it2HY:
-- Silent Hill
-https://www.youtube.com/watch?v=QR5xn8fA76Y:
-- Terranigma
-https://www.youtube.com/watch?v=QTwpZhWtQus:
-- 'The Elder Scrolls IV: Oblivion'
-- 'The Elder Scrolls 4: Oblivion'
-- Oblivion
-https://www.youtube.com/watch?v=QXd1P54rIzQ:
-- Secret of Evermore
-https://www.youtube.com/watch?v=QYnrEDKTB-k:
-- The Guardian Legend
-https://www.youtube.com/watch?v=QZiTBVot5xE:
-- Legaia 2
-- Legaia II
-https://www.youtube.com/watch?v=QaE0HHN4c30:
-- Halo
-https://www.youtube.com/watch?v=QdLD2Wop_3k:
-- Super Paper Mario
-https://www.youtube.com/watch?v=QiX-xWrkNZs:
-- Machinarium
-https://www.youtube.com/watch?v=QkgA1qgTsdQ:
-- Contact
-https://www.youtube.com/watch?v=Ql-Ud6w54wc:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=Qnz_S0QgaLA:
-- Deus Ex
-https://www.youtube.com/watch?v=QqN7bKgYWI0:
-- Suikoden
-https://www.youtube.com/watch?v=QtW1BBAufvM:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=QuSSx8dmAXQ:
-- Gran Turismo 4
-- Gran Turismo IV
-https://www.youtube.com/watch?v=Qv_8KiUsRTE:
-- Golden Sun
-https://www.youtube.com/watch?v=R1DRTdnR0qU:
-- Chrono Trigger
-https://www.youtube.com/watch?v=R2yEBE2ueuQ:
-- Breath of Fire
-https://www.youtube.com/watch?v=R3gmQcMK_zg:
-- Ragnarok Online
-https://www.youtube.com/watch?v=R5BZKMlqbPI:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=R6BoWeWh2Fg:
-- 'Cladun: This is an RPG'
-https://www.youtube.com/watch?v=R6tANRv2YxA:
-- FantaVision (North America)
-- FantaVision
-https://www.youtube.com/watch?v=R6us0FiZoTU:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=R9rnsbf914c:
-- Lethal League
-https://www.youtube.com/watch?v=RAevlv9Y1ao:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=RBKbYPqJNOw:
-- Wii Shop Channel
-https://www.youtube.com/watch?v=RBslMKpPu1M:
-- 'Donkey Kong Country: Tropical Freeze'
-https://www.youtube.com/watch?v=RBxWlVGd9zE:
-- Wild Arms 2
-- Wild Arms II
-https://www.youtube.com/watch?v=RHiQZ7tXSlw:
-- Radiant Silvergun
-https://www.youtube.com/watch?v=RKm11Z6Btbg:
-- Daytona USA
-https://www.youtube.com/watch?v=RNkUpb36KhQ:
-- Titan Souls
-https://www.youtube.com/watch?v=ROKcr2OTgws:
-- Chrono Cross
-https://www.youtube.com/watch?v=RO_FVqiEtDY:
-- Super Paper Mario
-https://www.youtube.com/watch?v=RP5DzEkA0l8:
-- Machinarium
-https://www.youtube.com/watch?v=RSlUnXWm9hM:
-- NeoTokyo
-https://www.youtube.com/watch?v=RSm22cu707w:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=RVBoUZgRG68:
-- Super Paper Mario
-https://www.youtube.com/watch?v=RXZ2gTXDwEc:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=Rj9bp-bp-TA:
-- Grow Home
-https://www.youtube.com/watch?v=RkDusZ10M4c:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=Roj5F9QZEpU:
-- 'Momodora: Reverie Under the Moonlight'
-https://www.youtube.com/watch?v=RpQlfTGfEsw:
-- Sonic CD
-- Sonic 400
-https://www.youtube.com/watch?v=RqqbUR7YxUw:
-- Pushmo
-https://www.youtube.com/watch?v=Rs2y4Nqku2o:
-- Chrono Cross
-https://www.youtube.com/watch?v=Ru7_ew8X6i4:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=Rv7-G28CPFI:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=RxcQY1OUzzY:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=RyQAZcBim88:
-- Ape Escape 3
-- Ape Escape III
-https://www.youtube.com/watch?v=RypdLW4G1Ng:
-- Hot Rod
-https://www.youtube.com/watch?v=S-vNB8mR1B4:
-- Sword of Mana
-https://www.youtube.com/watch?v=S0TmwLeUuBw:
-- God Hand
-https://www.youtube.com/watch?v=S3k1zdbBhRQ:
-- Donkey Kong Land
-https://www.youtube.com/watch?v=S87W-Rnag1E:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=SA7NfjCWbZU:
-- Treasure Hunter G
-https://www.youtube.com/watch?v=SAWxsyvWcqs:
-- Super Mario Galaxy 2
-- Super Mario Galaxy II
-https://www.youtube.com/watch?v=SCdUSkq_imI:
-- Super Mario 64
-https://www.youtube.com/watch?v=SDUUpUB1eu8:
-- Super Princess Peach
-https://www.youtube.com/watch?v=SE4FuK4MHJs:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=SFCn8IpgiLY:
-- Solstice
-https://www.youtube.com/watch?v=SKtO8AZLp2I:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=SNYFdankntY:
-- Mario Kart 64
-https://www.youtube.com/watch?v=SOAsm2UqIIM:
-- Cuphead
-https://www.youtube.com/watch?v=SPBIT_SSzmI:
-- Mario Party
-https://www.youtube.com/watch?v=SXQsmY_Px8Q:
-- Guardian of Paradise
-https://www.youtube.com/watch?v=SYp2ic7v4FU:
-- Rise of the Triad (2013)
-- Rise of the Triad
-https://www.youtube.com/watch?v=SawlCRnYYC8:
-- Eek! The Cat
-https://www.youtube.com/watch?v=Se-9zpPonwM:
-- Shatter
-https://www.youtube.com/watch?v=SeYZ8Bjo7tw:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=Sht8cKbdf_g:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=Sime7JZrTl0:
-- Castlevania
-https://www.youtube.com/watch?v=SjEwSzmSNVo:
-- Shenmue II
-- Shenmue 2
-https://www.youtube.com/watch?v=Sp7xqhunH88:
-- Waterworld
-https://www.youtube.com/watch?v=SqWu2wRA-Rk:
-- Battle Squadron
-https://www.youtube.com/watch?v=SrINCHeDeGI:
-- Luigi's Mansion
-https://www.youtube.com/watch?v=SsFYXts6EeE:
-- Ar Tonelico
-https://www.youtube.com/watch?v=Su5Z-NHGXLc:
-- 'Lunar: Eternal Blue'
-https://www.youtube.com/watch?v=SuI_RSHfLIk:
-- Guardian's Crusade
-https://www.youtube.com/watch?v=SvCIrLZ8hkI:
-- The Walking Dead
-https://www.youtube.com/watch?v=Sw9BfnRv8Ik:
-- 'Dreamfall: The Longest Journey'
-https://www.youtube.com/watch?v=SwVfsXvFbno:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=SzksdwLmxmY:
-- Bomberman Quest
-https://www.youtube.com/watch?v=T18nAaO_rGs:
-- Dragon Quest Monsters
-https://www.youtube.com/watch?v=T1edn6OPNRo:
-- 'Ys: The Oath in Felghana'
-https://www.youtube.com/watch?v=T24J3gTL4vY:
-- Polymer
-https://www.youtube.com/watch?v=T586T6QFjqE:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=T9kK9McaCoE:
-- Mushihimesama Futari
-https://www.youtube.com/watch?v=TBx-8jqiGfA:
-- Super Mario Bros
-https://www.youtube.com/watch?v=TEPaoDnS6AM:
-- Street Fighter III 3rd Strike
-- Street Fighter 3 3rd Strike
-https://www.youtube.com/watch?v=TFxtovEXNmc:
-- Bahamut Lagoon
-https://www.youtube.com/watch?v=TIzYqi_QFY8:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=TJH9E2x87EY:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=TM3BIOvEJSw:
-- Eternal Sonata
-https://www.youtube.com/watch?v=TMhh7ApHESo:
-- Super Win the Game
-https://www.youtube.com/watch?v=TO1kcFmNtTc:
-- Lost Odyssey
-https://www.youtube.com/watch?v=TPW9GRiGTek:
-- Yoshi's Woolly World
-https://www.youtube.com/watch?v=TRdrbKasYz8:
-- Xenosaga
-https://www.youtube.com/watch?v=TS8q1pjWviA:
-- Star Fox
-https://www.youtube.com/watch?v=TSlDUPl7DoA:
-- 'Star Ocean 3: Till the End of Time'
-- 'Star Ocean III: Till the End of Time'
-https://www.youtube.com/watch?v=TTt_-gE9iPU:
-- Bravely Default
-https://www.youtube.com/watch?v=TUZU34Sss8o:
-- Pokemon
-https://www.youtube.com/watch?v=TVKAMsRwIUk:
-- Nintendo World Cup
-https://www.youtube.com/watch?v=TXEz-i-oORk:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=TXO9vzXnAeg:
-- Dragon Quest
-https://www.youtube.com/watch?v=TYjKjjgQPk8:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=T_HfcZMUR4k:
-- Doom
-https://www.youtube.com/watch?v=TaRAKfltBfo:
-- Etrian Odyssey IV
-- Etrian Odyssey 4
-https://www.youtube.com/watch?v=Tc6G2CdSVfs:
-- 'Hitman: Blood Money'
-https://www.youtube.com/watch?v=TcKSIuOSs4U:
-- The Legendary Starfy
-https://www.youtube.com/watch?v=TdiRoUoSM-E:
-- Soma Bringer
-https://www.youtube.com/watch?v=TdxJKAvFEIU:
-- Lost Odyssey
-https://www.youtube.com/watch?v=TidW2D0Mnpo:
-- Blast Corps
-https://www.youtube.com/watch?v=TioQJoZ8Cco:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=Tj04oRO-0Ws:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=TkEH0e07jg8:
-- Secret of Evermore
-https://www.youtube.com/watch?v=TlDaPnHXl_o:
-- 'The Seventh Seal: Dark Lord'
-https://www.youtube.com/watch?v=TlLIOD2rJMs:
-- Chrono Trigger
-https://www.youtube.com/watch?v=TmkijsJ8-Kg:
-- 'NieR: Automata'
-https://www.youtube.com/watch?v=Tms-MKKS714:
-- Dark Souls
-https://www.youtube.com/watch?v=Tq8TV1PqZvw:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=TrO0wRbqPUo:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=TssxHy4hbko:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=TtACPCoJ-4I:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=Tug0cYK0XW0:
-- Shenmue
-https://www.youtube.com/watch?v=U2MqAWgqYJY:
-- Mystical Ninja Starring Goemon
-https://www.youtube.com/watch?v=U2XioVnZUlo:
-- Nintendo Land
-https://www.youtube.com/watch?v=U3FkappfRsQ:
-- Katamari Damacy
-https://www.youtube.com/watch?v=U4aEm6UufgY:
-- 'NyxQuest: Kindred Spirits'
-https://www.youtube.com/watch?v=U9z3oWS0Qo0:
-- 'Castlevania: Bloodlines'
-https://www.youtube.com/watch?v=UBCtM24yyYY:
-- Little Inferno
-https://www.youtube.com/watch?v=UC6_FirddSI:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=UHAEjRndMwg:
-- Machinarium
-https://www.youtube.com/watch?v=UOOmKmahDX4:
-- Super Mario Kart
-https://www.youtube.com/watch?v=UOdV3Ci46jY:
-- Run Saber
-https://www.youtube.com/watch?v=UPdZlmyedcI:
-- Castlevania 64
-https://www.youtube.com/watch?v=UQFiG9We23I:
-- Streets of Rage 2
-- Streets of Rage II
-https://www.youtube.com/watch?v=UWOTB6x_WAs:
-- Magical Tetris Challenge
-https://www.youtube.com/watch?v=UZ9Z0YwFkyk:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=U_Ox-uIbalo:
-- Bionic Commando
-https://www.youtube.com/watch?v=U_l3eYfpUQ0:
-- 'Resident Evil: Revelations'
-https://www.youtube.com/watch?v=Ubu3U44i5Ic:
-- Super Mario 64
-https://www.youtube.com/watch?v=UdKzw6lwSuw:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=UmTX3cPnxXg:
-- Super Mario 3D World
-https://www.youtube.com/watch?v=UmgTFGAPkXc:
-- Secret of Mana
-https://www.youtube.com/watch?v=Un0n0m8b3uE:
-- 'Ys: The Oath in Felghana'
-https://www.youtube.com/watch?v=UnyOHbOV-h0:
-- Dragon Ball Z Butouden 2
-- Dragon Ball Z Butouden II
-https://www.youtube.com/watch?v=UoBLfXPlyPA:
-- Shatter
-https://www.youtube.com/watch?v=UoDDUr6poOs:
-- World of Warcraft
-https://www.youtube.com/watch?v=UoEyt7S10Mo:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=UqQQ8LlMd3s:
-- Final Fantasy
-https://www.youtube.com/watch?v=Urqrn3sZbHQ:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=Uu4KCLd5kdg:
-- 'Diablo III: Reaper of Souls'
-- 'Diablo 3: Reaper of Souls'
-https://www.youtube.com/watch?v=UxiG3triMd8:
-- Hearthstone
-https://www.youtube.com/watch?v=V07qVpXUhc0:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=V1YsfDO8lgY:
-- Pokemon
-https://www.youtube.com/watch?v=V2UKwNO9flk:
-- 'Fire Emblem: Radiant Dawn'
-https://www.youtube.com/watch?v=V2kV7vfl1SE:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=V39OyFbkevY:
-- Etrian Odyssey IV
-- Etrian Odyssey 4
-https://www.youtube.com/watch?v=V4JjpIUYPg4:
-- Street Fighter IV
-- Street Fighter 4
-https://www.youtube.com/watch?v=V4tmMcpWm_I:
-- Super Street Fighter IV
-- Super Street Fighter 4
-https://www.youtube.com/watch?v=VClUpC8BwJU:
-- 'Silent Hill: Downpour'
-https://www.youtube.com/watch?v=VHCxLYOFHqU:
-- Chrono Trigger
-https://www.youtube.com/watch?v=VMMxNt_-s8E:
-- River City Ransom
-https://www.youtube.com/watch?v=VMt6f3DvTaU:
-- Mighty Switch Force
-https://www.youtube.com/watch?v=VVc6pY7njCA:
-- 'Kid Icarus: Uprising'
-https://www.youtube.com/watch?v=VVlFM_PDBmY:
-- Metal Gear Solid
-https://www.youtube.com/watch?v=VZIA6ZoLBEA:
-- Donkey Kong Country Returns
-https://www.youtube.com/watch?v=VdYkebbduH8:
-- Mario Kart 64
-https://www.youtube.com/watch?v=VfvadCcVXCo:
-- Crystal Beans from Dungeon Explorer
-https://www.youtube.com/watch?v=VgMHWxN2U_w:
-- Pokemon Trading Card Game
-https://www.youtube.com/watch?v=Vgxs785sqjw:
-- Persona 3 FES
-- Persona III FES
-https://www.youtube.com/watch?v=Vin5IrgdWnM:
-- Donkey Kong 64
-https://www.youtube.com/watch?v=VixvyNbhZ6E:
-- 'Lufia: The Legend Returns'
-https://www.youtube.com/watch?v=Vjf--bJDDGQ:
-- Super Mario 3D World
-https://www.youtube.com/watch?v=VktyN1crFLQ:
-- Devilish
-https://www.youtube.com/watch?v=Vl9Nz-X4M68:
-- Double Dragon Neon
-https://www.youtube.com/watch?v=VmOy8IvUcAE:
-- F-Zero GX
-https://www.youtube.com/watch?v=VmemS-mqlOQ:
-- Nostalgia
-https://www.youtube.com/watch?v=VpOYrLJKFUk:
-- The Walking Dead
-https://www.youtube.com/watch?v=VpyUtWCMrb4:
-- Castlevania III
-- Castlevania 3
-https://www.youtube.com/watch?v=VsvQy72iZZ8:
-- 'Kid Icarus: Uprising'
-https://www.youtube.com/watch?v=Vt2-826EsT8:
-- Cosmic Star Heroine
-https://www.youtube.com/watch?v=VuT5ukjMVFw:
-- Grandia III
-- Grandia 3
-https://www.youtube.com/watch?v=VvMkmsgHWMo:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=VxJf8k4YzBY:
-- The Mummy Demastered
-https://www.youtube.com/watch?v=VxgLPrbSg-U:
-- Romancing Saga 3
-- Romancing Saga III
-https://www.youtube.com/watch?v=VzHPc-HJlfM:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=VzJ2MLvIGmM:
-- 'E.V.O.: Search for Eden'
-- 'E.5.O.: Search for Eden'
-https://www.youtube.com/watch?v=W0fvt7_n9CU:
-- 'Castlevania: Lords of Shadow'
-https://www.youtube.com/watch?v=W4259ddJDtw:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=W6GNcYfHe1E:
-- Illusion of Gaia
-https://www.youtube.com/watch?v=W6O1WLDxRrY:
-- Krater
-https://www.youtube.com/watch?v=W7RPY-oiDAQ:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=W8-GDfP2xNM:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=W8Y2EuSrz-k:
-- Sonic the Hedgehog 3
-- Sonic the Hedgehog III
-https://www.youtube.com/watch?v=WBawD9gcECk:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=WCGk_7V5IGk:
-- Super Street Fighter II
-- Super Street Fighter 2
-https://www.youtube.com/watch?v=WEoHCLNJPy0:
-- Radical Dreamers
-https://www.youtube.com/watch?v=WLorUNfzJy8:
-- Breath of Death VII
-- Breath of Death 7
-https://www.youtube.com/watch?v=WNORnKsigdQ:
-- Radiant Historia
-https://www.youtube.com/watch?v=WP9081WAmiY:
-- 'The Legend of Zelda: Wind Waker'
-- wind waker
-https://www.youtube.com/watch?v=WR_AncWskUk:
-- Metal Saga
-https://www.youtube.com/watch?v=WV56iJ9KFlw:
-- Mass Effect
-https://www.youtube.com/watch?v=WY2kHNPn-x8:
-- Tearaway
-https://www.youtube.com/watch?v=WYRFMUNIUVw:
-- Chrono Trigger
-https://www.youtube.com/watch?v=WZ1TQWlSOxo:
-- OutRun 2
-- OutRun II
-https://www.youtube.com/watch?v=W_t9udYAsBE:
-- Super Mario Bros 3
-- Super Mario Bros III
-https://www.youtube.com/watch?v=WaThErXvfD8:
-- Super Mario RPG
-https://www.youtube.com/watch?v=WcM38YKdk44:
-- Killer7
-https://www.youtube.com/watch?v=WdZPEL9zoMA:
-- Celeste
-https://www.youtube.com/watch?v=WeVAeMWeFNo:
-- 'Sakura Taisen: Atsuki Chishio Ni'
-https://www.youtube.com/watch?v=WgK4UTP0gfU:
-- Breath of Fire II
-- Breath of Fire 2
-https://www.youtube.com/watch?v=Wj17uoJLIV8:
-- Prince of Persia
-https://www.youtube.com/watch?v=Wqv5wxKDSIo:
-- Scott Pilgrim vs the World
-https://www.youtube.com/watch?v=WwXBfLnChSE:
-- Radiant Historia
-https://www.youtube.com/watch?v=WwuhhymZzgY:
-- The Last Story
-https://www.youtube.com/watch?v=X1-oxRS8-m4:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=X3rxfNjBGqQ:
-- Earthbound
-https://www.youtube.com/watch?v=X68AlSKY0d8:
-- Shatter
-https://www.youtube.com/watch?v=X80YQj6UHG8:
-- Xenogears
-https://www.youtube.com/watch?v=X8CGqt3N4GA:
-- 'The Legend of Zelda: Majora''s Mask'
-- 'majora''s mask'
-https://www.youtube.com/watch?v=XCfYHd-9Szw:
-- Mass Effect
-https://www.youtube.com/watch?v=XG7HmRvDb5Y:
-- Yoshi's Woolly World
-https://www.youtube.com/watch?v=XH1J5XxZklI:
-- Snowboard Kids
-https://www.youtube.com/watch?v=XIzflqDtA1M:
-- Lone Survivor
-https://www.youtube.com/watch?v=XJllrwZzWwc:
-- Namco x Capcom
-https://www.youtube.com/watch?v=XKI0-dPmwSo:
-- Shining Force II
-- Shining Force 2
-https://www.youtube.com/watch?v=XKeXXWBYTkE:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=XLJxqz83ujw:
-- Glover
-https://www.youtube.com/watch?v=XMc9xjrnySg:
-- Golden Sun
-https://www.youtube.com/watch?v=XSSNGYomwAU:
-- Suikoden
-https://www.youtube.com/watch?v=XSkuBJx8q-Q:
-- Doki Doki Literature Club!
-https://www.youtube.com/watch?v=XW3Buw2tUgI:
-- Extreme-G
-https://www.youtube.com/watch?v=XWd4539-gdk:
-- Tales of Phantasia
-https://www.youtube.com/watch?v=XZEuJnSFz9U:
-- Bubble Bobble
-https://www.youtube.com/watch?v=X_PszodM17s:
-- ICO
-https://www.youtube.com/watch?v=Xa7uyLoh8t4:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=Xb8k4cp_mvQ:
-- Sonic the Hedgehog 2
-- Sonic the Hedgehog II
-https://www.youtube.com/watch?v=XelC_ns-vro:
-- Breath of Fire II
-- Breath of Fire 2
-https://www.youtube.com/watch?v=XhlM0eFM8F4:
-- Banjo-Tooie
-https://www.youtube.com/watch?v=Xkr40w4TfZQ:
-- 'The Legend of Zelda: Skyward Sword'
-- 'skyward sword'
-https://www.youtube.com/watch?v=Xm7lW0uvFpc:
-- DuckTales
-https://www.youtube.com/watch?v=XmAMeRNX_D4:
-- Ragnarok Online
-https://www.youtube.com/watch?v=XmmV5c2fS30:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=XnHysmcf31o:
-- Mother
-https://www.youtube.com/watch?v=Xnmuncx1F0Q:
-- Demon's Crest
-https://www.youtube.com/watch?v=Xo1gsf_pmzM:
-- Super Mario 3D World
-https://www.youtube.com/watch?v=Xpwy4RtRA1M:
-- The Witcher
-https://www.youtube.com/watch?v=XqPsT01sZVU:
-- Kingdom of Paradise
-https://www.youtube.com/watch?v=Xv_VYdKzO3A:
-- 'Tintin: Prisoners of the Sun'
-https://www.youtube.com/watch?v=Xw58jPitU-Q:
-- Ys Origin
-https://www.youtube.com/watch?v=XxMf4BdVq_g:
-- Deus Ex
-https://www.youtube.com/watch?v=Xy9eA5PJ9cU:
-- Pokemon
-https://www.youtube.com/watch?v=XztQyuJ4HoQ:
-- Legend of Legaia
-https://www.youtube.com/watch?v=Y0oO0bOyIAU:
-- Hotline Miami
-https://www.youtube.com/watch?v=Y1i3z56CiU4:
-- Pokemon X / Y
-- pokemon x
-- pokemon y
-https://www.youtube.com/watch?v=Y5HHYuQi7cQ:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=Y5cXKVt3wOE:
-- Souten no Celenaria
-https://www.youtube.com/watch?v=Y7McPnKoP8g:
-- Illusion of Gaia
-https://www.youtube.com/watch?v=Y8Z8C0kziMw:
-- Sonic the Hedgehog
-https://www.youtube.com/watch?v=Y9a5VahqzOE:
-- Kirby's Dream Land
-https://www.youtube.com/watch?v=YA3VczBNCh8:
-- Lost Odyssey
-https://www.youtube.com/watch?v=YADDsshr-NM:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=YCwOCGt97Y0:
-- Kaiser Knuckle
-https://www.youtube.com/watch?v=YD19UMTxu4I:
-- Time Trax
-https://www.youtube.com/watch?v=YEoAPCEZyA0:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=YFDcu-hy4ak:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=YFz1vqikCaE:
-- 'TMNT IV: Turtles in Time'
-- 'TMNT 4: Turtles in Time'
-https://www.youtube.com/watch?v=YJcuMHvodN4:
-- Super Bonk
-https://www.youtube.com/watch?v=YKe8k8P2FNw:
-- Baten Kaitos
-https://www.youtube.com/watch?v=YL5Q4GybKWc:
-- Balloon Fight
-https://www.youtube.com/watch?v=YQasQAYgbb4:
-- Terranigma
-https://www.youtube.com/watch?v=YYBmrB3bYo4:
-- Christmas NiGHTS
-https://www.youtube.com/watch?v=YYGKW8vyYXU:
-- Shatterhand
-https://www.youtube.com/watch?v=YYxvaixwybA:
-- Shatter
-https://www.youtube.com/watch?v=YZGrI4NI9Nw:
-- Guacamelee!
-https://www.youtube.com/watch?v=Y_GJywu5Wr0:
-- Final Fantasy Tactics A2
-https://www.youtube.com/watch?v=Y_RoEPwYLug:
-- Mega Man ZX
-https://www.youtube.com/watch?v=YdcgKnwaE-A:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=YfFxcLGBCdI:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=Yh0LHDiWJNk:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=Yh4e_rdWD-k:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=YhOUDccL1i8:
-- Rudra No Hihou
-https://www.youtube.com/watch?v=YlLX3U6QfyQ:
-- 'Albert Odyssey: Legend of Eldean'
-https://www.youtube.com/watch?v=YmF88zf5qhM:
-- Halo 4
-- Halo IV
-https://www.youtube.com/watch?v=YmaHBaNxWt0:
-- Tekken 7
-- Tekken VII
-https://www.youtube.com/watch?v=Yn9EmSHIaLw:
-- Stardew Valley
-https://www.youtube.com/watch?v=YnQ9nrcp_CE:
-- Skyblazer
-https://www.youtube.com/watch?v=YqPjWx9XiWk:
-- Captain America and the Avengers
-https://www.youtube.com/watch?v=Ys_xfruRWSc:
-- Pokemon Snap
-https://www.youtube.com/watch?v=Yx-m8z-cbzo:
-- Cave Story
-https://www.youtube.com/watch?v=YzELBO_3HzE:
-- Plok
-https://www.youtube.com/watch?v=Z-LAcjwV74M:
-- Soul Calibur II
-- Soul Calibur 2
-https://www.youtube.com/watch?v=Z167OL2CQJw:
-- Lost Eden
-https://www.youtube.com/watch?v=Z41vcQERnQQ:
-- Dragon Quest III
-- Dragon Quest 3
-https://www.youtube.com/watch?v=Z49Lxg65UOM:
-- Tsugunai
-https://www.youtube.com/watch?v=Z4QunenBEXI:
-- 'The Legend of Zelda: Link''s Awakening'
-- 'link''s awakening'
-https://www.youtube.com/watch?v=Z74e6bFr5EY:
-- Chrono Trigger
-https://www.youtube.com/watch?v=Z8Jf5aFCbEE:
-- Secret of Evermore
-https://www.youtube.com/watch?v=Z9UnlYHogTE:
-- The Violinist of Hameln
-https://www.youtube.com/watch?v=ZAyRic3ZW0Y:
-- Comix Zone
-https://www.youtube.com/watch?v=ZCd2Y1HlAnA:
-- 'Atelier Iris: Eternal Mana'
-https://www.youtube.com/watch?v=ZEUEQ4wlvi4:
-- Dragon Quest III
-- Dragon Quest 3
-https://www.youtube.com/watch?v=ZJGF0_ycDpU:
-- Pokemon GO
-https://www.youtube.com/watch?v=ZJjaiYyES4w:
-- 'Tales of Symphonia: Dawn of the New World'
-https://www.youtube.com/watch?v=ZQGc9rG5qKo:
-- Metroid Prime
-https://www.youtube.com/watch?v=ZW-eiSBpG8E:
-- Legend of Mana
-https://www.youtube.com/watch?v=ZabqQ7MSsIg:
-- Wrecking Crew
-https://www.youtube.com/watch?v=ZbIfD6r518s:
-- Secret of Mana
-https://www.youtube.com/watch?v=ZbPfNA8vxQY:
-- Dustforce
-https://www.youtube.com/watch?v=ZbpEhw42bvQ:
-- Mega Man 6
-- Mega Man VI
-https://www.youtube.com/watch?v=Zee9VKBU_Vk:
-- Fallout 3
-- Fallout III
-https://www.youtube.com/watch?v=ZfZQWz0VVxI:
-- Platoon
-https://www.youtube.com/watch?v=ZgvsIvHJTds:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=Zj3P44pqM_Q:
-- Final Fantasy XI
-- Final Fantasy 11
-https://www.youtube.com/watch?v=Zn8GP0TifCc:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=ZrDAjeoPR7A:
-- Child of Eden
-https://www.youtube.com/watch?v=ZriKAVSIQa0:
-- 'The Legend of Zelda: A Link Between Worlds'
-- a link between worlds
-https://www.youtube.com/watch?v=ZuM618JZgww:
-- Metroid Prime Hunters
-https://www.youtube.com/watch?v=ZulAUy2_mZ4:
-- Gears of War 4
-- Gears of War IV
-https://www.youtube.com/watch?v=ZyAIAKItmoM:
-- Hotline Miami 2
-- Hotline Miami II
-https://www.youtube.com/watch?v=Zys-MeBfBto:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=_1CWWL9UBUk:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=_1rwSdxY7_g:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=_24ZkPUOIeo:
-- Pilotwings 64
-https://www.youtube.com/watch?v=_2FYWCCZrNs:
-- Chrono Cross
-https://www.youtube.com/watch?v=_3Am7OPTsSk:
-- Earthbound
-https://www.youtube.com/watch?v=_9LUtb1MOSU:
-- Secret of Mana
-https://www.youtube.com/watch?v=_BdvaCCUsYo:
-- Tales of Destiny
-https://www.youtube.com/watch?v=_CB18Elh4Rc:
-- Chrono Cross
-https://www.youtube.com/watch?v=_C_fXeDZHKw:
-- Secret of Evermore
-https://www.youtube.com/watch?v=_CeQp-NVkSw:
-- Grounseed
-https://www.youtube.com/watch?v=_EYg1z-ZmUs:
-- Breath of Death VII
-- Breath of Death 7
-https://www.youtube.com/watch?v=_Gnu2AttTPI:
-- Pokemon Black / White
-- pokemon black
-- pokemon white
-https://www.youtube.com/watch?v=_H42_mzLMz0:
-- Dragon Quest IV
-- Dragon Quest 4
-https://www.youtube.com/watch?v=_Ju6JostT7c:
-- Castlevania
-https://www.youtube.com/watch?v=_L6scVxzIiI:
-- 'The Legend of Zelda: Link''s Awakening'
-- 'link''s awakening'
-https://www.youtube.com/watch?v=_Ms2ME7ufis:
-- 'Superbrothers: Sword & Sworcery EP'
-- 'superbrothers: sword and sworcery ep'
-https://www.youtube.com/watch?v=_OM5A6JwHig:
-- Machinarium
-https://www.youtube.com/watch?v=_OguBY5x-Qo:
-- Shenmue
-https://www.youtube.com/watch?v=_RHmWJyCsAM:
-- Dragon Quest II
-- Dragon Quest 2
-https://www.youtube.com/watch?v=_U3JUtO8a9U:
-- Mario + Rabbids Kingdom Battle
-https://www.youtube.com/watch?v=_Wcte_8oFyM:
-- Plants vs Zombies
-https://www.youtube.com/watch?v=_WjOqJ4LbkQ:
-- Mega Man 10
-https://www.youtube.com/watch?v=_XJw072Co_A:
-- Diddy Kong Racing
-https://www.youtube.com/watch?v=_YxsxsaP2T4:
-- 'The Elder Scrolls V: Skyrim'
-- 'The Elder Scrolls 5: Skyrim'
-- Skyrim
-https://www.youtube.com/watch?v=_bOxB__fyJI:
-- World Reborn
-https://www.youtube.com/watch?v=_blDkW4rCwc:
-- Hyrule Warriors
-https://www.youtube.com/watch?v=_cglnkygG_0:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=_dXaKTGvaEk:
-- 'Fatal Frame II: Crimson Butterfly'
-- 'Fatal Frame 2: Crimson Butterfly'
-https://www.youtube.com/watch?v=_dsKphN-mEI:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=_eDz4_fCerk:
-- Jurassic Park
-https://www.youtube.com/watch?v=_gmeGnmyn34:
-- 3D Dot Game Heroes
-https://www.youtube.com/watch?v=_hRi2AwnEyw:
-- Dragon Quest V
-- Dragon Quest 5
-https://www.youtube.com/watch?v=_i9LIgKpgkc:
-- Persona 3
-- Persona III
-https://www.youtube.com/watch?v=_j8AXugAZCQ:
-- Earthbound
-https://www.youtube.com/watch?v=_jWbBWpfBWw:
-- Advance Wars
-https://www.youtube.com/watch?v=_joPG7N0lRk:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=_qbSmANSx6s:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=_thDGKkVgIE:
-- 'Spyro: A Hero''s Tail'
-https://www.youtube.com/watch?v=_ttw1JCEiZE:
-- NieR
-https://www.youtube.com/watch?v=_wHwJoxw4i4:
-- Metroid
-https://www.youtube.com/watch?v=_wbGNLXgYgE:
-- Grand Theft Auto V
-- Grand Theft Auto 5
-https://www.youtube.com/watch?v=a0oq7Yw8tkc:
-- 'The Binding of Isaac: Rebirth'
-https://www.youtube.com/watch?v=a14tqUAswZU:
-- Daytona USA
-https://www.youtube.com/watch?v=a43NXcUkHkI:
-- Final Fantasy
-https://www.youtube.com/watch?v=a4t1ty8U9qw:
-- Earthbound
-https://www.youtube.com/watch?v=a5JdLRzK_uQ:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=a5WtWa8lL7Y:
-- Tetris
-https://www.youtube.com/watch?v=a8hAxP__AKw:
-- Lethal Weapon
-https://www.youtube.com/watch?v=a9MLBjUvgFE:
-- Minecraft (Update Aquatic)
-- Minecraft
-https://www.youtube.com/watch?v=aBmqRgtqOgw:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=aDJ3bdD4TPM:
-- Terranigma
-https://www.youtube.com/watch?v=aDbohXp2oEs:
-- Baten Kaitos Origins
-https://www.youtube.com/watch?v=aKgSFxA0ZhY:
-- Touch My Katamari
-https://www.youtube.com/watch?v=aKqYLGaG_E4:
-- Earthbound
-https://www.youtube.com/watch?v=aObuQqkoa-g:
-- Dragon Quest VI
-- Dragon Quest 6
-https://www.youtube.com/watch?v=aOjeeAVojAE:
-- Metroid AM2R
-https://www.youtube.com/watch?v=aOxqL6hSt8c:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=aPrcJy-5hoA:
-- 'Westerado: Double Barreled'
-https://www.youtube.com/watch?v=aRloSB3iXG0:
-- Metal Warriors
-https://www.youtube.com/watch?v=aTofARLXiBk:
-- Jazz Jackrabbit 3
-- Jazz Jackrabbit III
-https://www.youtube.com/watch?v=aU0WdpQRzd4:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=aWh7crjCWlM:
-- Conker's Bad Fur Day
-https://www.youtube.com/watch?v=aXJ0om-_1Ew:
-- Crystal Beans from Dungeon Explorer
-https://www.youtube.com/watch?v=aYUMd2GvwsU:
-- A Bug's Life
-https://www.youtube.com/watch?v=aZ37adgwDIw:
-- Shenmue
-https://www.youtube.com/watch?v=a_WurTZJrpE:
-- Earthbound
-https://www.youtube.com/watch?v=a_qDMzn6BOA:
-- Shin Megami Tensei IV
-- Shin Megami Tensei 4
-https://www.youtube.com/watch?v=aatRnG3Tkmg:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=abv-zluKyQQ:
-- Final Fantasy Tactics Advance
-https://www.youtube.com/watch?v=acAAz1MR_ZA:
-- 'Disgaea: Hour of Darkness'
-https://www.youtube.com/watch?v=acLncvJ9wHI:
-- Trauma Team
-https://www.youtube.com/watch?v=acVjEoRvpv8:
-- Dark Cloud
-https://www.youtube.com/watch?v=aci_luVBju4:
-- 'The Legend of Zelda: Skyward Sword'
-- skyward sword
-https://www.youtube.com/watch?v=ae_lrtPgor0:
-- Super Mario World
-https://www.youtube.com/watch?v=afsUV7q6Hqc:
-- Mega Man ZX
-https://www.youtube.com/watch?v=ag5q7vmDOls:
-- Lagoon
-https://www.youtube.com/watch?v=aj9mW0Hvp0g:
-- 'Ufouria: The Saga'
-https://www.youtube.com/watch?v=am5TVpGwHdE:
-- Digital Devil Saga
-https://www.youtube.com/watch?v=ammnaFhcafI:
-- Mario Party 4
-- Mario Party IV
-https://www.youtube.com/watch?v=an3P8otlD2A:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=aqLjvjhHgDI:
-- Minecraft
-https://www.youtube.com/watch?v=aqWw9gLgFRA:
-- Portal
-https://www.youtube.com/watch?v=aumWblPK58M:
-- SaGa Frontier
-https://www.youtube.com/watch?v=avyGawaBrtQ:
-- 'Dragon Ball Z: Budokai'
-https://www.youtube.com/watch?v=b-oxtWJ00WA:
-- Pikmin 3
-- Pikmin III
-https://www.youtube.com/watch?v=b-rgxR_zIC4:
-- Mega Man 4
-- Mega Man IV
-https://www.youtube.com/watch?v=b0kqwEbkSag:
-- Deathsmiles IIX
-https://www.youtube.com/watch?v=b1YKRCKnge8:
-- Chrono Trigger
-https://www.youtube.com/watch?v=b3Ayzzo8eZo:
-- 'Lunar: Dragon Song'
-https://www.youtube.com/watch?v=b3l5v-QQF40:
-- 'TMNT IV: Turtles in Time'
-- 'TMNT 4: Turtles in Time'
-https://www.youtube.com/watch?v=b6QzJaltmUM:
-- What Remains of Edith Finch
-https://www.youtube.com/watch?v=b9OZwTLtrl4:
-- Legend of Mana
-https://www.youtube.com/watch?v=bA4PAkrAVpQ:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=bAkK3HqzoY0:
-- 'Fire Emblem: Radiant Dawn'
-https://www.youtube.com/watch?v=bCNdNTdJYvE:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=bDH8AIok0IM:
-- TimeSplitters 2
-- TimeSplitters II
-https://www.youtube.com/watch?v=bFk3mS6VVsE:
-- Threads of Fate
-https://www.youtube.com/watch?v=bItjdi5wxFQ:
-- Watch Dogs
-https://www.youtube.com/watch?v=bKj3JXmYDfY:
-- The Swapper
-https://www.youtube.com/watch?v=bNzYIEY-CcM:
-- Chrono Trigger
-https://www.youtube.com/watch?v=bO2wTaoCguc:
-- Super Dodge Ball
-https://www.youtube.com/watch?v=bOg8XuvcyTY:
-- Final Fantasy Legend II
-- Final Fantasy Legend 2
-https://www.youtube.com/watch?v=bQ1D8oR128E:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=bR4AB3xNT0c:
-- Donkey Kong Country Returns
-https://www.youtube.com/watch?v=bRAT5LgAl5E:
-- The Dark Spire
-https://www.youtube.com/watch?v=bW3KNnZ2ZiA:
-- Chrono Trigger
-https://www.youtube.com/watch?v=bWp4F1p2I64:
-- 'Deus Ex: Human Revolution'
-https://www.youtube.com/watch?v=bXfaBUCDX1I:
-- 'Mario & Luigi: Dream Team'
-- 'mario and luigi: dream team'
-https://www.youtube.com/watch?v=bZBoTinEpao:
-- Jade Cocoon
-https://www.youtube.com/watch?v=bcHL3tGy7ws:
-- World of Warcraft
-https://www.youtube.com/watch?v=bckgyhCo7Lw:
-- Tales of Legendia
-https://www.youtube.com/watch?v=bdNrjSswl78:
-- Kingdom Hearts II
-- Kingdom Hearts 2
-https://www.youtube.com/watch?v=berZX7mPxbE:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=bffwco66Vnc:
-- 'Little Nemo: The Dream Master'
-https://www.youtube.com/watch?v=bhW8jNscYqA:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=bmsw4ND8HNA:
-- Pokemon Diamond / Pearl / Platinum
-- pokemon diamond
-- pokemon pearl
-- pokemon platinum
-https://www.youtube.com/watch?v=bp4-fXuTwb8:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=brYzVFvM98I:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=bss8vzkIB74:
-- 'Vampire The Masquerade: Bloodlines'
-https://www.youtube.com/watch?v=bu-kSDUXUts:
-- Silent Hill 2
-- Silent Hill II
-https://www.youtube.com/watch?v=bvbOS8Mp8aQ:
-- Street Fighter V
-- Street Fighter 5
-https://www.youtube.com/watch?v=bviyWo7xpu0:
-- Wild Arms 5
-- Wild Arms V
-https://www.youtube.com/watch?v=c2Y1ANec-5M:
-- Ys Chronicles
-https://www.youtube.com/watch?v=c47-Y-y_dqI:
-- Blue Dragon
-https://www.youtube.com/watch?v=c62hLhyF2D4:
-- Jelly Defense
-https://www.youtube.com/watch?v=c7mYaBoSIQU:
-- Contact
-https://www.youtube.com/watch?v=c8sDG4L-qrY:
-- Skullgirls
-https://www.youtube.com/watch?v=cETUoqcjICE:
-- Vay
-https://www.youtube.com/watch?v=cHfgcOHSTs0:
-- Ogre Battle 64
-https://www.youtube.com/watch?v=cKBgNT-8rrM:
-- Grounseed
-https://www.youtube.com/watch?v=cKQZVFIuyko:
-- Streets of Rage 2
-- Streets of Rage II
-https://www.youtube.com/watch?v=cMxOAeESteU:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=cO1UTkT6lf8:
-- Baten Kaitos Origins
-https://www.youtube.com/watch?v=cQhqxEIAZbE:
-- Resident Evil Outbreak
-https://www.youtube.com/watch?v=cRyIPt01AVM:
-- Banjo-Kazooie
-https://www.youtube.com/watch?v=cU1Z5UwBlQo:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=cWTZEXmWcOs:
-- Night in the Woods
-https://www.youtube.com/watch?v=cWt6j5ZJCHU:
-- R-Type Delta
-https://www.youtube.com/watch?v=cYV7Ph-qvvI:
-- 'Romancing Saga: Minstrel Song'
-https://www.youtube.com/watch?v=cYlKsL8r074:
-- NieR
-https://www.youtube.com/watch?v=cZVRDjJUPIQ:
-- Kirby & The Rainbow Curse
-- kirby and the rainbow curse
-https://www.youtube.com/watch?v=c_ex2h9t2yk:
-- Klonoa
-https://www.youtube.com/watch?v=calW24ddgOM:
-- 'Castlevania: Order of Ecclesia'
-https://www.youtube.com/watch?v=cbiEH5DMx78:
-- Wild Arms
-https://www.youtube.com/watch?v=ccHauz5l5Kc:
-- Torchlight
-https://www.youtube.com/watch?v=ccMkXEV0YmY:
-- Tekken 2
-- Tekken II
-https://www.youtube.com/watch?v=ciM3PBf1DRs:
-- Sonic the Hedgehog
-https://www.youtube.com/watch?v=cjrh4YcvptY:
-- Jurassic Park 2
-- Jurassic Park II
-https://www.youtube.com/watch?v=ckVmgiTobAw:
-- Okami
-https://www.youtube.com/watch?v=cl6iryREksM:
-- 'The Legend of Zelda: Skyward Sword'
-- skyward sword
-https://www.youtube.com/watch?v=clyy2eKqdC0:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=cmyK3FdTu_Q:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=cnjADMWesKk:
-- Silent Hill 2
-- Silent Hill II
-https://www.youtube.com/watch?v=coyl_h4_tjc:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=cpcx0UQt4Y8:
-- Shadow of the Beast
-https://www.youtube.com/watch?v=cqSEDRNwkt8:
-- 'SMT: Digital Devil Saga 2'
-- 'SMT: Digital Devil Saga II'
-https://www.youtube.com/watch?v=cqkYQt8dnxU:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=cs3hwrowdaQ:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=cvae_OsnWZ0:
-- Super Mario RPG
-https://www.youtube.com/watch?v=cvpGCTUGi8o:
-- Pokemon Diamond / Pearl / Platinum
-- pokemon diamond
-- pokemon pearl
-- pokemon platinum
-https://www.youtube.com/watch?v=cwmHupo9oSQ:
-- Street Fighter 2010
-- Street Fighter MMX
-https://www.youtube.com/watch?v=cxAE48Dul7Y:
-- Top Gear 3000
-- Top Gear MMM
-https://www.youtube.com/watch?v=cxAbbHCpucs:
-- Unreal Tournament
-https://www.youtube.com/watch?v=cyShVri-4kQ:
-- NieR
-https://www.youtube.com/watch?v=d0akzKhBl2k:
-- Pop'n Music 7
-- Pop'n Music VII
-https://www.youtube.com/watch?v=d12Pt-zjLsI:
-- Fire Emblem Fates
-https://www.youtube.com/watch?v=d1UyVXN13SI:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=d2dB0PuWotU:
-- Sonic Adventure 2
-- Sonic Adventure II
-https://www.youtube.com/watch?v=d3mJsXFGhDg:
-- Altered Beast
-https://www.youtube.com/watch?v=d5OK1GkI_CU:
-- Chrono Cross
-https://www.youtube.com/watch?v=d8xtkry1wK8:
-- Lost Odyssey
-https://www.youtube.com/watch?v=dBsdllfE4Ek:
-- Undertale
-https://www.youtube.com/watch?v=dEVI5_OxUyY:
-- Goldeneye
-https://www.youtube.com/watch?v=dG4ZCzodq4g:
-- Tekken 6
-- Tekken VI
-https://www.youtube.com/watch?v=dGF7xsF0DmQ:
-- Shatterhand (JP)
-- shatterhand
-https://www.youtube.com/watch?v=dGzGSapPGL8:
-- Jets 'N' Guns
-https://www.youtube.com/watch?v=dJzTqmQ_erE:
-- Chrono Trigger
-https://www.youtube.com/watch?v=dMSjvBILQRU:
-- Fable
-https://www.youtube.com/watch?v=dMYW4wBDQLU:
-- 'Ys VI: The Ark of Napishtim'
-- 'Ys 6: The Ark of Napishtim'
-https://www.youtube.com/watch?v=dO4awKzd8rc:
-- One Step Beyond
-https://www.youtube.com/watch?v=dOHur-Yc3nE:
-- Shatter
-https://www.youtube.com/watch?v=dQRiJz_nEP8:
-- Castlevania II
-- Castlevania 2
-https://www.youtube.com/watch?v=dRHpQFbEthY:
-- Shovel Knight
-https://www.youtube.com/watch?v=dSwUFI18s7s:
-- Valkyria Chronicles 3
-- Valkyria Chronicles III
-https://www.youtube.com/watch?v=dTjNEOT-e-M:
-https://www.youtube.com/watch?v=dUcTukA0q4Y:
-- Super Mario World
-- 'FTL: Faster Than Light'
-https://www.youtube.com/watch?v=dWiHtzP-bc4:
-- 'Kirby 64: The Crystal Shards'
-https://www.youtube.com/watch?v=dWrm-lwiKj0:
-- Nora to Toki no Koubou
-https://www.youtube.com/watch?v=dZAOgvdXhuk:
-- 'Star Wars: Shadows of the Empire'
-https://www.youtube.com/watch?v=dcEXzNbn20k:
-- Dead Space
-https://www.youtube.com/watch?v=dd2dbckq54Q:
-- Black/Matrix
-https://www.youtube.com/watch?v=deKo_UHZa14:
-- Return All Robots!
-https://www.youtube.com/watch?v=dfykPUgPns8:
-- Parasite Eve
-https://www.youtube.com/watch?v=dgD5lgqNzP8:
-- Dark Souls
-https://www.youtube.com/watch?v=dhGMZwQr0Iw:
-- Mario Kart 8
-- Mario Kart VIII
-https://www.youtube.com/watch?v=dhzrumwtwFY:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=dim1KXcN34U:
-- ActRaiser
-https://www.youtube.com/watch?v=dj0Ib2lJ7JA:
-- Final Fantasy XII
-- Final Fantasy 12
-https://www.youtube.com/watch?v=dj8Qe3GUrdc:
-- 'Divinity II: Ego Draconis'
-- 'Divinity 2: Ego Draconis'
-https://www.youtube.com/watch?v=dlZyjOv5G80:
-- Shenmue
-https://www.youtube.com/watch?v=dobKarKesA0:
-- Elemental Master
-https://www.youtube.com/watch?v=dqww-xq7b9k:
-- SaGa Frontier II
-- SaGa Frontier 2
-https://www.youtube.com/watch?v=drFZ1-6r7W8:
-- Shenmue II
-- Shenmue 2
-https://www.youtube.com/watch?v=dszJhqoPRf8:
-- Super Mario Kart
-https://www.youtube.com/watch?v=dtITnB_uRzc:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=dyFj_MfRg3I:
-- Dragon Quest
-https://www.youtube.com/watch?v=dylldXUC20U:
-- 'The Legend of Zelda: Wind Waker'
-- wind waker
-https://www.youtube.com/watch?v=e-r3yVxzwe0:
-- Chrono Cross
-https://www.youtube.com/watch?v=e1HWSPwGlpA:
-- Doom 3
-- Doom III
-https://www.youtube.com/watch?v=e6cvikWAAEo:
-- Super Smash Bros. Brawl
-https://www.youtube.com/watch?v=e7YW5tmlsLo:
-- Cannon Fodder
-https://www.youtube.com/watch?v=e9uvCvvlMn4:
-- Wave Race 64
-https://www.youtube.com/watch?v=e9xHOWHjYKc:
-- Beyond Good & Evil
-- beyond good and evil
-https://www.youtube.com/watch?v=eCS1Tzbcbro:
-- Demon's Crest
-https://www.youtube.com/watch?v=eDOCPzvn87s:
-- Super Mario World
-https://www.youtube.com/watch?v=eDjJq3DsNTc:
-- Ar nosurge
-https://www.youtube.com/watch?v=eEZLBWjQsGk:
-- Parasite Eve
-https://www.youtube.com/watch?v=eF03eqpRxHE:
-- Soul Edge
-https://www.youtube.com/watch?v=eFN9fNhjRPg:
-- 'NieR: Automata'
-https://www.youtube.com/watch?v=eFR7iBDJYpI:
-- Ratchet & Clank
-- ratchet and clank
-https://www.youtube.com/watch?v=eKiz8PrTvSs:
-- Metroid
-https://www.youtube.com/watch?v=eLLdU3Td1w0:
-- Star Fox 64
-https://www.youtube.com/watch?v=eNXj--eakKg:
-- Chrono Trigger
-https://www.youtube.com/watch?v=eNXv3L_ebrk:
-- 'Moon: Remix RPG Adventure'
-https://www.youtube.com/watch?v=eOx1HJJ-Y8M:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=eRuhYeSR19Y:
-- Uncharted Waters
-https://www.youtube.com/watch?v=eRzo1UGPn9s:
-- 'TMNT IV: Turtles in Time'
-- 'TMNT 4: Turtles in Time'
-https://www.youtube.com/watch?v=eWsYdciDkqY:
-- Jade Cocoon
-https://www.youtube.com/watch?v=ehNS3sKQseY:
-- Wipeout Pulse
-https://www.youtube.com/watch?v=ehxzly2ogW4:
-- Xenoblade Chronicles X
-- Xenoblade Chronicles 10
-https://www.youtube.com/watch?v=ej4PiY8AESE:
-- 'Lunar: Eternal Blue'
-https://www.youtube.com/watch?v=eje3VwPYdBM:
-- Pop'n Music 7
-- Pop'n Music VII
-https://www.youtube.com/watch?v=elvSWFGFOQs:
-- Ridge Racer Type 4
-- Ridge Racer Type IV
-https://www.youtube.com/watch?v=emGEYMPc9sY:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=eoPtQd6adrA:
-- Talesweaver
-https://www.youtube.com/watch?v=euk6wHmRBNY:
-- Infinite Undiscovery
-https://www.youtube.com/watch?v=ev9G_jTIA-k:
-- Robotrek
-https://www.youtube.com/watch?v=evHQZjhE9CM:
-- The Bouncer
-https://www.youtube.com/watch?v=evVH7gshLs8:
-- Turok 2 (Gameboy)
-- Turok II
-- turok 2
-https://www.youtube.com/watch?v=eyhLabJvb2M:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=eyiABstbKJE:
-- Kirby's Return to Dreamland
-https://www.youtube.com/watch?v=f0UzNWcwC30:
-- Tales of Graces
-https://www.youtube.com/watch?v=f0bj_Aqhbb8:
-- Guild Wars 2
-- Guild Wars II
-https://www.youtube.com/watch?v=f0muXjuV6cc:
-- Super Mario World
-https://www.youtube.com/watch?v=f1EFHMwKdkY:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=f1QLfSOUiHU:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=f2XcqUwycvA:
-- 'Kingdom Hearts: Birth By Sleep'
-https://www.youtube.com/watch?v=f2q9axKQFHc:
-- Tekken Tag Tournament 2
-- Tekken Tag Tournament II
-https://www.youtube.com/watch?v=f3z73Xp9fCk:
-- Outlaws
-https://www.youtube.com/watch?v=f6QCNRRA1x0:
-- Legend of Mana
-https://www.youtube.com/watch?v=fEfuvS-V9PI:
-- Mii Channel
-https://www.youtube.com/watch?v=fH-lLbHbG-A:
-- 'TMNT IV: Turtles in Time'
-- 'TMNT 4: Turtles in Time'
-https://www.youtube.com/watch?v=fH66CHAUcoA:
-- Chrono Trigger
-https://www.youtube.com/watch?v=fJZoDK-N6ug:
-- Castlevania 64
-https://www.youtube.com/watch?v=fJkpSSJUxC4:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=fNBMeTJb9SM:
-- Dead Rising 3
-- Dead Rising III
-https://www.youtube.com/watch?v=fRy6Ly5A5EA:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=fTj73xQg2TY:
-- Child of Light
-https://www.youtube.com/watch?v=fTvPg89TIMI:
-- Tales of Legendia
-https://www.youtube.com/watch?v=fWqvxC_8yDk:
-- 'Ecco: The Tides of Time (Sega CD)'
-- 'Ecco: The Tides of Time'
-https://www.youtube.com/watch?v=fWx4q8GqZeo:
-- Digital Devil Saga
-https://www.youtube.com/watch?v=fXxbFMtx0Bo:
-- Halo 3 ODST
-- Halo III ODST
-https://www.youtube.com/watch?v=fYvGx-PEAtg:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=f_UurCb4AD4:
-- Dewy's Adventure
-https://www.youtube.com/watch?v=fbc17iYI7PA:
-- Warcraft II
-- Warcraft 2
-https://www.youtube.com/watch?v=fcJLdQZ4F8o:
-- Ar Tonelico
-https://www.youtube.com/watch?v=fc_3fMMaWK8:
-- Secret of Mana
-https://www.youtube.com/watch?v=fd6QnwqipcE:
-- Mutant Mudds
-https://www.youtube.com/watch?v=feZJtZnevAM:
-- Pandora's Tower
-https://www.youtube.com/watch?v=fexAY_t4N8U:
-- Conker's Bad Fur Day
-https://www.youtube.com/watch?v=fg1PDaOnU2Q:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=fiPxE3P2Qho:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=fjNJqcuFD-A:
-- Katamari Damacy
-https://www.youtube.com/watch?v=fpVag5b7zHo:
-- Pokemon Omega Ruby / Alpha Sapphire
-- pokemon omega ruby
-- pokemon alpha sapphire
-https://www.youtube.com/watch?v=ft5DP1h8jsg:
-- Wild Arms 2
-- Wild Arms II
-https://www.youtube.com/watch?v=g2S2Lxzow3Q:
-- Mega Man 5
-- Mega Man V
-https://www.youtube.com/watch?v=g4Bnot1yBJA:
-- 'The Elder Scrolls III: Morrowind'
-- 'The Elder Scrolls 3: Morrowind'
-- Morrowind
-https://www.youtube.com/watch?v=g6vc_zFeHFk:
-- Streets of Rage
-https://www.youtube.com/watch?v=gAy6qk8rl5I:
-- Wild Arms
-https://www.youtube.com/watch?v=gDL6uizljVk:
-- 'Batman: Return of the Joker'
-https://www.youtube.com/watch?v=gF4pOYxzplw:
-- Xenogears
-https://www.youtube.com/watch?v=gIlGulCdwB4:
-- Pilotwings Resort
-https://www.youtube.com/watch?v=gLfz9w6jmJM:
-- Machinarium
-https://www.youtube.com/watch?v=gLu7Bh0lTPs:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=gQUe8l_Y28Y:
-- Lineage II
-- Lineage 2
-https://www.youtube.com/watch?v=gQiYZlxJk3w:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=gQndM8KdTD0:
-- 'Kirby 64: The Crystal Shards'
-https://www.youtube.com/watch?v=gRZFl-vt4w0:
-- Ratchet & Clank
-- ratchet and clank
-https://www.youtube.com/watch?v=gSLIlAVZ6Eo:
-- Tales of Vesperia
-https://www.youtube.com/watch?v=gTahA9hCxAg:
-- Undertale
-https://www.youtube.com/watch?v=gVGhVofDPb4:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=gW0DiDKWgWc:
-- Earthbound
-https://www.youtube.com/watch?v=gWZ2cqFr0Vo:
-- Chrono Cross
-https://www.youtube.com/watch?v=gY9jq9-1LTk:
-- Treasure Hunter G
-https://www.youtube.com/watch?v=g_Hsyo7lmQU:
-- Pictionary
-https://www.youtube.com/watch?v=gcm3ak-SLqM:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=gf3NerhyM_k:
-- Tales of Berseria
-https://www.youtube.com/watch?v=ggTedyRHx20:
-- 'Qbeh-1: The Atlas Cube'
-- 'Qbeh-I: The Atlas Cube'
-https://www.youtube.com/watch?v=ghe_tgQvWKQ:
-- Resident Evil REmake
-https://www.youtube.com/watch?v=ght6F5_jHQ0:
-- Mega Man 4
-- Mega Man IV
-https://www.youtube.com/watch?v=glFK5I0G2GE:
-- Sheep Raider
-https://www.youtube.com/watch?v=glcGXw3gS6Q:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=gmfBMy-h6Js:
-- NieR
-https://www.youtube.com/watch?v=go7JlCI5n5o:
-- Counter Strike
-https://www.youtube.com/watch?v=gokt9KTpf18:
-- Mario Kart 7
-- Mario Kart VII
-https://www.youtube.com/watch?v=grQkblTqSMs:
-- Earthbound
-https://www.youtube.com/watch?v=grmP-wEjYKw:
-- Okami
-https://www.youtube.com/watch?v=guff_k4b6cI:
-- Wild Arms
-https://www.youtube.com/watch?v=gwesq9ElVM4:
-- 'The Legend of Zelda: A Link Between Worlds'
-- a link between worlds
-https://www.youtube.com/watch?v=gxF__3CNrsU:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=gzl9oJstIgg:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=h0LDHLeL-mE:
-- Sonic Forces
-https://www.youtube.com/watch?v=h0ed9Kei7dw:
-- Biker Mice from Mars
-https://www.youtube.com/watch?v=h2AhfGXAPtk:
-- Deathsmiles
-https://www.youtube.com/watch?v=h4VF0mL35as:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=h5iAyksrXgc:
-- Yoshi's Story
-https://www.youtube.com/watch?v=h8Z73i0Z5kk:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=h8wD8Dmxr94:
-- 'Dragon Ball Z: The Legacy of Goku II'
-- 'Dragon Ball Z: The Legacy of Goku 2'
-https://www.youtube.com/watch?v=hB3mYnW-v4w:
-- 'Superbrothers: Sword & Sworcery EP'
-- 'superbrothers: sword and sworcery ep'
-https://www.youtube.com/watch?v=hBg-pnQpic4:
-- Pokemon Ruby / Sapphire / Emerald
-- pokemon ruby
-- pokemon sapphire
-- pokemon emerald
-https://www.youtube.com/watch?v=hELte7HgL2Y:
-- Chrono Trigger
-https://www.youtube.com/watch?v=hFgqnQLyqqE:
-- Sonic Lost World
-https://www.youtube.com/watch?v=hL7-cD9LDp0:
-- Glover
-https://www.youtube.com/watch?v=hLKBPvLNzng:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=hMd5T_RlE_o:
-- Super Mario World
-https://www.youtube.com/watch?v=hMoejZAOOUM:
-- Ys II Chronicles
-- Ys 2 Chronicles
-https://www.youtube.com/watch?v=hNCGAN-eyuc:
-- Undertale
-https://www.youtube.com/watch?v=hNOTJ-v8xnk:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=hT8FhGDS5qE:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=hUpjPQWKDpM:
-- Breath of Fire V
-- Breath of Fire 5
-https://www.youtube.com/watch?v=hV3Ktwm356M:
-- Killer Instinct
-https://www.youtube.com/watch?v=hYHMbcC08xA:
-- Mega Man 9
-- Mega Man IX
-https://www.youtube.com/watch?v=h_suLF-Qy5U:
-- Katamari Damacy
-https://www.youtube.com/watch?v=hb6Ny-4Pb7o:
-- Mana Khemia
-https://www.youtube.com/watch?v=he2oLG1Trtg:
-- 'Kirby: Triple Deluxe'
-https://www.youtube.com/watch?v=heD3Rzhrnaw:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=he_ECgg9YyU:
-- Mega Man
-https://www.youtube.com/watch?v=hlCHzEa9MRg:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=hlQ-DG9Jy3Y:
-- Pop'n Music 2
-- Pop'n Music II
-https://www.youtube.com/watch?v=hoOeroni32A:
-- Mutant Mudds
-https://www.youtube.com/watch?v=hqKfTvkVo1o:
-- Monster Hunter Tri
-https://www.youtube.com/watch?v=hrxseupEweU:
-- Unreal Tournament 2003 & 2004
-- unreal tournament 2003
-- unreal tournament 2004
-https://www.youtube.com/watch?v=hsPiGiZ2ks4:
-- SimCity 4
-- SimCity IV
-https://www.youtube.com/watch?v=hv2BL0v2tb4:
-- Phantasy Star Online
-https://www.youtube.com/watch?v=hxZTBl7Q5fs:
-- 'The Legend of Zelda: Link''s Awakening'
-- 'link''s awakening'
-https://www.youtube.com/watch?v=hyjJl59f_I0:
-- Star Fox Adventures
-https://www.youtube.com/watch?v=i-hcCtD_aB0:
-- Soma Bringer
-https://www.youtube.com/watch?v=i-v-bJhK5yc:
-- Undertale
-https://www.youtube.com/watch?v=i1GFclxeDIU:
-- Shadow Hearts
-https://www.youtube.com/watch?v=i1ZVtT5zdcI:
-- Secret of Mana
-https://www.youtube.com/watch?v=i2E9c0j0n4A:
-- Rad Racer II
-- Rad Racer 2
-https://www.youtube.com/watch?v=i49PlEN5k9I:
-- Soul Sacrifice
-https://www.youtube.com/watch?v=i8DTcUWfmws:
-- Guilty Gear Isuka
-https://www.youtube.com/watch?v=iA6xXR3pwIY:
-- Baten Kaitos
-https://www.youtube.com/watch?v=iDIbO2QefKo:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=iDVMfUFs_jo:
-- LOST CHILD
-https://www.youtube.com/watch?v=iFa5bIrsWb0:
-- 'The Legend of Zelda: Link''s Awakening'
-https://www.youtube.com/watch?v=iJS-PjSQMtw:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=iK-g9PXhXzM:
-- Radiant Historia
-https://www.youtube.com/watch?v=iMeBQBv2ACs:
-- Etrian Mystery Dungeon
-https://www.youtube.com/watch?v=iN3Jp55Db_A:
-- Maniac Mansion
-https://www.youtube.com/watch?v=iS98ggIHkRw:
-- Extreme-G
-https://www.youtube.com/watch?v=iSP-_hNQyYs:
-- Chrono Trigger
-https://www.youtube.com/watch?v=iTUBlKA5IfY:
-- Pokemon Art Academy
-https://www.youtube.com/watch?v=iV5Ae4lOWmk:
-- Super Paper Mario
-https://www.youtube.com/watch?v=iXDF9eHsmD4:
-- F-Zero
-https://www.youtube.com/watch?v=iZv19yJrZyo:
-- 'FTL: Advanced Edition'
-https://www.youtube.com/watch?v=idw1zFkySA0:
-- Boot Hill Heroes
-https://www.youtube.com/watch?v=ietzDT5lOpQ:
-- Braid
-https://www.youtube.com/watch?v=ifqmN14qJp8:
-- Minecraft
-https://www.youtube.com/watch?v=ifvxBt7tmA8:
-- Yoshi's Island
-https://www.youtube.com/watch?v=iga0Ed0BWGo:
-- Diablo III
-- Diablo 3
-https://www.youtube.com/watch?v=ihi7tI8Kaxc:
-- The Last Remnant
-https://www.youtube.com/watch?v=ijUwAWUS8ug:
-- Diablo II
-- Diablo 2
-https://www.youtube.com/watch?v=ilOYzbGwX7M:
-- Deja Vu
-https://www.youtube.com/watch?v=imK2k2YK36E:
-- Giftpia
-https://www.youtube.com/watch?v=in7TUvirruo:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=injXmLzRcBI:
-- Blue Dragon
-https://www.youtube.com/watch?v=iohvqM6CGEU:
-- Mario Kart 64
-https://www.youtube.com/watch?v=irGCdR0rTM4:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=irQxobE5PU8:
-- Frozen Synapse
-https://www.youtube.com/watch?v=ivfEScAwMrE:
-- 'Paper Mario: Sticker Star'
-https://www.youtube.com/watch?v=iwemkM-vBmc:
-- Super Mario Sunshine
-https://www.youtube.com/watch?v=ixE9HlQv7v8:
-- Castle Crashers
-https://www.youtube.com/watch?v=j16ZcZf9Xz8:
-- Pokemon Silver / Gold / Crystal
-- pokemon silver
-- pokemon gold
-- pokemon crystal
-https://www.youtube.com/watch?v=j2zAq26hqd8:
-- 'Metroid Prime 2: Echoes'
-- 'Metroid Prime II: Echoes'
-https://www.youtube.com/watch?v=j4Zh9IFn_2U:
-- Etrian Odyssey Untold
-https://www.youtube.com/watch?v=j6i73HYUNPk:
-- Gauntlet III
-- Gauntlet 3
-https://www.youtube.com/watch?v=jANl59bNb60:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=jAQGCM-IyOE:
-- Xenosaga
-https://www.youtube.com/watch?v=jChHVPyd4-Y:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=jEmyzsFaiZ8:
-- Tomb Raider
-https://www.youtube.com/watch?v=jI2ltHB50KU:
-- Opoona
-https://www.youtube.com/watch?v=jJVTRXZXEIA:
-- 'Dust: An Elysian Tail'
-https://www.youtube.com/watch?v=jL57YsG1JJE:
-- Metroid
-https://www.youtube.com/watch?v=jLrqs_dvAGU:
-- Yoshi's Woolly World
-https://www.youtube.com/watch?v=jNoiUfwuuP8:
-- 'Kirby 64: The Crystal Shards'
-https://www.youtube.com/watch?v=jObg1aw9kzE:
-- 'Divinity 2: Ego Draconis'
-- 'Divinity II: Ego Draconis'
-https://www.youtube.com/watch?v=jP2CHO9yrl8:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=jRqXWj7TL5A:
-- Goldeneye
-https://www.youtube.com/watch?v=jTZEuazir4s:
-- Environmental Station Alpha
-https://www.youtube.com/watch?v=jWtiuVTe5kQ:
-- Equinox
-https://www.youtube.com/watch?v=jXGaW3dKaHs:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=jYFYsfEyi0c:
-- Ragnarok Online
-https://www.youtube.com/watch?v=j_8sYSOkwAg:
-- Professor Layton and the Curious Village
-https://www.youtube.com/watch?v=j_EH4xCh1_U:
-- Metroid Prime
-https://www.youtube.com/watch?v=jaG1I-7dYvY:
-- Earthbound
-https://www.youtube.com/watch?v=jfEZs-Ada78:
-- Jack Bros.
-https://www.youtube.com/watch?v=jgtKSnmM5oE:
-- Tetris
-https://www.youtube.com/watch?v=jhHfROLw4fA:
-- 'Donkey Kong Country: Tropical Freeze'
-https://www.youtube.com/watch?v=jhsNQ6r2fHE:
-- 3D Dot Game Heroes
-https://www.youtube.com/watch?v=jkWYvENgxwA:
-- Journey to Silius
-https://www.youtube.com/watch?v=jlFYSIyAGmA:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=jlcjrgSVkkc:
-- Mario Kart 8
-- Mario Kart VIII
-https://www.youtube.com/watch?v=jpghr0u8LCU:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=jv5_zzFZMtk:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=k09qvMpZYYo:
-- Secret of Mana
-https://www.youtube.com/watch?v=k0f4cCJqUbg:
-- Katamari Forever
-https://www.youtube.com/watch?v=k3m-_uCo-b8:
-- Mega Man
-https://www.youtube.com/watch?v=k4L8cq2vrlk:
-- Chrono Trigger
-https://www.youtube.com/watch?v=k4N3Go4wZCg:
-- 'Uncharted: Drake''s Fortune'
-https://www.youtube.com/watch?v=kA69u0-U-Vk:
-- MapleStory
-https://www.youtube.com/watch?v=kDssUvBiHFk:
-- Yoshi's Island
-https://www.youtube.com/watch?v=kEA-4iS0sco:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=kJRiZaexNno:
-- Unlimited Saga
-https://www.youtube.com/watch?v=kN-jdHNOq8w:
-- Super Mario 64
-https://www.youtube.com/watch?v=kNDB4L0D2wg:
-- 'Everquest: Planes of Power'
-https://www.youtube.com/watch?v=kNPz77g5Xyk:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=kNgI7N5k5Zo:
-- 'Atelier Iris 2: The Azoth of Destiny'
-- 'Atelier Iris II: The Azoth of Destiny'
-https://www.youtube.com/watch?v=kW63YiVf5I0:
-- Splatoon
-https://www.youtube.com/watch?v=kWRFPdhAFls:
-- 'Fire Emblem 4: Seisen no Keifu'
-- 'Fire Emblem IV: Seisen no Keifu'
-https://www.youtube.com/watch?v=khPWld3iA8g:
-- Max Payne 2
-- Max Payne II
-https://www.youtube.com/watch?v=ki_ralGwQN4:
-- Legend of Mana
-https://www.youtube.com/watch?v=kmkzuPrQHQM:
-- Yoshi's Island DS
-https://www.youtube.com/watch?v=koHO9vN6t4I:
-- Giftpia
-https://www.youtube.com/watch?v=krmNfjbfJUQ:
-- Midnight Resistance
-https://www.youtube.com/watch?v=ks0xlnvjwMo:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=ks74Hlce8yw:
-- Super Mario 3D World
-https://www.youtube.com/watch?v=ksq6wWbVsPY:
-- Tekken 2
-- Tekken II
-https://www.youtube.com/watch?v=ktnL6toFPCo:
-- PaRappa the Rapper
-https://www.youtube.com/watch?v=ku0pS3ko5CU:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=kx580yOvKxs:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=kyaC_jSV_fw:
-- Nostalgia
-https://www.youtube.com/watch?v=kzId-AbowC4:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=kzUYJAaiEvA:
-- ICO
-https://www.youtube.com/watch?v=l1O9XZupPJY:
-- Tomb Raider III
-- Tomb Raider 3
-https://www.youtube.com/watch?v=l1UCISJoDTU:
-- Xenoblade Chronicles 2
-- Xenoblade Chronicles II
-https://www.youtube.com/watch?v=l5VK4kR1YTw:
-- Banjo-Kazooie
-https://www.youtube.com/watch?v=l5WLVNhczjE:
-- 'Phoenix Wright: Justice for All'
-https://www.youtube.com/watch?v=lBEvtA4Uuwk:
-- Wild Arms
-https://www.youtube.com/watch?v=lFOBRmPK-Qs:
-- Pokemon
-https://www.youtube.com/watch?v=lJc9ajk9bXs:
-- Sonic the Hedgehog 2
-- Sonic the Hedgehog II
-https://www.youtube.com/watch?v=lLP6Y-1_P1g:
-- Asterix & Obelix
-- asterix and obelix
-https://www.youtube.com/watch?v=lLniW316mUk:
-- Suikoden III
-- Suikoden 3
-https://www.youtube.com/watch?v=lOaWT7Y7ZNo:
-- Mirror's Edge
-https://www.youtube.com/watch?v=lPFndohdCuI:
-- Super Mario RPG
-https://www.youtube.com/watch?v=lXBFPdRiZMs:
-- 'Dragon Ball Z: Super Butoden'
-https://www.youtube.com/watch?v=lZUgl5vm6tk:
-- Trip World
-https://www.youtube.com/watch?v=lb88VsHVDbw:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=lcOky3CKCa0:
-- Yoshi's Woolly World
-https://www.youtube.com/watch?v=lfudDzITiw8:
-- Opoona
-https://www.youtube.com/watch?v=lhVk4Q47cgQ:
-- Shadow of the Colossus
-https://www.youtube.com/watch?v=lmhxytynQOE:
-- Romancing Saga 3
-- Romancing Saga III
-https://www.youtube.com/watch?v=loh0SQ_SF2s:
-- Xenogears
-https://www.youtube.com/watch?v=lwUtHErD2Yo:
-- Furi
-https://www.youtube.com/watch?v=lyduqdKbGSw:
-- Create
-https://www.youtube.com/watch?v=lzhkFmiTB_8:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=m-VXBxd2pmo:
-- Asterix
-https://www.youtube.com/watch?v=m09KrtCgiCA:
-- Final Fantasy Origins
-- final fantasy origins
-https://www.youtube.com/watch?v=m2Vlxyd9Wjw:
-- Dragon Quest V
-- Dragon Quest 5
-https://www.youtube.com/watch?v=m2q8wtFHbyY:
-- 'La Pucelle: Tactics'
-https://www.youtube.com/watch?v=m4NfokfW3jw:
-- 'Dragon Ball Z: The Legacy of Goku II'
-- 'Dragon Ball Z: The Legacy of Goku 2'
-https://www.youtube.com/watch?v=m4uR39jNeGE:
-- Wild Arms 3
-- Wild Arms III
-https://www.youtube.com/watch?v=m57kb5d3wZ4:
-- Chrono Cross
-https://www.youtube.com/watch?v=m6HgGxxjyrU:
-- Tales of Symphonia
-https://www.youtube.com/watch?v=m9kEp_sNLJo:
-- Illusion of Gaia
-https://www.youtube.com/watch?v=mA2rTmfT1T8:
-- Valdis Story
-https://www.youtube.com/watch?v=mASkgOcUdOQ:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=mDw3F-Gt4bQ:
-- Knuckles Chaotix
-https://www.youtube.com/watch?v=mG1D80dMhKo:
-- Asterix
-https://www.youtube.com/watch?v=mG9BcQEApoI:
-- 'Castlevania: Dawn of Sorrow'
-https://www.youtube.com/watch?v=mHUE5GkAUXo:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=mJCRoXkJohc:
-- Bomberman 64
-https://www.youtube.com/watch?v=mNDaE4dD8dE:
-- Monster Rancher 4
-- Monster Rancher IV
-https://www.youtube.com/watch?v=mPhy1ylhj7E:
-- Earthbound
-https://www.youtube.com/watch?v=mRGdr6iahg8:
-- 'Kirby 64: The Crystal Shards'
-https://www.youtube.com/watch?v=mSXFiU0mqik:
-- Chrono Cross
-https://www.youtube.com/watch?v=mTnXMcxBwcE:
-- 'The Legend of Zelda: Ocarina of Time'
-- ocarina of time
-https://www.youtube.com/watch?v=mWJeicPtar0:
-- NieR
-https://www.youtube.com/watch?v=mX78VEVMSVo:
-- Arcana
-https://www.youtube.com/watch?v=m_kAJLsSGz8:
-- 'Shantae: Risky''s Revenge'
-https://www.youtube.com/watch?v=mbPpGeTPbjM:
-- Eternal Darkness
-https://www.youtube.com/watch?v=mfOHgEeuEHE:
-- Umineko no Naku Koro ni
-https://www.youtube.com/watch?v=mh9iibxyg14:
-- Super Mario RPG
-https://www.youtube.com/watch?v=minJMBk4V9g:
-- 'Star Trek: Deep Space Nine'
-https://www.youtube.com/watch?v=mkTkAkcj6mQ:
-- 'The Elder Scrolls IV: Oblivion'
-- 'The Elder Scrolls 4: Oblivion'
-- Oblivion
-https://www.youtube.com/watch?v=mm-nVnt8L0g:
-- Earthbound
-https://www.youtube.com/watch?v=mnPqUs4DZkI:
-- 'Turok: Dinosaur Hunter'
-https://www.youtube.com/watch?v=mngXThXnpwY:
-- Legendary Wings
-https://www.youtube.com/watch?v=moDNdAfZkww:
-- Minecraft
-https://www.youtube.com/watch?v=mpt-RXhdZzQ:
-- Mega Man X
-https://www.youtube.com/watch?v=mr1anFEQV9s:
-- Alundra
-https://www.youtube.com/watch?v=msEbmIgnaSI:
-- Breath of Fire IV
-- Breath of Fire 4
-https://www.youtube.com/watch?v=mvcctOvLAh4:
-- Donkey Kong Country
-https://www.youtube.com/watch?v=mwWcWgKjN5Y:
-- F.E.A.R.
-https://www.youtube.com/watch?v=mwdGO2vfAho:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=myZzE9AYI90:
-- Silent Hill 2
-- Silent Hill II
-https://www.youtube.com/watch?v=myjd1MnZx5Y:
-- Dragon Quest IX
-- Dragon Quest 9
-https://www.youtube.com/watch?v=mzFGgwKMOKw:
-- Super Mario Land 2
-- Super Mario Land II
-https://www.youtube.com/watch?v=n10VyIRJj58:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=n2CyG6S363M:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=n4Pun5BDH0g:
-- Okamiden
-https://www.youtube.com/watch?v=n5L0ZpcDsZw:
-- Lufia II
-- Lufia 2
-https://www.youtube.com/watch?v=n5eb_qUg5rY:
-- Jazz Jackrabbit 2
-- Jazz Jackrabbit II
-https://www.youtube.com/watch?v=n6f-bb8DZ_k:
-- Street Fighter II
-- Street Fighter 2
-https://www.youtube.com/watch?v=n9QNuhs__8s:
-- 'Magna Carta: Tears of Blood'
-https://www.youtube.com/watch?v=nBWjVglSVGk:
-- The Flintstones
-https://www.youtube.com/watch?v=nEBoB571s9w:
-- Asterix & Obelix
-- asterix and obelix
-https://www.youtube.com/watch?v=nFsoCfGij0Y:
-- 'Batman: Return of the Joker'
-https://www.youtube.com/watch?v=nH7ma8TPnE8:
-- The Legend of Zelda
-https://www.youtube.com/watch?v=nJN-xeA7ZJo:
-- Treasure Master
-https://www.youtube.com/watch?v=nJgwF3gw9Xg:
-- 'Zelda II: The Adventure of Link'
-- 'Zelda 2: The Adventure of Link'
-https://www.youtube.com/watch?v=nK-IjRF-hs4:
-- 'Spyro: A Hero''s Tail'
-https://www.youtube.com/watch?v=nL3YMZ-Br0o:
-- Child of Light
-https://www.youtube.com/watch?v=nL5Y2NmHn38:
-- Fallout 4
-- Fallout IV
-https://www.youtube.com/watch?v=nO3lPvYVxzs:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=nOeGX-O_QRU:
-- Top Gear
-https://www.youtube.com/watch?v=nQC4AYA14UU:
-- Battery Jam
-https://www.youtube.com/watch?v=nRw54IXvpE8:
-- Gitaroo Man
-https://www.youtube.com/watch?v=nUScyv5DcIo:
-- Super Stickman Golf 2
-- Super Stickman Golf II
-https://www.youtube.com/watch?v=nUbwvWQOOvU:
-- Metal Gear Solid 3
-- Metal Gear Solid III
-https://www.youtube.com/watch?v=nUiZp8hb42I:
-- Intelligent Qube
-https://www.youtube.com/watch?v=nY8JLHPaN4c:
-- 'Ape Escape: Million Monkeys'
-https://www.youtube.com/watch?v=naIUUMurT5U:
-- Lara Croft GO
-https://www.youtube.com/watch?v=nea0ze3wh6k:
-- Toy Story 2
-- Toy Story II
-https://www.youtube.com/watch?v=nesYhwViPkc:
-- 'The Legend of Zelda: Tri Force Heroes'
-- tri force heroes
-https://www.youtube.com/watch?v=ng442hwhhAw:
-- Super Mario Bros 3
-- Super Mario Bros III
-https://www.youtube.com/watch?v=nj2d8U-CO9E:
-- Wild Arms 2
-- Wild Arms II
-https://www.youtube.com/watch?v=njoqMF6xebE:
-- 'Chip ''n Dale: Rescue Rangers'
-https://www.youtube.com/watch?v=nl57xFzDIM0:
-- Darksiders II
-- Darksiders 2
-https://www.youtube.com/watch?v=novAJAlNKHk:
-- Wild Arms 4
-- Wild Arms IV
-https://www.youtube.com/watch?v=nrNPfvs4Amc:
-- Super Turrican 2
-- Super Turrican II
-https://www.youtube.com/watch?v=nuUYTK61228:
-- Hyper Light Drifter
-https://www.youtube.com/watch?v=nuXnaXgt2MM:
-- Super Mario 64
-https://www.youtube.com/watch?v=nvv6JrhcQSo:
-- 'The Legend of Zelda: Spirit Tracks'
-- spirit tracks
-https://www.youtube.com/watch?v=ny2ludAFStY:
-- Sonic Triple Trouble
-https://www.youtube.com/watch?v=o0t8vHJtaKk:
-- Rayman
-https://www.youtube.com/watch?v=o5tflPmrT5c:
-- I am Setsuna
-- 1 am Setsuna
-https://www.youtube.com/watch?v=o8cQl5pL6R8:
-- Street Fighter IV
-- Street Fighter 4
-https://www.youtube.com/watch?v=oEEm45iRylE:
-- Super Princess Peach
-https://www.youtube.com/watch?v=oFbVhFlqt3k:
-- Xenogears
-https://www.youtube.com/watch?v=oHjt7i5nt8w:
-- Final Fantasy VI
-- Final Fantasy 6
-https://www.youtube.com/watch?v=oIPYptk_eJE:
-- 'Starcraft II: Wings of Liberty'
-- 'Starcraft 2: Wings of Liberty'
-https://www.youtube.com/watch?v=oJFAAWYju6c:
-- Ys Origin
-https://www.youtube.com/watch?v=oNjnN_p5Clo:
-- Bomberman 64
-https://www.youtube.com/watch?v=oPjI-qh3QWQ:
-- Opoona
-https://www.youtube.com/watch?v=oQVscNAg1cQ:
-- The Adventures of Bayou Billy
-https://www.youtube.com/watch?v=oYOdCD4mWsk:
-- Donkey Kong Country 2
-- Donkey Kong Country II
-https://www.youtube.com/watch?v=o_vtaSXF0WU:
-- 'Arc the Lad IV: Twilight of the Spirits'
-- 'Arc the Lad 4: Twilight of the Spirits'
-https://www.youtube.com/watch?v=obPhMUJ8G9k:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=ocVRCl9Kcus:
-- Shatter
-https://www.youtube.com/watch?v=odyd0b_WZ9E:
-- Dr. Mario
-https://www.youtube.com/watch?v=oeBGiKhMy-Q:
-- Chrono Cross
-https://www.youtube.com/watch?v=oksAhZuJ55I:
-- Etrian Odyssey II
-- Etrian Odyssey 2
-https://www.youtube.com/watch?v=ol2zCdVl3pQ:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=ooohjN5k5QE:
-- Cthulhu Saves the World
-https://www.youtube.com/watch?v=oseD00muRc8:
-- 'Phoenix Wright: Trials and Tribulations'
-https://www.youtube.com/watch?v=ouV9XFnqgio:
-- Final Fantasy Tactics
-https://www.youtube.com/watch?v=oubq22rV9sE:
-- Top Gear Rally
-https://www.youtube.com/watch?v=p-GeFCcmGzk:
-- World of Warcraft
-https://www.youtube.com/watch?v=p-dor7Fj3GM:
-- 'The Legend of Zelda: Majora''s Mask'
-- 'majora''s mask'
-https://www.youtube.com/watch?v=p2vEakoOIdU:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=p48dpXQixgk:
-- Beyond Good & Evil
-- beyond good and evil
-https://www.youtube.com/watch?v=p5ObFGkl_-4:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=p6LMIrRG16c:
-- Asterix & Obelix
-- asterix and obelix
-https://www.youtube.com/watch?v=p6alE3r44-E:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=p9Nt449SP24:
-- Guardian's Crusade
-https://www.youtube.com/watch?v=pAlhuLOMFbU:
-- World of Goo
-https://www.youtube.com/watch?v=pDW_nN8EkjM:
-- Wild Guns
-https://www.youtube.com/watch?v=pDznNHFE5rA:
-- Final Fantasy Tactics Advance
-https://www.youtube.com/watch?v=pETxZAqgYgQ:
-- 'Zelda II: The Adventure of Link'
-- 'Zelda 2: The Adventure of Link'
-https://www.youtube.com/watch?v=pI4lS0lxV18:
-- Terraria
-https://www.youtube.com/watch?v=pIC5D1F9EQQ:
-- 'Zelda II: The Adventure of Link'
-- 'Zelda 2: The Adventure of Link'
-https://www.youtube.com/watch?v=pOK5gWEnEPY:
-- Resident Evil REmake
-https://www.youtube.com/watch?v=pQVuAGSKofs:
-- Super Castlevania IV
-- Super Castlevania 4
-https://www.youtube.com/watch?v=pTp4d38cPtc:
-- Super Metroid
-https://www.youtube.com/watch?v=pWVxGmFaNFs:
-- Ragnarok Online II
-- Ragnarok Online 2
-https://www.youtube.com/watch?v=pYSlMtpYKgw:
-- Final Fantasy XII
-- Final Fantasy 12
-https://www.youtube.com/watch?v=pZBBZ77gob4:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=pb3EJpfIYGc:
-- Persona 5
-- Persona V
-https://www.youtube.com/watch?v=pbmKt4bb5cs:
-- Brave Fencer Musashi
-https://www.youtube.com/watch?v=pfe5a22BHGk:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=pgacxbSdObw:
-- Breath of Fire IV
-- Breath of Fire 4
-https://www.youtube.com/watch?v=pieNm70nCIQ:
-- Baten Kaitos
-https://www.youtube.com/watch?v=pmKP4hR2Td0:
-- Mario Paint
-https://www.youtube.com/watch?v=pmQu1KRUw7U:
-- New Super Mario Bros Wii
-https://www.youtube.com/watch?v=pnS50Lmz6Y8:
-- 'Beyond: Two Souls'
-https://www.youtube.com/watch?v=pqCxONuUK3s:
-- 'Persona Q: Shadow of the Labyrinth'
-https://www.youtube.com/watch?v=pq_nXXuZTtA:
-- Phantasy Star Online
-https://www.youtube.com/watch?v=prRDZPbuDcI:
-- Guilty Gear XX Reload (Korean Version)
-- Guilty Gear 20 Reload
-- guilty gear xx reload
-https://www.youtube.com/watch?v=prc_7w9i_0Q:
-- Super Mario RPG
-https://www.youtube.com/watch?v=ptr9JCSxeug:
-- Popful Mail
-https://www.youtube.com/watch?v=pucNWokmRr0:
-- Tales of Eternia
-https://www.youtube.com/watch?v=pwIy1Oto4Qc:
-- Dark Cloud
-https://www.youtube.com/watch?v=pxAH2U75BoM:
-- Guild Wars 2
-- Guild Wars II
-https://www.youtube.com/watch?v=pxcx_BACNQE:
-- Double Dragon
-https://www.youtube.com/watch?v=pyO56W8cysw:
-- Machinarium
-https://www.youtube.com/watch?v=q-Fc23Ksh7I:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=q-NUnKMEXnM:
-- Evoland II
-- Evoland 2
-https://www.youtube.com/watch?v=q5vG69CXgRs:
-- Pokemon Ruby / Sapphire / Emerald
-- pokemon ruby
-- pokemon sapphire
-- pokemon emerald
-https://www.youtube.com/watch?v=q6btinyHMAg:
-- Okamiden
-https://www.youtube.com/watch?v=q87OASJOKOg:
-- 'Castlevania: Aria of Sorrow'
-https://www.youtube.com/watch?v=q8ZKmxmWqhY:
-- Massive Assault
-https://www.youtube.com/watch?v=qBC7aIoDSHU:
-- 'Minecraft: Story Mode'
-https://www.youtube.com/watch?v=qBh4tvmT6N4:
-- Max Payne 3
-- Max Payne III
-https://www.youtube.com/watch?v=qEozZuqRbgQ:
-- Snowboard Kids 2
-- Snowboard Kids II
-https://www.youtube.com/watch?v=qH8MFPIvFpU:
-- Xenogears
-https://www.youtube.com/watch?v=qJMfgv5YFog:
-- Katamari Damacy
-https://www.youtube.com/watch?v=qMkvXCaxXOg:
-- Senko no Ronde DUO
-https://www.youtube.com/watch?v=qN32pn9abhI:
-- Secret of Mana
-https://www.youtube.com/watch?v=qNIAYDOCfGU:
-- Guacamelee!
-https://www.youtube.com/watch?v=qP_40IXc-UA:
-- Mutant Mudds
-https://www.youtube.com/watch?v=qPgoOxGb6vk:
-- For the Frog the Bell Tolls
-https://www.youtube.com/watch?v=qR8x99ylgqc:
-- Axiom Verge
-https://www.youtube.com/watch?v=q_ClDJNpFV8:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=qcf1CdKVATo:
-- Jurassic Park
-https://www.youtube.com/watch?v=qgJ0yQNX2cI:
-- A Boy And His Blob
-https://www.youtube.com/watch?v=qhYbg4fsPiE:
-- Pokemon Quest
-https://www.youtube.com/watch?v=qjNHwF3R-kg:
-- Starbound
-https://www.youtube.com/watch?v=qmeaNH7mWAY:
-- 'Animal Crossing: New Leaf'
-https://www.youtube.com/watch?v=qmvx5zT88ww:
-- Sonic the Hedgehog
-https://www.youtube.com/watch?v=qnJDEN-JOzY:
-- Ragnarok Online II
-- Ragnarok Online 2
-https://www.youtube.com/watch?v=qnvYRm_8Oy8:
-- Shenmue
-https://www.youtube.com/watch?v=qqa_pXXSMDg:
-- Panzer Dragoon Saga
-https://www.youtube.com/watch?v=qrmzQOAASXo:
-- Kirby's Return to Dreamland
-https://www.youtube.com/watch?v=qs3lqJnkMX8:
-- Kirby's Epic Yarn
-https://www.youtube.com/watch?v=qsDU8LC5PLI:
-- 'Tactics Ogre: Let Us Cling Together'
-https://www.youtube.com/watch?v=qtrFSnyvEX0:
-- Demon's Crest
-https://www.youtube.com/watch?v=qyrLcNCBnPQ:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=qzhWuriX9Ws:
-- Xenogears
-https://www.youtube.com/watch?v=r-zRrHICsw0:
-- LED Storm
-https://www.youtube.com/watch?v=r5A1MkzCX-s:
-- Castlevania
-https://www.youtube.com/watch?v=r5n9re80hcQ:
-- Dragon Quest VII 3DS
-- Dragon Quest 7 3DS
-https://www.youtube.com/watch?v=r6F92CUYjbI:
-- Titan Souls
-https://www.youtube.com/watch?v=r6dC9N4WgSY:
-- Lisa the Joyful
-https://www.youtube.com/watch?v=r7owYv6_tuw:
-- Tobal No. 1
-- Tobal No. I
-https://www.youtube.com/watch?v=rACVXsRX6IU:
-- Yoshi's Island DS
-https://www.youtube.com/watch?v=rADeZTd9qBc:
-- 'Ace Combat 5: The Unsung War'
-- 'Ace Combat V: The Unsung War'
-https://www.youtube.com/watch?v=rAJS58eviIk:
-- Ragnarok Online II
-- Ragnarok Online 2
-https://www.youtube.com/watch?v=rEE6yp873B4:
-- Contact
-https://www.youtube.com/watch?v=rFIzW_ET_6Q:
-- Shadow Hearts III
-- Shadow Hearts 3
-https://www.youtube.com/watch?v=rKGlXub23pw:
-- 'Ys VIII: Lacrimosa of Dana'
-- 'Ys 8: Lacrimosa of Dana'
-https://www.youtube.com/watch?v=rLM_wOEsOUk:
-- F-Zero
-https://www.youtube.com/watch?v=rLXgXfncaIA:
-- Anodyne
-https://www.youtube.com/watch?v=rLuP2pUwK8M:
-- Pop'n Music GB
-https://www.youtube.com/watch?v=rMxIyQqeGZ8:
-- Soma Bringer
-https://www.youtube.com/watch?v=rSBh2ZUKuq4:
-- 'Castlevania: Lament of Innocence'
-https://www.youtube.com/watch?v=rVmt7axswLo:
-- Castlevania Curse of Darkness
-https://www.youtube.com/watch?v=rXNrtuz0vl4:
-- Mega Man ZX
-https://www.youtube.com/watch?v=rXlxR7sH3iU:
-- Katamari Damacy
-https://www.youtube.com/watch?v=rY3n4qQZTWY:
-- Dragon Quest III
-- Dragon Quest 3
-https://www.youtube.com/watch?v=rZ2sNdqELMY:
-- Pikmin
-https://www.youtube.com/watch?v=rZn6QE_iVzA:
-- Tekken 5
-- Tekken V
-https://www.youtube.com/watch?v=rb9yuLqoryU:
-- Spelunky
-https://www.youtube.com/watch?v=rcnkZCiwKPs:
-- Trine
-https://www.youtube.com/watch?v=rd3QIW5ds4Q:
-- Spanky's Quest
-https://www.youtube.com/watch?v=reOJi31i9JM:
-- Chrono Trigger
-https://www.youtube.com/watch?v=rg_6OKlgjGE:
-- Shin Megami Tensei IV
-- Shin Megami Tensei 4
-https://www.youtube.com/watch?v=rhCzbGrG7DU:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=rhaQM_Vpiko:
-- Outlaws
-https://www.youtube.com/watch?v=rhbGqHurV5I:
-- Castlevania II
-- Castlevania 2
-https://www.youtube.com/watch?v=rltCi97DQ7Y:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=ro4ceM17QzY:
-- Sonic Lost World
-https://www.youtube.com/watch?v=roRsBf_kQps:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=rt0hrHroPz8:
-- 'Phoenix Wright: Ace Attorney'
-https://www.youtube.com/watch?v=ru4pkshvp7o:
-- Rayman Origins
-https://www.youtube.com/watch?v=rzLD0vbOoco:
-- 'Dracula X: Rondo of Blood'
-https://www.youtube.com/watch?v=rz_aiHo3aJg:
-- ActRaiser
-https://www.youtube.com/watch?v=s-6L1lM_x7k:
-- Final Fantasy XI
-- Final Fantasy 11
-https://www.youtube.com/watch?v=s-kTMBeDy40:
-- Grandia
-https://www.youtube.com/watch?v=s0mCsa2q2a4:
-- Donkey Kong Country 3
-- Donkey Kong Country III
-https://www.youtube.com/watch?v=s25IVZL0cuE:
-- 'Castlevania: Portrait of Ruin'
-https://www.youtube.com/watch?v=s3ja0vTezhs:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=s4pG2_UOel4:
-- Castlevania III
-- Castlevania 3
-https://www.youtube.com/watch?v=s6D8clnSE_I:
-- Pokemon
-https://www.youtube.com/watch?v=s7mVzuPSvSY:
-- Gravity Rush
-https://www.youtube.com/watch?v=sA_8Y30Lk2Q:
-- 'Ys VI: The Ark of Napishtim'
-- 'Ys 6: The Ark of Napishtim'
-https://www.youtube.com/watch?v=sBkqcoD53eI:
-- Breath of Fire II
-- Breath of Fire 2
-https://www.youtube.com/watch?v=sC4xMC4sISU:
-- Bioshock
-https://www.youtube.com/watch?v=sHQslJ2FaaM:
-- Krater
-https://www.youtube.com/watch?v=sHduBNdadTA:
-- 'Atelier Iris 2: The Azoth of Destiny'
-- 'Atelier Iris II: The Azoth of Destiny'
-https://www.youtube.com/watch?v=sIXnwB5AyvM:
-- Alundra
-https://www.youtube.com/watch?v=sMcx87rq0oA:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=sN8gtvYdqY4:
-- Opoona
-https://www.youtube.com/watch?v=sOgo6fXbJI4:
-- Final Fantasy Mystic Quest
-https://www.youtube.com/watch?v=sQ4aADxHssY:
-- Romance of the Three Kingdoms V
-- Romance of the Three Kingdoms 5
-https://www.youtube.com/watch?v=sRLoAqxsScI:
-- 'Tintin: Prisoners of the Sun'
-https://www.youtube.com/watch?v=sSkcY8zPWIY:
-- 'The Legend of Zelda: Skyward Sword'
-- skyward sword
-https://www.youtube.com/watch?v=sUc3p5sojmw:
-- 'Zelda II: The Adventure of Link'
-- 'Zelda 2: The Adventure of Link'
-https://www.youtube.com/watch?v=sVnly-OASsI:
-- Lost Odyssey
-https://www.youtube.com/watch?v=sYVOk6kU3TY:
-- 'South Park: The Stick of Truth'
-https://www.youtube.com/watch?v=sZU8xWDH68w:
-- The World Ends With You
-https://www.youtube.com/watch?v=s_Z71tcVVVg:
-- Super Mario Sunshine
-https://www.youtube.com/watch?v=seJszC75yCg:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=seaPEjQkn74:
-- Emil Chronicle Online
-https://www.youtube.com/watch?v=shx_nhWmZ-I:
-- 'Adventure Time: Hey Ice King! Why''d You Steal Our Garbage?!'
-https://www.youtube.com/watch?v=sl22D3F1954:
-- Marvel vs Capcom 3
-- Marvel vs Capcom III
-https://www.youtube.com/watch?v=snsS40I9-Ts:
-- Shovel Knight
-https://www.youtube.com/watch?v=sqIb-ZhY85Q:
-- Mega Man 5
-- Mega Man V
-https://www.youtube.com/watch?v=su8bqSqIGs0:
-- Chrono Trigger
-https://www.youtube.com/watch?v=sx6L5b-ACVk:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=sxcTW6DlNqA:
-- Super Adventure Island
-https://www.youtube.com/watch?v=szxxAefjpXw:
-- 'Mario & Luigi: Bowser''s Inside Story'
-- 'mario and luigi: bower''s inside story'
-https://www.youtube.com/watch?v=t6-MOj2mkgE:
-- '999: Nine Hours, Nine Persons, Nine Doors'
-https://www.youtube.com/watch?v=t6YVE2kp8gs:
-- Earthbound
-https://www.youtube.com/watch?v=t97-JQtcpRA:
-- Nostalgia
-https://www.youtube.com/watch?v=t9uUD60LS38:
-- 'SMT: Digital Devil Saga 2'
-- 'SMT: Digital Devil Saga II'
-https://www.youtube.com/watch?v=tBr9OyNHRjA:
-- 'Sang-Froid: Tales of Werewolves'
-https://www.youtube.com/watch?v=tDuCLC_sZZY:
-- 'Divinity: Original Sin'
-https://www.youtube.com/watch?v=tEXf3XFGFrY:
-- Sonic Unleashed
-https://www.youtube.com/watch?v=tFsVKUoGJZs:
-- Deus Ex
-https://www.youtube.com/watch?v=tIiNJgLECK0:
-- Super Mario RPG
-https://www.youtube.com/watch?v=tKMWMS7O50g:
-- Pokemon Mystery Dungeon
-https://www.youtube.com/watch?v=tKmmcOH2xao:
-- VVVVVV
-https://www.youtube.com/watch?v=tL3zvui1chQ:
-- 'The Legend of Zelda: Majora''s Mask'
-- 'majora''s mask'
-https://www.youtube.com/watch?v=tNvY96zReis:
-- Metal Gear Solid
-https://www.youtube.com/watch?v=tQYCO5rHSQ8:
-- Donkey Kong Land
-https://www.youtube.com/watch?v=tU3ZA2tFxDU:
-- Fatal Frame
-https://www.youtube.com/watch?v=tVnjViENsds:
-- Super Robot Wars 4
-- Super Robot Wars IV
-https://www.youtube.com/watch?v=tWopcEQUkhg:
-- Super Smash Bros. Wii U
-https://www.youtube.com/watch?v=tXnCJLLZIvc:
-- 'Paper Mario: The Thousand Year Door'
-https://www.youtube.com/watch?v=tbVLmRfeIQg:
-- Alundra
-https://www.youtube.com/watch?v=tdsnX2Z0a3g:
-- Blast Corps
-https://www.youtube.com/watch?v=tgxFLMM9TLw:
-- Lost Odyssey
-https://www.youtube.com/watch?v=tiL0mhmOOnU:
-- Sleepwalker
-https://www.youtube.com/watch?v=tiwsAs6WVyQ:
-- Castlevania II
-- Castlevania 2
-https://www.youtube.com/watch?v=tj3ks8GfBQU:
-- Guilty Gear XX Reload (Korean Version)
-- Guilty Gear 20 Reload
-- guilty gear xx reload
-https://www.youtube.com/watch?v=tk61GaJLsOQ:
-- Mother 3
-- Mother III
-https://www.youtube.com/watch?v=tkj57nM0OqQ:
-- Sonic the Hedgehog 2
-- Sonic the Hedgehog II
-https://www.youtube.com/watch?v=tlY88rlNnEE:
-- Xenogears
-https://www.youtube.com/watch?v=tnAXbjXucPc:
-- Battletoads & Double Dragon
-- battletoads
-- double dragon
-https://www.youtube.com/watch?v=tqyigq3uWzo:
-- Perfect Dark
-https://www.youtube.com/watch?v=tvGn7jf7t8c:
-- Shinobi
-https://www.youtube.com/watch?v=tvjGxtbJpMk:
-- Parasite Eve
-https://www.youtube.com/watch?v=ty4CBnWeEKE:
-- Mario Kart 64
-https://www.youtube.com/watch?v=tzi9trLh9PE:
-- Blue Dragon
-https://www.youtube.com/watch?v=u3S8CGo_klk:
-- Radical Dreamers
-https://www.youtube.com/watch?v=u4cv8dOFQsc:
-- Silent Hill 3
-- Silent Hill III
-https://www.youtube.com/watch?v=u5v8qTkf-yk:
-- Super Smash Bros. Brawl
-https://www.youtube.com/watch?v=u6Fa28hef7I:
-- Last Bible III
-- Last Bible 3
-https://www.youtube.com/watch?v=uDwLy1_6nDw:
-- F-Zero
-https://www.youtube.com/watch?v=uDzUf4I751w:
-- Mega Man Battle Network
-https://www.youtube.com/watch?v=uKK631j464M:
-- 'Castlevania: Symphony of the Night'
-https://www.youtube.com/watch?v=uKWkvGnNffU:
-- Dustforce
-https://www.youtube.com/watch?v=uM3dR2VbMck:
-- Super Stickman Golf 2
-- Super Stickman Golf II
-https://www.youtube.com/watch?v=uPU4gCjrDqg:
-- StarTropics
-https://www.youtube.com/watch?v=uSOspFMHVls:
-- Super Mario Bros 2
-- Super Mario Bros II
-https://www.youtube.com/watch?v=uTRjJj4UeCg:
-- Shovel Knight
-https://www.youtube.com/watch?v=uUA40z9kT6w:
-- Tomb Raider Legend
-https://www.youtube.com/watch?v=uURUC6yEMZc:
-- Yooka-Laylee
-https://www.youtube.com/watch?v=uV_g76ThygI:
-- Xenosaga III
-- Xenosaga 3
-https://www.youtube.com/watch?v=uX-Dk8gBgg8:
-- Valdis Story
-https://www.youtube.com/watch?v=uYX350EdM-8:
-- Secret of Mana
-https://www.youtube.com/watch?v=uYcqP1TWYOE:
-- Soul Blade
-https://www.youtube.com/watch?v=ucXYUeyQ6iM:
-- Pop'n Music 2
-- Pop'n Music II
-https://www.youtube.com/watch?v=udEC_I8my9Y:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=udNOf4W52hg:
-- Dragon Quest III
-- Dragon Quest 3
-https://www.youtube.com/watch?v=udO3kaNWEsI:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=uixqfTElRuI:
-- 'The Legend of Zelda: Wind Waker'
-- 'wind waker'
-https://www.youtube.com/watch?v=uj2mhutaEGA:
-- Ghouls 'n' Ghosts
-https://www.youtube.com/watch?v=ujverEHBzt8:
-- F-Zero GX
-https://www.youtube.com/watch?v=umh0xNPh-pY:
-- Okami
-https://www.youtube.com/watch?v=un-CZxdgudA:
-- Vortex
-https://www.youtube.com/watch?v=ung2q_BVXWY:
-- Nora to Toki no Koubou
-https://www.youtube.com/watch?v=uvRU3gsmXx4:
-- 'Qbeh-1: The Atlas Cube'
-- 'Qbeh-I: The Atlas Cube'
-https://www.youtube.com/watch?v=uwB0T1rExMc:
-- Drakkhen
-https://www.youtube.com/watch?v=uxETfaBcSYo:
-- Grandia II
-- Grandia 2
-https://www.youtube.com/watch?v=uy2OQ0waaPo:
-- Secret of Evermore
-https://www.youtube.com/watch?v=v-h3QCB_Pig:
-- Ninja Gaiden II
-- Ninja Gaiden 2
-https://www.youtube.com/watch?v=v02ZFogqSS8:
-- Pokemon Diamond / Pearl / Platinum
-- pokemon diamond
-- pokemon pearl
-- pokemon platinum
-https://www.youtube.com/watch?v=v0toUGs93No:
-- 'Command & Conquer: Tiberian Sun'
-- 'command and conquer: tiberian sun'
-https://www.youtube.com/watch?v=v4fgFmfuzqc:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=vCqkxI9eu44:
-- Astal
-https://www.youtube.com/watch?v=vEx9gtmDoRI:
-- 'Star Ocean 2: The Second Story'
-- 'Star Ocean II: The Second Story'
-https://www.youtube.com/watch?v=vLRhuxHiYio:
-- Hotline Miami 2
-- Hotline Miami II
-https://www.youtube.com/watch?v=vLkDLzEcJlU:
-- 'Final Fantasy VII: CC'
-- 'Final Fantasy 7: 200'
-https://www.youtube.com/watch?v=vMNf5-Y25pQ:
-- Final Fantasy V
-- Final Fantasy 5
-https://www.youtube.com/watch?v=vN9zJNpH3Mc:
-- Terranigma
-https://www.youtube.com/watch?v=vRRrOKsfxPg:
-- 'The Legend of Zelda: A Link to the Past'
-- a link to the past
-https://www.youtube.com/watch?v=vY8in7gADDY:
-- Tetrisphere
-https://www.youtube.com/watch?v=vZOCpswBNiw:
-- Lufia
-https://www.youtube.com/watch?v=v_9EdBLmHcE:
-- Equinox
-https://www.youtube.com/watch?v=vaJvNNWO_OQ:
-- Mega Man 2
-- Mega Man II
-https://www.youtube.com/watch?v=vbzmtIEujzk:
-- Deadly Premonition
-https://www.youtube.com/watch?v=vfRr0Y0QnHo:
-- Super Mario 64
-https://www.youtube.com/watch?v=vfqMK4BuN64:
-- Beyond Good & Evil
-- beyond good and evil
-https://www.youtube.com/watch?v=vgD6IngCtyU:
-- 'Romancing Saga: Minstrel Song'
-https://www.youtube.com/watch?v=vl6Cuvw4iyk:
-- Mighty Switch Force!
-https://www.youtube.com/watch?v=vmUwR3aa6dc:
-- F-Zero
-https://www.youtube.com/watch?v=vp6NjZ0cGiI:
-- Deep Labyrinth
-https://www.youtube.com/watch?v=vrWC1PosXSI:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=vsLJDafIEHc:
-- Legend of Grimrock
-https://www.youtube.com/watch?v=vsYHDEiBSrg:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=vtTk81cIJlg:
-- Magnetis
-https://www.youtube.com/watch?v=vz59icOE03E:
-- Boot Hill Heroes
-https://www.youtube.com/watch?v=w1tmFpEPagk:
-- Suikoden
-https://www.youtube.com/watch?v=w2HT5XkGaws:
-- 'Gremlins 2: The New Batch'
-- 'Gremlins II: The New Batch'
-https://www.youtube.com/watch?v=w4J4ZQP7Nq0:
-- Legend of Mana
-https://www.youtube.com/watch?v=w4b-3x2wqpw:
-- Breath of Death VII
-- Breath of Death 7
-https://www.youtube.com/watch?v=w6exvhdhIE8:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=w7dO2edfy00:
-- Wild Arms
-https://www.youtube.com/watch?v=wBAXLY1hq7s:
-- Ys Chronicles
-https://www.youtube.com/watch?v=wBUVdh4mVDc:
-- Lufia
-https://www.youtube.com/watch?v=wE8p0WBW4zo:
-- Guilty Gear XX Reload (Korean Version)
-- Guilty Gear 20 Reload
-- guilty gear xx reload
-https://www.youtube.com/watch?v=wEkfscyZEfE:
-- Sonic Rush
-https://www.youtube.com/watch?v=wFJYhWhioPI:
-- Shin Megami Tensei Nocturne
-https://www.youtube.com/watch?v=wFM8K7GLFKk:
-- Goldeneye
-https://www.youtube.com/watch?v=wHgmFPLNdW8:
-- Pop'n Music 8
-- Pop'n Music VIII
-https://www.youtube.com/watch?v=wKNz1SsO_cM:
-- Life is Strange
-https://www.youtube.com/watch?v=wKgoegkociY:
-- Opoona
-https://www.youtube.com/watch?v=wNfUOcOv1no:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=wPCmweLoa8Q:
-- Wangan Midnight Maximum Tune 3
-- Wangan Midnight Maximum Tune III
-https://www.youtube.com/watch?v=wPZgCJwBSgI:
-- Perfect Dark
-https://www.youtube.com/watch?v=wXSFR4tDIUs:
-- F-Zero
-https://www.youtube.com/watch?v=wXXgqWHDp18:
-- Tales of Zestiria
-https://www.youtube.com/watch?v=wXZ-2p4rC5s:
-- 'Metroid II: Return of Samus'
-- 'Metroid 2: Return of Samus'
-https://www.youtube.com/watch?v=w_6ZSQ2_7Q4:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=w_N7__8-9r0:
-- Donkey Kong Land
-https://www.youtube.com/watch?v=w_TOt-XQnPg:
-- Pokemon Ruby / Sapphire / Emerald
-- pokemon ruby
-- pokemon sapphire
-- pokemon emerald
-https://www.youtube.com/watch?v=waesdKG4rhM:
-- Dragon Quest VII 3DS
-- Dragon Quest 7 3DS
-https://www.youtube.com/watch?v=wdWZYggy75A:
-- Mother 4
-- Mother IV
-https://www.youtube.com/watch?v=wgAtWoPfBgQ:
-- Metroid Prime
-https://www.youtube.com/watch?v=wkrgYK2U5hE:
-- 'Super Monkey Ball: Step & Roll'
-- 'super monkey ball: step and roll'
-https://www.youtube.com/watch?v=wqb9Cesq3oM:
-- Super Mario RPG
-https://www.youtube.com/watch?v=wuFKdtvNOp0:
-- Granado Espada
-https://www.youtube.com/watch?v=wv6HHTa4jjI:
-- Miitopia
-https://www.youtube.com/watch?v=ww6KySR4MQ0:
-- Street Fighter II
-- Street Fighter 2
-https://www.youtube.com/watch?v=wxzrrUWOU8M:
-- Space Station Silicon Valley
-https://www.youtube.com/watch?v=wyYpZvfAUso:
-- Soul Calibur
-https://www.youtube.com/watch?v=x0wxJHbcDYE:
-- Prop Cycle
-https://www.youtube.com/watch?v=x4i7xG2IOOE:
-- 'Silent Hill: Origins'
-https://www.youtube.com/watch?v=x4mrK-42Z18:
-- Sonic Generations
-https://www.youtube.com/watch?v=x6VlzkDSU6k:
-- Parasite Eve
-https://www.youtube.com/watch?v=x9S3GnJ3_WQ:
-- Wild Arms
-https://www.youtube.com/watch?v=xFUvAJTiSH4:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=xJHVfLI5pLY:
-- 'Animal Crossing: Wild World'
-https://www.youtube.com/watch?v=xKxhEqH7UU0:
-- ICO
-https://www.youtube.com/watch?v=xP3PDznPrw4:
-- Dragon Quest IX
-- Dragon Quest 9
-https://www.youtube.com/watch?v=xTRmnisEJ7Y:
-- Super Mario Galaxy
-https://www.youtube.com/watch?v=xTxZchmHmBw:
-- Asterix
-https://www.youtube.com/watch?v=xWQOYiYHZ2w:
-- Antichamber
-https://www.youtube.com/watch?v=xWVBra_NpZo:
-- Bravely Default
-https://www.youtube.com/watch?v=xY86oDk6Ces:
-- Super Street Fighter II
-- Super Street Fighter 2
-https://www.youtube.com/watch?v=xZHoULMU6fE:
-- Firewatch
-https://www.youtube.com/watch?v=xaKXWFIz5E0:
-- Dragon Ball Z Butouden 2
-- Dragon Ball Z Butouden II
-https://www.youtube.com/watch?v=xajMfQuVnp4:
-- 'OFF'
-https://www.youtube.com/watch?v=xdQDETzViic:
-- The 7th Saga
-https://www.youtube.com/watch?v=xfzWn5b6MHM:
-- 'Silent Hill: Origins'
-https://www.youtube.com/watch?v=xgn1eHG_lr8:
-- Total Distortion
-https://www.youtube.com/watch?v=xhVwxYU23RU:
-- Bejeweled 3
-- Bejeweled III
-https://www.youtube.com/watch?v=xhgVOEt-wOo:
-- Final Fantasy VIII
-- Final Fantasy 8
-https://www.youtube.com/watch?v=xhzySCD19Ss:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=xieau-Uia18:
-- Sonic the Hedgehog (2006)
-- Sonic the Hedgehog 2006
-- sonic the hedgehog 06
-https://www.youtube.com/watch?v=xj0AV3Y-gFU:
-- 'The Legend of Zelda: Wind Waker'
-- wind waker
-https://www.youtube.com/watch?v=xkSD3pCyfP4:
-- Gauntlet
-https://www.youtube.com/watch?v=xl30LV6ruvA:
-- Fantasy Life
-https://www.youtube.com/watch?v=xorfsUKMGm8:
-- 'Shadow Hearts II: Covenant'
-- 'Shadow Hearts 2: Covenant'
-https://www.youtube.com/watch?v=xpu0N_oRDrM:
-- Final Fantasy X
-- Final Fantasy 10
-https://www.youtube.com/watch?v=xrLiaewZZ2E:
-- 'The Legend of Zelda: Twilight Princess'
-- twilight princess
-https://www.youtube.com/watch?v=xsC6UGAJmIw:
-- Waterworld
-https://www.youtube.com/watch?v=xtsyXDTAWoo:
-- Tetris Attack
-https://www.youtube.com/watch?v=xuCzPu3tHzg:
-- Seiken Densetsu 3
-- Seiken Densetsu III
-https://www.youtube.com/watch?v=xvvXFCYVmkw:
-- Mario Kart 64
-https://www.youtube.com/watch?v=xx9uLg6pYc0:
-- 'Spider-Man & X-Men: Arcade''s Revenge'
-- 'Spider-Man and X-Men: Arcade''s Revenge'
-https://www.youtube.com/watch?v=xze4yNQAmUU:
-- Mega Man 10
-https://www.youtube.com/watch?v=xzfhOQampfs:
-- Suikoden II
-- Suikoden 2
-https://www.youtube.com/watch?v=xzmv8C2I5ek:
-- 'Lightning Returns: Final Fantasy XIII'
-- 'Lightning Returns: Final Fantasy 13'
-https://www.youtube.com/watch?v=y0PixBaf8_Y:
-- Waterworld
-https://www.youtube.com/watch?v=y2MP97fwOa8:
-- Pokemon Ruby / Sapphire / Emerald
-- pokemon ruby
-- pokemon sapphire
-- pokemon emerald
-https://www.youtube.com/watch?v=y4DAIZM2sTc:
-- Breath of Fire III
-- Breath of Fire 3
-https://www.youtube.com/watch?v=y6UhV3E2H6w:
-- Xenoblade Chronicles
-https://www.youtube.com/watch?v=y81PyRX4ENA:
-- Zone of the Enders 2
-- Zone of the Enders II
-https://www.youtube.com/watch?v=y9SFrBt1xtw:
-- 'Mario Kart: Double Dash!!'
-https://www.youtube.com/watch?v=yCLW8IXbFYM:
-- Suikoden V
-- Suikoden 5
-https://www.youtube.com/watch?v=yDMN8XKs1z0:
-- Sonic 3D Blast (Saturn)
-- sonic 3d blast
-https://www.youtube.com/watch?v=yERMMu-OgEo:
-- Final Fantasy IV
-- Final Fantasy 4
-https://www.youtube.com/watch?v=yF_f-Y-MD2o:
-- Final Fantasy IX
-- Final Fantasy 9
-https://www.youtube.com/watch?v=yJrRo8Dqpkw:
-- 'Mario Kart: Double Dash !!'
-- 'mario kart double dash'
-https://www.youtube.com/watch?v=yTe_L2AYaI4:
-- Legend of Dragoon
-https://www.youtube.com/watch?v=yV7eGX8y2dM:
-- Hotline Miami 2
-- Hotline Miami II
-https://www.youtube.com/watch?v=yVcn0cFJY_c:
-- Xenosaga II
-- Xenosaga 2
-https://www.youtube.com/watch?v=yYPNScB1alA:
-- Speed Freaks
-https://www.youtube.com/watch?v=yZ5gFAjZsS4:
-- Wolverine
-https://www.youtube.com/watch?v=y_4Ei9OljBA:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=ye960O2B3Ao:
-- Star Fox
-https://www.youtube.com/watch?v=ygqp3eNXbI4:
-- Pop'n Music 18
-- Pop'n Music XVIII
-https://www.youtube.com/watch?v=yh8dWsIVCD8:
-- Battletoads
-https://www.youtube.com/watch?v=yirRajMEud4:
-- Jet Set Radio
-https://www.youtube.com/watch?v=yr7fU3D0Qw4:
-- Final Fantasy VII
-- Final Fantasy 7
-https://www.youtube.com/watch?v=ysLhWVbE12Y:
-- Panzer Dragoon
-https://www.youtube.com/watch?v=ysoz5EnW6r4:
-- Tekken 7
-- Tekken VII
-https://www.youtube.com/watch?v=ytp_EVRf8_I:
-- Super Mario RPG
-https://www.youtube.com/watch?v=yz1yrVcpWjA:
-- Persona 3
-- Persona III
-https://www.youtube.com/watch?v=yzgSscW7klw:
-- Steamworld Dig 2
-- Steamworld Dig II
-https://www.youtube.com/watch?v=z-QISdXXN_E:
-- Wild Arms Alter Code F
-https://www.youtube.com/watch?v=z1oW4USdB68:
-- 'The Legend of Zelda: Minish Cap'
-- minish cap
-https://www.youtube.com/watch?v=z513Tty2hag:
-- Fez
-https://www.youtube.com/watch?v=z5ndH9xEVlo:
-- Streets of Rage
-https://www.youtube.com/watch?v=z5oERC4cD8g:
-- Skies of Arcadia
-https://www.youtube.com/watch?v=zB-n8fx-Dig:
-- Kirby's Return to Dreamland
-https://www.youtube.com/watch?v=zCP7hfY8LPo:
-- Ape Escape
-https://www.youtube.com/watch?v=zFfgwmWuimk:
-- 'DmC: Devil May Cry'
-- devil may cry
-https://www.youtube.com/watch?v=zHej43S_OMI:
-- Radiata Stories
-https://www.youtube.com/watch?v=zLXJ6l4Gxsg:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=zO9y6EH6jVw:
-- 'Metroid Prime 2: Echoes'
-- 'Metroid Prime II: Echoes'
-https://www.youtube.com/watch?v=zS8QlZkN_kM:
-- Guardian's Crusade
-https://www.youtube.com/watch?v=zTHAKsaD_8U:
-- Super Mario Bros
-https://www.youtube.com/watch?v=zTKEnlYhL0M:
-- 'Gremlins 2: The New Batch'
-- 'Gremlins II: The New Batch'
-https://www.youtube.com/watch?v=zTOZesa-uG4:
-- 'Turok: Dinosaur Hunter'
-https://www.youtube.com/watch?v=zYMU-v7GGW4:
-- Kingdom Hearts
-https://www.youtube.com/watch?v=za05W9gtegc:
-- Metroid Prime
-https://www.youtube.com/watch?v=zawNmXL36zM:
-- SpaceChem
-https://www.youtube.com/watch?v=ziyH7x0P5tU:
-- Final Fantasy
-https://www.youtube.com/watch?v=zojcLdL7UTw:
-- Shining Hearts
-https://www.youtube.com/watch?v=zpVIM8de2xw:
-- Mega Man 3
-- Mega Man III
-https://www.youtube.com/watch?v=zpleUx1Llgs:
-- Super Smash Bros Wii U / 3DS
-- super smash bros wii u
-- super smas bros 3ds
-https://www.youtube.com/watch?v=zqFtW92WUaI:
-- Super Mario World
-https://www.youtube.com/watch?v=zqgfOTBPv3E:
-- Metroid Prime 3
-- Metroid Prime III
-https://www.youtube.com/watch?v=zsuBQNO7tps:
-- Dark Souls
-https://www.youtube.com/watch?v=ztLD9IqnRqY:
-- Metroid Prime 3
-- Metroid Prime III
-https://www.youtube.com/watch?v=ztiSivmoE0c:
-- Breath of Fire
-https://www.youtube.com/watch?v=zxZROhq4Lz0:
-- Pop'n Music 8
-- Pop'n Music VIII
diff --git a/audiotrivia/data/lists/games.yaml b/audiotrivia/data/lists/games.yaml
index 4a823d8..c3a9078 100644
--- a/audiotrivia/data/lists/games.yaml
+++ b/audiotrivia/data/lists/games.yaml
@@ -1,304 +1,5183 @@
-AUTHOR: bobloy
-https://www.youtube.com/watch?v=FrceWR4XnVU:
-- shovel knight
-https://www.youtube.com/watch?v=Fn0khIn2wfc:
-- super mario world
-https://www.youtube.com/watch?v=qkYSuWSPkHI:
-- the legend of zelda
-- legend of zelda
-- zelda
-https://www.youtube.com/watch?v=0hvlwLwxweI:
-- dragon quest ix
-- dragon quest 9
-https://www.youtube.com/watch?v=GxrKe9z4CCo:
-- chrono trigger
-https://www.youtube.com/watch?v=pz3BQFXjEOI:
-- super smash bros melee
-- super smash bros. melee
-- super smash brothers melee
-https://www.youtube.com/watch?v=l_ioujmtqjg:
-- super mario bros
-- super mario brothers
-- super mario bros.
-https://www.youtube.com/watch?v=zTztR_y9iHc:
-- banjo-kazooie
-- banjo kazooie
-https://www.youtube.com/watch?v=6gWyfQFdMJA:
-- metroid samus returns
-https://www.youtube.com/watch?v=0jXTBAGv9ZQ:
-- halo
-https://www.youtube.com/watch?v=Rhaq4JP_t6o:
-- the elder scrolls iii morrowind
-- morrowind
-- elder scrolls iii
-- elder scrolls 3
-https://www.youtube.com/watch?v=ZksNhHyEhE0:
-- sonic generations
-https://www.youtube.com/watch?v=lndBgOrTWxo:
-- donkey kong country 2
-- donkey kong country two
-https://www.youtube.com/watch?v=uTEMsmLoEA4:
-- mario kart 8
-- mario kart eight
-https://www.youtube.com/watch?v=WA2WjP6sgrc:
-- donkey kong country tropical freeze
-- tropical freeze
-https://www.youtube.com/watch?v=9wMjq58Fjvo:
-- castle crashers
-https://www.youtube.com/watch?v=sr2nK06zZkg:
-- shadow of the colossus
+AUTHOR: Plab
+https://www.youtube.com/watch?v=--bWm9hhoZo:
+- Transistor
+https://www.youtube.com/watch?v=-4nCbgayZNE:
+- Dark Cloud 2
+- Dark Cloud II
+https://www.youtube.com/watch?v=-64NlME4lJU:
+- Mega Man 7
+- Mega Man VII
+https://www.youtube.com/watch?v=-AesqnudNuw:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=-BmGDtP2t7M:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=-Gg6v-GMnsU:
+- 'FTL: Faster Than Light'
+https://www.youtube.com/watch?v=-GouzQ8y5Cc:
+- Minecraft
+https://www.youtube.com/watch?v=-IsFD_jw6lM:
+- Advance Wars DS
+https://www.youtube.com/watch?v=-J55bt2b3Z8:
+- Mario Kart 8
+- Mario Kart VIII
+https://www.youtube.com/watch?v=-KXPZ81aUPY:
+- 'Ratchet & Clank: Going Commando'
+- 'ratchet and clank: going commando'
+https://www.youtube.com/watch?v=-L45Lm02jIU:
+- Super Street Fighter II
+- Super Street Fighter 2
+https://www.youtube.com/watch?v=-LId8l6Rc6Y:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=-LLr-88UG1U:
+- The Last Story
+https://www.youtube.com/watch?v=-PQ9hQLWNCM:
+- Pokemon
+https://www.youtube.com/watch?v=-Q-S4wQOcr8:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=-Q2Srm60GLg:
+- Dustforce
+https://www.youtube.com/watch?v=-ROXEo0YD10:
+- Halo
+https://www.youtube.com/watch?v=-TG5VLGPdRc:
+- Wild Arms Alter Code F
+https://www.youtube.com/watch?v=-UkyW5eHKlg:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=-VtNcqxyNnA:
+- Dragon Quest II
+- Dragon Quest 2
+https://www.youtube.com/watch?v=-WQGbuqnVlc:
+- Guacamelee!
+https://www.youtube.com/watch?v=-XTYsUzDWEM:
+- 'The Legend of Zelda: Link''s Awakening'
+- 'link''s awakening'
+https://www.youtube.com/watch?v=-YfpDN84qls:
+- Bioshock Infinite
+https://www.youtube.com/watch?v=-_51UVCkOh4:
+- 'Donkey Kong Country: Tropical Freeze'
+https://www.youtube.com/watch?v=-czsPXU_Sn0:
+- StarFighter 3000
+- StarFighter MMM
+https://www.youtube.com/watch?v=-eHjgg4cnjo:
+- Tintin in Tibet
+https://www.youtube.com/watch?v=-ehGFSkPfko:
+- Contact
+https://www.youtube.com/watch?v=-finZK4D6NA:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=-ltGbYCYr-Q:
+- Enchanted Arms
+https://www.youtube.com/watch?v=-lz8ydvkFuo:
+- Super Metroid
+https://www.youtube.com/watch?v=-m3VGoy-4Qo:
+- Mega Man X6
+https://www.youtube.com/watch?v=-nOJ6c1umMU:
+- Mega Man 7
+- Mega Man VII
+https://www.youtube.com/watch?v=-oGZIqeeTt0:
+- NeoTokyo
+https://www.youtube.com/watch?v=-ohvCzPIBvM:
+- Dark Cloud
+https://www.youtube.com/watch?v=-uJOYd76nSQ:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=-u_udSjbXgs:
+- Radiata Stories
+https://www.youtube.com/watch?v=-xpUOrwVMHo:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=00mLin2YU54:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=01n8imWdT6g:
+- Ristar
+https://www.youtube.com/watch?v=02VD6G-JD4w:
+- SimCity 4
+- SimCity IV
+https://www.youtube.com/watch?v=03L56CE7QWc:
+- Little Nightmares
+https://www.youtube.com/watch?v=04TLq1cKeTI:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=07EXFbZaXiM:
+- Airport Tycoon 3
+- Airport Tycoon III
+https://www.youtube.com/watch?v=096M0eZMk5Q:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=0E-_TG7vGP0:
+- Battletoads & Double Dragon
+- battletoads
+- double dragon
+https://www.youtube.com/watch?v=0EhiDgp8Drg:
+- Mario Party
+https://www.youtube.com/watch?v=0F-hJjD3XAs:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=0F0ONH92OoY:
+- Donkey Kong 64
+https://www.youtube.com/watch?v=0Fbgho32K4A:
+- 'FFCC: The Crystal Bearers'
+https://www.youtube.com/watch?v=0Fff6en_Crc:
+- 'Emperor: Battle for Dune'
+https://www.youtube.com/watch?v=0H5YoFv09uQ:
+- Waterworld
+https://www.youtube.com/watch?v=0IcVJVcjAxA:
+- 'Star Ocean 3: Till the End of Time'
+- 'Star Ocean III: Till the End of Time'
+https://www.youtube.com/watch?v=0KDjcSaMgfI:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=0Lo8Q5tL0WQ:
+- Chrono Trigger
+https://www.youtube.com/watch?v=0OMlZPg8tl4:
+- Robocop 3 (C64)
+- Robocop III
+- robocop 3
+https://www.youtube.com/watch?v=0RKF6gqCXiM:
+- Persona 3
+- Persona III
+https://www.youtube.com/watch?v=0U_7HnAvbR8:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=0Y0RwyI8j8k:
+- Jet Force Gemini
+https://www.youtube.com/watch?v=0Y1Y3buSm2I:
+- Mario Kart Wii
+https://www.youtube.com/watch?v=0YN7-nirAbk:
+- Ys II Chronicles
+- Ys 2 Chronicles
+https://www.youtube.com/watch?v=0_8CS1mrfFA:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=0_YB2lagalY:
+- Marble Madness
+https://www.youtube.com/watch?v=0_ph5htjyl0:
+- Dear Esther
+https://www.youtube.com/watch?v=0dEc-UyQf58:
+- Pokemon Trading Card Game
+https://www.youtube.com/watch?v=0dMkx7c-uNM:
+- VVVVVV
+https://www.youtube.com/watch?v=0mmvYvsN32Q:
+- Batman
+https://www.youtube.com/watch?v=0oBT5dOZPig:
+- Final Fantasy X-2
+- Final Fantasy 10-2
+- Final Fantasy X-II
+https://www.youtube.com/watch?v=0ptVf0dQ18M:
+- F-Zero GX
+https://www.youtube.com/watch?v=0rz-SlHMtkE:
+- Panzer Dragoon
+https://www.youtube.com/watch?v=0tWIVmHNDYk:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=0w-9yZBE_nQ:
+- Blaster Master
+https://www.youtube.com/watch?v=0yKsce_NsWA:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=11CqmhtBfJI:
+- Wild Arms
+https://www.youtube.com/watch?v=13Uk8RB6kzQ:
+- The Smurfs
+https://www.youtube.com/watch?v=14-tduXVhNQ:
+- The Magical Quest starring Mickey Mouse
+https://www.youtube.com/watch?v=14gpqf8JP-Y:
+- Super Turrican
+https://www.youtube.com/watch?v=15PEwOkJ5DA:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=16e2Okdc-PQ:
+- Threads of Fate
+https://www.youtube.com/watch?v=16sK7JwZ9nI:
+- Sands of Destruction
+https://www.youtube.com/watch?v=18NQOEU2jvU:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=1ALDFlUYdcQ:
+- Mega Man 10
+https://www.youtube.com/watch?v=1B0D2_zhYyM:
+- Return All Robots!
+https://www.youtube.com/watch?v=1BcHKsDr5CM:
+- Grandia
+https://www.youtube.com/watch?v=1CJ69ZxnVOs:
+- Jets 'N' Guns
+https://www.youtube.com/watch?v=1DAD230gipE:
+- 'Vampire The Masquerade: Bloodlines'
+https://www.youtube.com/watch?v=1DFIYMTnlzo:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=1DwQk4-Smn0:
+- Crusader of Centy
+https://www.youtube.com/watch?v=1EJ2gbCFpGM:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=1HOQJZiKbew:
+- Kirby's Adventure
+https://www.youtube.com/watch?v=1IMUSeMsxwI:
+- Touch My Katamari
+https://www.youtube.com/watch?v=1KCcXn5xBeY:
+- Inside
+https://www.youtube.com/watch?v=1KaAALej7BY:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=1MRrLo4awBI:
+- Golden Sun
+https://www.youtube.com/watch?v=1MVAIf-leiQ:
+- Fez
+https://www.youtube.com/watch?v=1NmzdFvqzSU:
+- Ruin Arm
+https://www.youtube.com/watch?v=1OzPeu60ZvU:
+- Swiv
+https://www.youtube.com/watch?v=1QHyvhnEe2g:
+- Ice Hockey
+https://www.youtube.com/watch?v=1R1-hXIeiKI:
+- Punch-Out!!
+https://www.youtube.com/watch?v=1RBvXjg_QAc:
+- 'E.T.: Return to the Green Planet'
+https://www.youtube.com/watch?v=1THa11egbMI:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=1UZ1fKOlZC0:
+- Axiom Verge
+https://www.youtube.com/watch?v=1UzoyIwC3Lg:
+- Master Spy
+https://www.youtube.com/watch?v=1X5Y6Opw26s:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=1YWdyLlEu5w:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=1_8u5eDjEwY:
+- 'Digital: A Love Story'
+https://www.youtube.com/watch?v=1agK890YmvQ:
+- Sonic Colors
+https://www.youtube.com/watch?v=1gZaH16gqgk:
+- Sonic Colors
+https://www.youtube.com/watch?v=1hxkqsEz4dk:
+- Mega Man Battle Network 3
+- Mega Man Battle Network III
+https://www.youtube.com/watch?v=1iKxdUnF0Vg:
+- The Revenge of Shinobi
+https://www.youtube.com/watch?v=1kt-H7qUr58:
+- Deus Ex
+https://www.youtube.com/watch?v=1r5BYjZdAtI:
+- Rusty
+https://www.youtube.com/watch?v=1riMeMvabu0:
+- Grim Fandango
+https://www.youtube.com/watch?v=1s7lAVqC0Ps:
+- Tales of Graces
+https://www.youtube.com/watch?v=1saL4_XcwVA:
+- Dustforce
+https://www.youtube.com/watch?v=1uEHUSinwD8:
+- Secret of Mana
+https://www.youtube.com/watch?v=1wskjjST4F8:
+- Plok
+https://www.youtube.com/watch?v=1xzf_Ey5th8:
+- Breath of Fire V
+- Breath of Fire 5
+https://www.youtube.com/watch?v=1yBlUvZ-taY:
+- Tribes Ascend
+https://www.youtube.com/watch?v=1zU2agExFiE:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=20Or4fIOgBk:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=248TO66gf8M:
+- Sonic Mania
+https://www.youtube.com/watch?v=29dJ6XlsMds:
+- Elvandia Story
+https://www.youtube.com/watch?v=29h1H6neu3k:
+- Dragon Quest VII
+- Dragon Quest 7
+https://www.youtube.com/watch?v=2AzKwVALPJU:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=2BNMm9irLTw:
+- 'Mario & Luigi: Superstar Saga'
+- 'mario and luigi: superstar saga'
+https://www.youtube.com/watch?v=2CEZdt5n5JQ:
+- Metal Gear Rising
+https://www.youtube.com/watch?v=2CyFFMCC67U:
+- Super Mario Land 2
+- Super Mario Land II
+https://www.youtube.com/watch?v=2Mf0f91AfQo:
+- Octopath Traveler
+https://www.youtube.com/watch?v=2MzcVSPUJw0:
+- Super Metroid
+https://www.youtube.com/watch?v=2NGWhKhMojQ:
+- Klonoa
+https://www.youtube.com/watch?v=2NfhrT3gQdY:
+- 'Lunar: The Silver Star'
+https://www.youtube.com/watch?v=2O4aNHy2Dcc:
+- X-Men vs Street Fighter
+https://www.youtube.com/watch?v=2TgWzuTOXN8:
+- Shadow of the Ninja
+https://www.youtube.com/watch?v=2WYI83Cx9Ko:
+- Earthbound
+https://www.youtube.com/watch?v=2ZX41kMN9V8:
+- 'Castlevania: Aria of Sorrow'
+https://www.youtube.com/watch?v=2bd4NId7GiA:
+- Catherine
+https://www.youtube.com/watch?v=2biS2NM9QeE:
+- Napple Tale
+https://www.youtube.com/watch?v=2c1e5ASpwjk:
+- Persona 4
+- Persona IV
+https://www.youtube.com/watch?v=2e9MvGGtz6c:
+- Secret of Mana (2018)
+- Secret of Mana
+https://www.youtube.com/watch?v=2gKlqJXIDVQ:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=2hfgF1RoqJo:
+- Gunstar Heroes
+https://www.youtube.com/watch?v=2jbJSftFr20:
+- Plok
+https://www.youtube.com/watch?v=2mLCr2sV3rs:
+- Mother
+https://www.youtube.com/watch?v=2mlPgPBDovw:
+- 'Castlevania: Bloodlines'
+https://www.youtube.com/watch?v=2oo0qQ79uWE:
+- Sonic 3D Blast (Saturn)
+- sonic 3d blast
+https://www.youtube.com/watch?v=2qDajCHTkWc:
+- 'Arc the Lad IV: Twilight of the Spirits'
+- 'Arc the Lad 4: Twilight of the Spirits'
+https://www.youtube.com/watch?v=2r1iesThvYg:
+- Chrono Trigger
+https://www.youtube.com/watch?v=2r35JpoRCOk:
+- NieR
+https://www.youtube.com/watch?v=2xP0dFTlxdo:
+- Vagrant Story
+https://www.youtube.com/watch?v=31NHdGB1ZSk:
+- Metroid Prime 3
+- Metroid Prime III
+https://www.youtube.com/watch?v=3283ANpvPPM:
+- Super Spy Hunter
+https://www.youtube.com/watch?v=37rVPijCrCA:
+- Earthbound
+https://www.youtube.com/watch?v=3Bl0nIoCB5Q:
+- Wii Sports
+https://www.youtube.com/watch?v=3Hf0L8oddrA:
+- Lagoon
+https://www.youtube.com/watch?v=3J9-q-cv_Io:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=3ODKKILZiYY:
+- Plok
+https://www.youtube.com/watch?v=3PAHwO_GsrQ:
+- Chrono Trigger
+https://www.youtube.com/watch?v=3TjzvAGDubE:
+- Super Mario 64
+https://www.youtube.com/watch?v=3WVqKTCx7Ug:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=3XM9eiSys98:
+- Hotline Miami
+https://www.youtube.com/watch?v=3Y8toBvkRpc:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=3bNlWGyxkCU:
+- Diablo III
+- Diablo 3
+https://www.youtube.com/watch?v=3cIi2PEagmg:
+- Super Mario Bros 3
+- Super Mario Bros III
+https://www.youtube.com/watch?v=3iygPesmC-U:
+- Shadow Hearts
+https://www.youtube.com/watch?v=3kmwqOIeego:
+- Touch My Katamari
+https://www.youtube.com/watch?v=3lehXRPWyes:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=3lhiseKpDDY:
+- Heimdall 2
+- Heimdall II
+https://www.youtube.com/watch?v=3nLtMX4Y8XI:
+- Mr. Nutz
+https://www.youtube.com/watch?v=3nPLwrTvII0:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=3q_o-86lmcg:
+- Crash Bandicoot
+https://www.youtube.com/watch?v=3tItkV0GeoY:
+- Diddy Kong Racing
+https://www.youtube.com/watch?v=3tpO54VR6Oo:
+- Pop'n Music 4
+- Pop'n Music IV
+https://www.youtube.com/watch?v=3vYAXZs8pFU:
+- Umineko no Naku Koro ni
+https://www.youtube.com/watch?v=44lJD2Xd5rc:
+- Super Mario World
+https://www.youtube.com/watch?v=44u87NnaV4Q:
+- 'Castlevania: Dracula X'
+https://www.youtube.com/watch?v=44vPlW8_X3s:
+- DOOM
+https://www.youtube.com/watch?v=46WQk6Qvne8:
+- Blast Corps
+https://www.youtube.com/watch?v=473L99I88n8:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=476siHQiW0k:
+- 'JESUS: Kyoufu no Bio Monster'
+https://www.youtube.com/watch?v=49rleD-HNCk:
+- Tekken Tag Tournament 2
+- Tekken Tag Tournament II
+https://www.youtube.com/watch?v=4CEc0t0t46s:
+- Ittle Dew 2
+- Ittle Dew II
+https://www.youtube.com/watch?v=4DmNrnj6wUI:
+- Napple Tale
+https://www.youtube.com/watch?v=4EBNeFI0QW4:
+- 'OFF'
+https://www.youtube.com/watch?v=4GTm-jHQm90:
+- 'Pokemon XD: Gale of Darkness'
+https://www.youtube.com/watch?v=4HHlWg5iZDs:
+- Terraria
+https://www.youtube.com/watch?v=4HLSGn4_3WE:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=4H_0h3n6pMk:
+- Silver Surfer
+https://www.youtube.com/watch?v=4J99hnghz4Y:
+- Beyond Good & Evil
+- beyond good and evil
+https://www.youtube.com/watch?v=4JJEaVI3JRs:
+- 'The Legend of Zelda: Oracle of Seasons & Ages'
+- 'oracle of seasons'
+- 'oracle of ages'
+https://www.youtube.com/watch?v=4JzDb3PZGEg:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=4Jzh0BThaaU:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=4MnzJjEuOUs:
+- 'Atelier Iris 3: Grand Phantasm'
+- 'Atelier Iris III: Grand Phantasm'
+https://www.youtube.com/watch?v=4RPbxVl6z5I:
+- Ms. Pac-Man Maze Madness
+https://www.youtube.com/watch?v=4Rh6wmLE8FU:
+- Kingdom Hearts II
+- Kingdom Hearts 2
+https://www.youtube.com/watch?v=4Ze5BfLk0J8:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=4a767iv9VaI:
+- 'Spyro: Year of the Dragon'
+https://www.youtube.com/watch?v=4axwWk4dfe8:
+- Battletoads & Double Dragon
+- battletoads
+- double dragon
+https://www.youtube.com/watch?v=4d2Wwxbsk64:
+- Dragon Ball Z Butouden 3
+- Dragon Ball Z Butouden III
+https://www.youtube.com/watch?v=4f6siAA3C9M:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=4fMd_2XeXLA:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=4h5FzzXKjLA:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=4hWT8nYhvN0:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=4i-qGSwyu5M:
+- Breath of Fire II
+- Breath of Fire 2
+https://www.youtube.com/watch?v=4uJBIxKB01E:
+- Vay
+https://www.youtube.com/watch?v=4ugpeNkSyMc:
+- Thunder Spirits
+https://www.youtube.com/watch?v=5-0KCJvfJZE:
+- Children of Mana
+https://www.youtube.com/watch?v=52f2DQl8eGE:
+- Mega Man & Bass
+- mega man and bass
+https://www.youtube.com/watch?v=554IOtmsavA:
+- Dark Void
+https://www.youtube.com/watch?v=56oPoX8sCcY:
+- 'The Legend of Zelda: Twilight Princess'
+- 'twilight princess'
+https://www.youtube.com/watch?v=57aCSLmg9hA:
+- The Green Lantern
+https://www.youtube.com/watch?v=5B46aBeR4zo:
+- MapleStory
+https://www.youtube.com/watch?v=5CLpmBIb4MM:
+- Summoner
+https://www.youtube.com/watch?v=5Em0e5SdYs0:
+- 'Mario & Luigi: Partners in Time'
+- 'mario and luigi: partners in time'
+https://www.youtube.com/watch?v=5FDigjKtluM:
+- NieR
+https://www.youtube.com/watch?v=5IUXyzqrZsw:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=5OLxWTdtOkU:
+- Extreme-G
+https://www.youtube.com/watch?v=5OZIrAW7aSY:
+- Way of the Samurai
+https://www.youtube.com/watch?v=5WSE5sLUTnk:
+- Ristar
+https://www.youtube.com/watch?v=5ZMI6Gu2aac:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=5a5EDaSasRU:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=5bTAdrq6leQ:
+- Castlevania
+https://www.youtube.com/watch?v=5gCAhdDAPHE:
+- Yoshi's Island
+https://www.youtube.com/watch?v=5hVRaTn_ogE:
+- BattleBlock Theater
+https://www.youtube.com/watch?v=5hc3R4Tso2k:
+- Shadow Hearts
+https://www.youtube.com/watch?v=5kmENsE8NHc:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=5lyXiD-OYXU:
+- Wild Arms
+https://www.youtube.com/watch?v=5maIQJ79hGM:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=5nJSvKpqXzM:
+- Legend of Mana
+https://www.youtube.com/watch?v=5niLxq7_yN4:
+- Devil May Cry 3
+- Devil May Cry III
+https://www.youtube.com/watch?v=5oGK9YN0Ux8:
+- Shadow Hearts
+https://www.youtube.com/watch?v=5pQMJEzNwtM:
+- Street Racer
+https://www.youtube.com/watch?v=5trQZ9u9xNM:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=5w_SgBImsGg:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=62HoIMZ8xAE:
+- Alundra
+https://www.youtube.com/watch?v=62_S0Sl02TM:
+- Alundra 2
+- Alundra II
+https://www.youtube.com/watch?v=66-rV8v6TNo:
+- Cool World
+https://www.youtube.com/watch?v=67nrJieFVI0:
+- 'World of Warcraft: Wrath of the Lich King'
+https://www.youtube.com/watch?v=69142JeBFXM:
+- Baten Kaitos Origins
+https://www.youtube.com/watch?v=6AZLmFaSpR0:
+- 'Castlevania: Lords of Shadow'
+https://www.youtube.com/watch?v=6AuCTNAJz_M:
+- Rollercoaster Tycoon 3
+- Rollercoaster Tycoon III
https://www.youtube.com/watch?v=6CMTXyExkeI:
-- final fantasy v
-- final fantasy 5
-https://www.youtube.com/watch?v=nRbROTdOgj0:
-- legend of zelda skyward sword
-- skyward sword
-https://www.youtube.com/watch?v=LFcH84oNU6s:
-- skies of arcadia
-https://www.youtube.com/watch?v=VEIWhy-urqM:
-- super mario galaxy
-https://www.youtube.com/watch?v=IT12DW2Fm9M:
-- final fantasy iv
-- final fantasy 4
-https://www.youtube.com/watch?v=UZbqrZJ9VA4:
-- mother3
-- mother 3
-https://www.youtube.com/watch?v=o_ayLF9vdls:
-- dragon age origins
-https://www.youtube.com/watch?v=eVVXNDv8rY0:
-- the elder scrolls v skyrim
-- elder scrolls v
-- elder scrolls 5
-- the elder scrolls 5 skyrim
-- skyrim
-https://www.youtube.com/watch?v=kzvZE4BY0hY:
-- fallout 4
-https://www.youtube.com/watch?v=VTsD2FjmLsw:
-- mass effect 2
-https://www.youtube.com/watch?v=800be1ZmGd0:
-- world of warcraft
-https://www.youtube.com/watch?v=SXKrsJZWqK0:
-- batman arkham city
-- arkham city
-https://www.youtube.com/watch?v=BLEBtvOhGnM:
-- god of war iii
-- god of war 3
-https://www.youtube.com/watch?v=rxgTlQLm4Xg:
-- gears of war 3
-https://www.youtube.com/watch?v=QiPon8lr48U:
-- metal gear solid 2
-https://www.youtube.com/watch?v=qDnaIfiH37w:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=6FdjTwtvKCE:
+- Bit.Trip Flux
+https://www.youtube.com/watch?v=6GWxoOc3TFI:
+- Super Mario Land
+https://www.youtube.com/watch?v=6GX_qN7hEEM:
+- Faxanadu
+https://www.youtube.com/watch?v=6GhseRvdAgs:
+- Tekken 5
+- Tekken V
+https://www.youtube.com/watch?v=6IadffCqEQw:
+- The Legend of Zelda
+https://www.youtube.com/watch?v=6JdMvEBtFSE:
+- 'Parasite Eve: The 3rd Birthday'
+https://www.youtube.com/watch?v=6JuO7v84BiY:
+- Pop'n Music 16 PARTY
+- Pop'n Music XVI PARTY
+https://www.youtube.com/watch?v=6MQRL7xws7w:
+- Wild Arms
+https://www.youtube.com/watch?v=6R8jGeVw-9Y:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=6TJWqX8i8-E:
+- 'Moon: Remix RPG Adventure'
+https://www.youtube.com/watch?v=6UWGh1A1fPw:
+- Dustforce
+https://www.youtube.com/watch?v=6VD_aVMOL1c:
+- Dark Cloud 2
+- Dark Cloud II
+https://www.youtube.com/watch?v=6XOEZIZMUl0:
+- 'SMT: Digital Devil Saga 2'
+- 'SMT: Digital Devil Saga II'
+https://www.youtube.com/watch?v=6ZiYK9U4TfE:
+- Dirt Trax FX
+https://www.youtube.com/watch?v=6_JLe4OxrbA:
+- Super Mario 64
+https://www.youtube.com/watch?v=6b77tr2Vu9U:
+- Pokemon
+https://www.youtube.com/watch?v=6fA_EQBPB94:
+- Super Metroid
+https://www.youtube.com/watch?v=6jp9d66QRz0:
+- Jazz Jackrabbit 2
+- Jazz Jackrabbit II
+https://www.youtube.com/watch?v=6kIE2xVJdTc:
+- Earthbound
+https://www.youtube.com/watch?v=6l3nVyGhbpE:
+- Extreme-G
+https://www.youtube.com/watch?v=6l8a_pzRcRI:
+- Blast Corps
+https://www.youtube.com/watch?v=6nJgdcnFtcQ:
+- Snake's Revenge
+https://www.youtube.com/watch?v=6paAqMXurdA:
+- Chrono Trigger
+https://www.youtube.com/watch?v=6s6Bc0QAyxU:
+- Ghosts 'n' Goblins
+https://www.youtube.com/watch?v=6uWBacK2RxI:
+- 'Mr. Nutz: Hoppin'' Mad'
+https://www.youtube.com/watch?v=6uo5ripzKwc:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=6xXHeaLmAcM:
+- Mario + Rabbids Kingdom Battle
+https://www.youtube.com/watch?v=70oTg2go0XU:
+- 3D Dot Game Heroes
+https://www.youtube.com/watch?v=718qcWPzvAY:
+- Super Paper Mario
+https://www.youtube.com/watch?v=72RLQGHxE08:
+- Zack & Wiki
+- zack and wiki
+https://www.youtube.com/watch?v=745hAPheACw:
+- Dark Cloud 2
+- Dark Cloud II
+https://www.youtube.com/watch?v=74cYr5ZLeko:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=763w2hsKUpk:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=77F1lLI5LZw:
+- Grandia
+https://www.youtube.com/watch?v=77Z3VDq_9_0:
+- Street Fighter II
+- Street Fighter 2
+https://www.youtube.com/watch?v=7DC2Qj2LKng:
+- Wild Arms
+https://www.youtube.com/watch?v=7DYL2blxWSA:
+- Gran Turismo
+https://www.youtube.com/watch?v=7Dwc0prm7z4:
+- Child of Eden
+https://www.youtube.com/watch?v=7F3KhzpImm4:
+- 'The Legend of Zelda: Twilight Princess'
+- 'twilight princess'
+https://www.youtube.com/watch?v=7FwtoHygavA:
+- Super Mario 3D Land
+https://www.youtube.com/watch?v=7HMGj_KUBzU:
+- Mega Man 6
+- Mega Man VI
+https://www.youtube.com/watch?v=7JIkz4g0dQc:
+- Mega Man 10
+https://www.youtube.com/watch?v=7JWi5dyzW2Q:
+- Dark Cloud 2
+- Dark Cloud II
+https://www.youtube.com/watch?v=7L3VJpMORxM:
+- Lost Odyssey
+https://www.youtube.com/watch?v=7MQFljss6Pc:
+- Red Dead Redemption
+https://www.youtube.com/watch?v=7MhWtz8Nv9Q:
+- The Last Remnant
+https://www.youtube.com/watch?v=7OHV_ByQIIw:
+- Plok
+https://www.youtube.com/watch?v=7RDRhAKsLHo:
+- Dragon Quest V
+- Dragon Quest 5
+https://www.youtube.com/watch?v=7X5-xwb6otQ:
+- Lady Stalker
+https://www.youtube.com/watch?v=7Y9ea3Ph7FI:
+- Unreal Tournament 2003 & 2004
+- unreal tournament 2003
+- unreal tournament 2004
+https://www.youtube.com/watch?v=7d8nmKL5hbU:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=7lHAHFl_3u0:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=7m2yOHjObCM:
+- Chrono Trigger
+https://www.youtube.com/watch?v=7rNgsqxnIuY:
+- Magic Johnson's Fast Break
+https://www.youtube.com/watch?v=7sb2q6JedKk:
+- Anodyne
+https://www.youtube.com/watch?v=7sc7R7jeOX0:
+- Sonic and the Black Knight
+https://www.youtube.com/watch?v=7u3tJbtAi_o:
+- Grounseed
+https://www.youtube.com/watch?v=7vpHPBE59HE:
+- Valkyria Chronicles
+https://www.youtube.com/watch?v=8-Q-UsqJ8iM:
+- Katamari Damacy
+https://www.youtube.com/watch?v=80YFKvaRou4:
+- Mass Effect
+https://www.youtube.com/watch?v=81-SoTxMmiI:
+- Deep Labyrinth
+https://www.youtube.com/watch?v=81dgZtXKMII:
+- 'Nintendo 3DS Guide: Louvre'
+https://www.youtube.com/watch?v=83p9uYd4peM:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=83xEzdYAmSg:
+- Oceanhorn
+https://www.youtube.com/watch?v=84NsPpkY4l0:
+- Live a Live
+https://www.youtube.com/watch?v=88VyZ4Lvd0c:
+- Wild Arms
+https://www.youtube.com/watch?v=8EaxiB6Yt5g:
+- Earthbound
+https://www.youtube.com/watch?v=8Fl6WlJ-Pms:
+- Parasite Eve
+https://www.youtube.com/watch?v=8IP_IsXL7b4:
+- Super Mario Kart
+https://www.youtube.com/watch?v=8IVlnImPqQA:
+- Unreal Tournament 2003 & 2004
+- unreal tournament 2003
+- unreal tournament 2004
+https://www.youtube.com/watch?v=8K35MD4ZNRU:
+- Kirby's Epic Yarn
+https://www.youtube.com/watch?v=8K8hCmRDbWc:
+- Blue Dragon
+https://www.youtube.com/watch?v=8KX9L6YkA78:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=8MRHV_Cf41E:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=8OFao351gwU:
+- Mega Man 3
+- Mega Man III
+https://www.youtube.com/watch?v=8RtLhXibDfA:
+- Yoshi's Island
+https://www.youtube.com/watch?v=8SJl4mELFMM:
+- 'Pokemon Mystery Dungeon: Explorers of Sky'
+https://www.youtube.com/watch?v=8ZjZXguqmKM:
+- The Smurfs
+https://www.youtube.com/watch?v=8_9Dc7USBhY:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=8ajBHjJyVDE:
+- 'The Legend of Zelda: A Link Between Worlds'
+- 'a link between worlds'
+https://www.youtube.com/watch?v=8bEtK6g4g_Y:
+- 'Dragon Ball Z: Super Butoden'
+https://www.youtube.com/watch?v=8eZRNAtq_ps:
+- 'Target: Renegade'
+https://www.youtube.com/watch?v=8gGv1TdQaMI:
+- Tomb Raider II
+- Tomb Raider 2
+https://www.youtube.com/watch?v=8hLQart9bsQ:
+- Shadowrun Returns
+https://www.youtube.com/watch?v=8hzjxWVQnxo:
+- Soma
+https://www.youtube.com/watch?v=8iBCg85y0K8:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=8kBBJQ_ySpI:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=8lmjoPgEWb4:
+- Wangan Midnight Maximum Tune 3
+- Wangan Midnight Maximum Tune III
+https://www.youtube.com/watch?v=8mcUQ8Iv6QA:
+- MapleStory
+https://www.youtube.com/watch?v=8pJ4Q7L9rBs:
+- NieR
+https://www.youtube.com/watch?v=8qNwJeuk4gY:
+- Mega Man X
+https://www.youtube.com/watch?v=8qy4-VeSnYk:
+- Secret of Mana
+https://www.youtube.com/watch?v=8tffqG3zRLQ:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=8urO2NlhdiU:
+- Halo 3 ODST
+- Halo III ODST
+https://www.youtube.com/watch?v=8x1E_1TY8ig:
+- Double Dragon Neon
+https://www.youtube.com/watch?v=8xWWLSlQPeI:
+- 'The Legend of Zelda: Wind Waker'
+- 'wind waker'
+https://www.youtube.com/watch?v=8zY_4-MBuIc:
+- 'Phoenix Wright: Ace Attorney'
+https://www.youtube.com/watch?v=93Fqrbd-9gI:
+- Opoona
+https://www.youtube.com/watch?v=93jNP6y_Az8:
+- Yoshi's New Island
+https://www.youtube.com/watch?v=96ro-5alCGo:
+- One Piece Grand Battle 2
+- One Piece Grand Battle II
+https://www.youtube.com/watch?v=99RVgsDs1W0:
+- 'The Legend of Zelda: Twilight Princess'
+- 'twilight princess'
+https://www.youtube.com/watch?v=9BF1JT8rNKI:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=9BgCJL71YIY:
+- Wild Arms 2
+- Wild Arms II
+https://www.youtube.com/watch?v=9FZ-12a3dTI:
+- Deus Ex
+https://www.youtube.com/watch?v=9GvO7CWsWEg:
+- Baten Kaitos
+https://www.youtube.com/watch?v=9QVLuksB-d8:
+- 'Pop''n Music 12: Iroha'
+- 'Pop''n Music XII: Iroha'
+https://www.youtube.com/watch?v=9VE72cRcQKk:
+- Super Runabout
+https://www.youtube.com/watch?v=9VyMkkI39xc:
+- Okami
+https://www.youtube.com/watch?v=9WlrcP2zcys:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=9YRGh-hQq5c:
+- Journey
+https://www.youtube.com/watch?v=9YY-v0pPRc8:
+- Environmental Station Alpha
+https://www.youtube.com/watch?v=9YoDuIZa8tE:
+- Lost Odyssey
+https://www.youtube.com/watch?v=9ZanHcT3wJI:
+- Contact
+https://www.youtube.com/watch?v=9_wYMNZYaA4:
+- Radiata Stories
+https://www.youtube.com/watch?v=9alsJe-gEts:
+- 'The Legend of Heroes: Trails in the Sky'
+https://www.youtube.com/watch?v=9cJe5v5lLKk:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=9heorR5vEvA:
+- Streets of Rage
+https://www.youtube.com/watch?v=9kkQaWcpRvI:
+- Secret of Mana
+https://www.youtube.com/watch?v=9oVbqhGBKac:
+- Castle in the Darkness
+https://www.youtube.com/watch?v=9rldISzBkjE:
+- Undertale
+https://www.youtube.com/watch?v=9sVb_cb7Skg:
+- Diablo II
+- Diablo 2
+https://www.youtube.com/watch?v=9sYfDXfMO0o:
+- Parasite Eve
+https://www.youtube.com/watch?v=9saTXWj78tY:
+- Katamari Damacy
+https://www.youtube.com/watch?v=9th-yImn9aA:
+- Baten Kaitos
+https://www.youtube.com/watch?v=9u3xNXai8D8:
+- Civilization IV
+- Civilization 4
+https://www.youtube.com/watch?v=9v8qNLnTxHU:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=9v_B9wv_qTw:
+- Tower of Heaven
+https://www.youtube.com/watch?v=9xy9Q-BLp48:
+- Legaia 2
+- Legaia II
+https://www.youtube.com/watch?v=A-AmRMWqcBk:
+- Stunt Race FX
+https://www.youtube.com/watch?v=A-dyJWsn_2Y:
+- Pokken Tournament
+https://www.youtube.com/watch?v=A1b4QO48AoA:
+- Hollow Knight
+https://www.youtube.com/watch?v=A2Mi7tkE5T0:
+- Secret of Mana
+https://www.youtube.com/watch?v=A3PE47hImMo:
+- Paladin's Quest II
+- Paladin's Quest 2
+https://www.youtube.com/watch?v=A4e_sQEMC8c:
+- Streets of Fury
+https://www.youtube.com/watch?v=A6Qolno2AQA:
+- Super Princess Peach
+https://www.youtube.com/watch?v=A9PXQSFWuRY:
+- Radiant Historia
+https://www.youtube.com/watch?v=ABYH2x7xaBo:
+- Faxanadu
+https://www.youtube.com/watch?v=AC58piv97eM:
+- 'The Binding of Isaac: Afterbirth'
+https://www.youtube.com/watch?v=AE0hhzASHwY:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=AGWVzDhDHMc:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=AISrz88SJNI:
+- Digital Devil Saga
+https://www.youtube.com/watch?v=AJX08k_VZv8:
+- 'Ace Combat 4: Shattered Skies'
+- 'Ace Combat IV: Shattered Skies'
+https://www.youtube.com/watch?v=AKfLOMirwho:
+- Earthbound
+https://www.youtube.com/watch?v=AN-NbukIjKw:
+- Super Mario 64
+https://www.youtube.com/watch?v=APW3ZX8FvvE:
+- 'Phoenix Wright: Ace Attorney'
+https://www.youtube.com/watch?v=AQMonx8SlXc:
+- Enthusia Professional Racing
+https://www.youtube.com/watch?v=ARQfmb30M14:
+- Bejeweled 3
+- Bejeweled III
+https://www.youtube.com/watch?v=ARTuLmKjA7g:
+- King of Fighters 2002 Unlimited Match
+https://www.youtube.com/watch?v=ASl7qClvqTE:
+- 'Roommania #203'
+- 'Roommania #CCIII'
+https://www.youtube.com/watch?v=AU_tnstiX9s:
+- 'Ecco the Dolphin: Defender of the Future'
+https://www.youtube.com/watch?v=AVvhihA9gRc:
+- Berserk
+https://www.youtube.com/watch?v=AW7oKCS8HjM:
+- Hotline Miami
+https://www.youtube.com/watch?v=AWB3tT7e3D8:
+- 'The Legend of Zelda: Spirit Tracks'
+- 'spirit tracks'
+https://www.youtube.com/watch?v=AbRWDpruNu4:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=AdI6nJ_sPKQ:
+- Super Stickman Golf 3
+- Super Stickman Golf III
+https://www.youtube.com/watch?v=Ag-O4VfJx6U:
+- Metal Gear Solid 2
+- Metal Gear Solid II
+https://www.youtube.com/watch?v=AkKMlbmq6mc:
+- Mass Effect 2
+- Mass Effect II
+https://www.youtube.com/watch?v=Al0XOLM9FPw:
+- Skullmonkeys
+https://www.youtube.com/watch?v=AmDE3fCW9gY:
+- Okamiden
+https://www.youtube.com/watch?v=AtXEw2NgXx8:
+- Final Fantasy XII
+- Final Fantasy 12
+https://www.youtube.com/watch?v=AuluLeMp1aA:
+- Majokko de Go Go
+https://www.youtube.com/watch?v=AvZjyCGUj-Q:
+- Final Fantasy Tactics A2
+https://www.youtube.com/watch?v=AvlfNZ685B8:
+- Chaos Legion
+https://www.youtube.com/watch?v=AxVhRs8QC1U:
+- Banjo-Kazooie
+https://www.youtube.com/watch?v=Az9XUAcErIQ:
+- Tomb Raider
+https://www.youtube.com/watch?v=AzlWTsBn8M8:
+- Tetris
+https://www.youtube.com/watch?v=B-L4jj9lRmE:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=B0nk276pUv8:
+- Shovel Knight
+https://www.youtube.com/watch?v=B1e6VdnjLuA:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=B2j3_kaReP4:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=B4JvKl7nvL0:
+- Grand Theft Auto IV
+- Grand Theft Auto 4
+https://www.youtube.com/watch?v=B8MpofvFtqY:
+- 'Mario & Luigi: Superstar Saga'
+- 'mario and luigi: superstar saga'
+https://www.youtube.com/watch?v=BCjRd3LfRkE:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=BDg0P_L57SU:
+- Lagoon
+https://www.youtube.com/watch?v=BKmv_mecn5g:
+- Super Mario Sunshine
+https://www.youtube.com/watch?v=BMpvrfwD7Hg:
+- Kirby's Epic Yarn
+https://www.youtube.com/watch?v=BQRKQ-CQ27U:
+- 3D Dot Game Heroes
+https://www.youtube.com/watch?v=BSVBfElvom8:
+- 'The Legend of Zelda: Ocarina of Time'
+- 'ocarina of time'
+https://www.youtube.com/watch?v=BVLMdQfxzo4:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=BZWiBxlBCbM:
+- Hollow Knight
+https://www.youtube.com/watch?v=B_QTkyu2Ssk:
+- Yoshi's Island
+https://www.youtube.com/watch?v=B_ed-ZF9yR0:
+- Ragnarok Online
+https://www.youtube.com/watch?v=Ba4J-4bUN0w:
+- Bomberman Hero
+https://www.youtube.com/watch?v=BdFLRkDRtP0:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=BdlkxaSEgB0:
+- Galactic Pinball
+https://www.youtube.com/watch?v=BfR5AmZcZ9g:
+- Kirby Super Star
+https://www.youtube.com/watch?v=BfVmj3QGQDw:
+- The Neverhood
+https://www.youtube.com/watch?v=BhfevIZsXo0:
+- Outlast
+https://www.youtube.com/watch?v=BimaIgvOa-A:
+- Paper Mario
+https://www.youtube.com/watch?v=Bj5bng0KRPk:
+- 'The Legend of Zelda: Ocarina of Time'
+- 'ocarina of time'
+https://www.youtube.com/watch?v=Bk_NDMKfiVE:
+- Chrono Cross
+https://www.youtube.com/watch?v=BkmbbZZOgKg:
+- Cheetahmen II
+- Cheetahmen 2
+https://www.youtube.com/watch?v=Bkmn35Okxfw:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=Bqvy5KIeQhI:
+- Legend of Grimrock II
+- Legend of Grimrock 2
+https://www.youtube.com/watch?v=BqxjLbpmUiU:
+- Krater
+https://www.youtube.com/watch?v=Bvw2H15HDlM:
+- 'Final Fantasy XI: Rise of the Zilart'
+- 'Final Fantasy 11: Rise of the Zilart'
+https://www.youtube.com/watch?v=BwpzdyCvqN0:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=BxYfQBNFVSw:
+- Mega Man 7
+- Mega Man VII
+https://www.youtube.com/watch?v=C-QGg9FGzj4:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=C31ciPeuuXU:
+- 'Golden Sun: Dark Dawn'
+https://www.youtube.com/watch?v=C3xhG7wRnf0:
+- Super Paper Mario
+https://www.youtube.com/watch?v=C4cD-7dOohU:
+- Valdis Story
+https://www.youtube.com/watch?v=C7NTTBm7fS8:
+- Mighty Switch Force! 2
+- Mighty Switch Force! II
+https://www.youtube.com/watch?v=C7r8sJbeOJc:
+- NeoTokyo
+https://www.youtube.com/watch?v=C8aVq5yQPD8:
+- Lode Runner 3-D
+- Lode Runner 3-500
+- Lode Runner III-D
+https://www.youtube.com/watch?v=CADHl-iZ_Kw:
+- 'The Legend of Zelda: A Link to the Past'
+- 'a link to the past'
+https://www.youtube.com/watch?v=CBm1yaZOrB0:
+- Enthusia Professional Racing
+https://www.youtube.com/watch?v=CD9A7myidl4:
+- No More Heroes 2
+- No More Heroes II
+https://www.youtube.com/watch?v=CEPnbBgjWdk:
+- 'Brothers: A Tale of Two Sons'
+https://www.youtube.com/watch?v=CHQ56GSPi2I:
+- 'Arc the Lad IV: Twilight of the Spirits'
+- 'Arc the Lad 4: Twilight of the Spirits'
+https://www.youtube.com/watch?v=CHd4iWEFARM:
+- Klonoa
+https://www.youtube.com/watch?v=CHlEPgi4Fro:
+- 'Ace Combat Zero: The Belkan War'
+https://www.youtube.com/watch?v=CHydNVrPpAQ:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=CLl8UR5vrMk:
+- Yakuza 0
+- 'Yakuza '
+https://www.youtube.com/watch?v=CNUgwyd2iIA:
+- Sonic the Hedgehog 3
+- Sonic the Hedgehog III
+https://www.youtube.com/watch?v=CP0TcAnHftc:
+- Attack of the Friday Monsters! A Tokyo Tale
+https://www.youtube.com/watch?v=CPKoMt4QKmw:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=CPbjTzqyr7o:
+- Last Bible III
+- Last Bible 3
+https://www.youtube.com/watch?v=CRmOTY1lhYs:
+- Mass Effect
+https://www.youtube.com/watch?v=CYjYCaqshjE:
+- No More Heroes 2
+- No More Heroes II
+https://www.youtube.com/watch?v=CYswIEEMIWw:
+- Sonic CD
+- Sonic 400
+https://www.youtube.com/watch?v=Ca4QJ_pDqpA:
+- 'Dragon Ball Z: The Legacy of Goku II'
+- 'Dragon Ball Z: The Legacy of Goku 2'
+https://www.youtube.com/watch?v=Car2R06WZcw:
+- 'The Legend of Zelda: Wind Waker'
+- 'wind waker'
+https://www.youtube.com/watch?v=CcKUWCm_yRs:
+- Cool Spot
+https://www.youtube.com/watch?v=CcovgBkMTmE:
+- Guild Wars 2
+- Guild Wars II
+https://www.youtube.com/watch?v=CfoiK5ADejI:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=CgtvppDEyeU:
+- Shenmue
+https://www.youtube.com/watch?v=CkPqtTcBXTA:
+- Bully
+https://www.youtube.com/watch?v=CksHdwwG1yw:
+- Crystalis
+https://www.youtube.com/watch?v=Cm9HjyPkQbg:
+- Soul Edge
+https://www.youtube.com/watch?v=CmMswzZkMYY:
+- Super Metroid
+https://www.youtube.com/watch?v=Cnn9BW3OpJs:
+- 'Roommania #203'
+- 'Roommania #CCIII'
+https://www.youtube.com/watch?v=CoQrXSc_PPw:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=Cp0UTM-IzjM:
+- 'Castlevania: Lament of Innocence'
+https://www.youtube.com/watch?v=CpThkLTJjUQ:
+- Turok 2 (Gameboy)
+- Turok II
+- turok 2
+https://www.youtube.com/watch?v=CqAXFK8U32U:
+- McKids
+https://www.youtube.com/watch?v=CrjvBd9q4A0:
+- Demon's Souls
+https://www.youtube.com/watch?v=Ct54E7GryFQ:
+- Persona 4
+- Persona IV
+https://www.youtube.com/watch?v=CuQJ-qh9s_s:
+- Tekken 2
+- Tekken II
+https://www.youtube.com/watch?v=CumPOZtsxkU:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=Cw4IHZT7guM:
+- Final Fantasy XI
+- Final Fantasy 11
+https://www.youtube.com/watch?v=CwI39pDPlgc:
+- Shadow Madness
+https://www.youtube.com/watch?v=CzZab0uEd1w:
+- 'Tintin: Prisoners of the Sun'
+https://www.youtube.com/watch?v=D0uYrKpNE2o:
+- Valkyrie Profile
+https://www.youtube.com/watch?v=D2nWuGoRU0s:
+- 'Ecco the Dolphin: Defender of the Future'
+https://www.youtube.com/watch?v=D30VHuqhXm8:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=D3zfoec6tiw:
+- NieR
+https://www.youtube.com/watch?v=DFKoFzNfQdA:
+- Secret of Mana
+https://www.youtube.com/watch?v=DIyhbwBfOwE:
+- Tekken 4
+- Tekken IV
+https://www.youtube.com/watch?v=DKbzLuiop80:
+- Shin Megami Tensei Nocturne
+https://www.youtube.com/watch?v=DLqos66n3Qo:
+- Mega Turrican
+https://www.youtube.com/watch?v=DPO2XhA5F3Q:
+- Mana Khemia
+https://www.youtube.com/watch?v=DS825tbc9Ts:
+- Phantasy Star Online
+https://www.youtube.com/watch?v=DSOvrM20tMA:
+- Wild Arms
+https://www.youtube.com/watch?v=DTqp7jUBoA8:
+- Mega Man 3
+- Mega Man III
+https://www.youtube.com/watch?v=DTzf-vahsdI:
+- 'The Legend of Zelda: Breath of the Wild'
+- 'breath of the wild'
+https://www.youtube.com/watch?v=DW-tMwk3t04:
+- Grounseed
+https://www.youtube.com/watch?v=DWXXhLbqYOI:
+- Mario Kart 64
+https://www.youtube.com/watch?v=DY0L5o9y-YA:
+- Paladin's Quest
+https://www.youtube.com/watch?v=DY_Tz7UAeAY:
+- Darksiders II
+- Darksiders 2
+https://www.youtube.com/watch?v=DZQ1P_oafJ0:
+- Eternal Champions
+https://www.youtube.com/watch?v=DZaltYb0hjU:
+- Western Lords
+https://www.youtube.com/watch?v=DbQdgOVOjSU:
+- Super Mario RPG
+https://www.youtube.com/watch?v=DeqecCzDWhQ:
+- Streets of Rage 2
+- Streets of Rage II
+https://www.youtube.com/watch?v=Dhd4jJw8VtE:
+- 'Phoenix Wright: Ace Attorney'
+https://www.youtube.com/watch?v=DjKfEQD892I:
+- To the Moon
+https://www.youtube.com/watch?v=DlbCke52EBQ:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=DlcwDU0i6Mw:
+- Tribes 2
+- Tribes II
+https://www.youtube.com/watch?v=DmaFexLIh4s:
+- El Shaddai
+https://www.youtube.com/watch?v=DmpP-RMFNHo:
+- 'The Elder Scrolls III: Morrowind'
+- 'The Elder Scrolls 3: Morrowind'
+- Morrowind
+https://www.youtube.com/watch?v=DoQekfFkXvI:
+- Super Mario Land
+https://www.youtube.com/watch?v=Dr95nRD7vAo:
+- FTL
+https://www.youtube.com/watch?v=DxEl2p9GPnY:
+- The Lost Vikings
+https://www.youtube.com/watch?v=DzXQKut6Ih4:
+- 'Castlevania: Dracula X'
+https://www.youtube.com/watch?v=E3PKlQUYNTw:
+- Okamiden
+https://www.youtube.com/watch?v=E3Po0o6zoJY:
+- 'TrackMania 2: Stadium'
+- 'TrackMania II: Stadium'
+https://www.youtube.com/watch?v=E5K6la0Fzuw:
+- Driver
+https://www.youtube.com/watch?v=E99qxCMb05g:
+- VVVVVV
+https://www.youtube.com/watch?v=ECP710r6JCM:
+- Super Smash Bros. Wii U / 3DS
- super smash bros wii u
+- super smash bros 3ds
- super smash bros. wii u
-- super smash brothers wii u
-- super smash bros wiiu
-- super smash bros. wiiu
-- super smash brothers wiiu
-https://www.youtube.com/watch?v=_Uzlm2MaCWw:
-- mega man maverick hunter x
-- megaman maverick hunter x
-- maverick hunter x
-https://www.youtube.com/watch?v=-8wo0KBQ3oI:
-- doom
-https://www.youtube.com/watch?v=TN36CetQw6I:
-- super smash bros brawl
-- super smash bros. brawl
-- super smash brothers brawl
-https://www.youtube.com/watch?v=01IEjvD5lss:
-- guilty gear
-https://www.youtube.com/watch?v=VXX4Ft1I0Dw:
-- dynasty warriors 6
-https://www.youtube.com/watch?v=liRMh4LzQQU:
-- doom 2016
-- doom
-https://www.youtube.com/watch?v=ouw3jLAUXWE:
-- devil may cry 3
-https://www.youtube.com/watch?v=B_MW65XxS7s:
-- final fantasy vii
-- final fantasy 7
-https://www.youtube.com/watch?v=viM0-3PXef0:
-- the witcher 3
-- witcher 3
-https://www.youtube.com/watch?v=WQYN2P3E06s:
-- civilization vi
-- civilization 6
-https://www.youtube.com/watch?v=qOMQxVtbkik:
-- guild wars 2
-- guild wars two
-https://www.youtube.com/watch?v=WwHrQdC02FY:
-- final fantasy vi
-- final fantasy 6
-https://www.youtube.com/watch?v=2_wkJ377LzU:
-- journey
-https://www.youtube.com/watch?v=IJiHDmyhE1A:
-- civilization iv
-- civilization 4
-https://www.youtube.com/watch?v=kN_LvY97Rco:
-- ori and the blind forest
-https://www.youtube.com/watch?v=TO7UI0WIqVw:
-- super smash bros brawl
-- super smash bros. brawl
-- super smash brothers brawl
-https://www.youtube.com/watch?v=s9XljBWGrRQ:
-- kingdom hearts
-https://www.youtube.com/watch?v=xkolWbZdGbM:
-- shenmue
-https://www.youtube.com/watch?v=h-0G_FI61a8:
-- final fantasy x
-- final fantasy 10
-https://www.youtube.com/watch?v=do5NTPLMqXQ:
-- fire emblem fates
-https://www.youtube.com/watch?v=eFVj0Z6ahcI:
-- persona 5
-- persona five
-https://www.youtube.com/watch?v=PhciLj5VzOk:
-- super mario odyssey
-https://www.youtube.com/watch?v=GBPbJyxqHV0:
-- super mario 64
-- mario 64
-https://www.youtube.com/watch?v=wRWq53IFXVQ:
-- the legend of zelda the wind waker
-- legend of zelda the wind waker
-- the legend of zelda wind waker
-- legend of zelda wind waker
+- super smash bros. 3ds
+https://www.youtube.com/watch?v=EDmsNVWZIws:
+- Dragon Quest
+https://www.youtube.com/watch?v=EF7QwcRAwac:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=EF_lbrpdRQo:
+- Contact
+https://www.youtube.com/watch?v=EHAbZoBjQEw:
+- Secret of Evermore
+https://www.youtube.com/watch?v=EHRfd2EQ_Do:
+- Persona 4
+- Persona IV
+https://www.youtube.com/watch?v=EL_jBUYPi88:
+- Journey to Silius
+https://www.youtube.com/watch?v=ELqpqweytFc:
+- Metroid Prime
+https://www.youtube.com/watch?v=ELyz549E_f4:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=ENStkWiosK4:
+- Kid Icarus
+https://www.youtube.com/watch?v=EQjT6103nLg:
+- Senko no Ronde (Wartech)
+- Wartech
+- senko no ronde
+https://www.youtube.com/watch?v=ERUnY6EIsn8:
+- Snake Pass
+https://www.youtube.com/watch?v=ERohLbXvzVQ:
+- Z-Out
+https://www.youtube.com/watch?v=EVo5O3hKVvo:
+- Mega Turrican
+https://www.youtube.com/watch?v=EX5V_PWI3yM:
+- Kingdom Hearts II
+- Kingdom Hearts 2
+https://www.youtube.com/watch?v=EcUxGQkLj2c:
+- Final Fantasy III DS
+- Final Fantasy 3 DS
+https://www.youtube.com/watch?v=EdkkgkEu_NQ:
+- The Smurfs' Nightmare
+https://www.youtube.com/watch?v=EeGhYL_8wtg:
+- Phantasy Star Portable 2
+- Phantasy Star Portable II
+https://www.youtube.com/watch?v=EeXlQNJnjj0:
+- 'E.V.O: Search for Eden'
+https://www.youtube.com/watch?v=Ef3xB2OP8l8:
+- Diddy Kong Racing
+https://www.youtube.com/watch?v=Ef5pp7mt1lA:
+- 'Animal Crossing: Wild World'
+https://www.youtube.com/watch?v=Ekiz0YMNp7A:
+- 'Romancing SaGa: Minstrel Song'
+https://www.youtube.com/watch?v=ElSUKQOF3d4:
+- Elebits
+https://www.youtube.com/watch?v=EmD9WnLYR5I:
+- Super Mario Land 2
+- Super Mario Land II
+https://www.youtube.com/watch?v=EohQnQbQQWk:
+- Super Mario Kart
+https://www.youtube.com/watch?v=EpbcztAybh0:
+- Super Mario Maker
+https://www.youtube.com/watch?v=ErlBKXnOHiQ:
+- Dragon Quest IV
+- Dragon Quest 4
+https://www.youtube.com/watch?v=Ev1MRskhUmA:
+- Dragon Quest VI
+- Dragon Quest 6
+https://www.youtube.com/watch?v=EvRTjXbb8iw:
+- Unlimited Saga
+https://www.youtube.com/watch?v=F0cuCvhbF9k:
+- 'The Legend of Zelda: Breath of the Wild'
+- 'breath of the wild'
+https://www.youtube.com/watch?v=F2-bROS64aI:
+- Mega Man Soccer
+https://www.youtube.com/watch?v=F3hz58VDWs8:
+- Chrono Trigger
+https://www.youtube.com/watch?v=F41PKROUnhA:
+- F-Zero GX
+https://www.youtube.com/watch?v=F4QbiPftlEE:
+- Dustforce
+https://www.youtube.com/watch?v=F6sjYt6EJVw:
+- Journey to Silius
+https://www.youtube.com/watch?v=F7p1agUovzs:
+- 'Silent Hill: Shattered Memories'
+https://www.youtube.com/watch?v=F8U5nxhxYf0:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=FCB7Dhm8RuY:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=FDAMxLKY2EY:
+- Ogre Battle
+https://www.youtube.com/watch?v=FE59rlKJRPs:
+- Rogue Galaxy
+https://www.youtube.com/watch?v=FEpAD0RQ66w:
+- Shinobi III
+- Shinobi 3
+https://www.youtube.com/watch?v=FGtk_eaVnxQ:
+- Minecraft
+https://www.youtube.com/watch?v=FJ976LQSY-k:
+- Western Lords
+https://www.youtube.com/watch?v=FJJPaBA7264:
+- 'Castlevania: Aria of Sorrow'
+https://www.youtube.com/watch?v=FKqTtZXIid4:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=FKtnlUcGVvM:
+- Star Ocean 3
+- Star Ocean III
+https://www.youtube.com/watch?v=FPjueitq904:
+- "Einh\xC3\xA4nder"
+https://www.youtube.com/watch?v=FQioui9YeiI:
+- Ragnarok Online
+https://www.youtube.com/watch?v=FR-TFI71s6w:
+- Super Monkey Ball 2
+- Super Monkey Ball II
+https://www.youtube.com/watch?v=FSfRr0LriBE:
+- Hearthstone
+https://www.youtube.com/watch?v=FWSwAKVS-IA:
+- 'Disaster: Day of Crisis'
+https://www.youtube.com/watch?v=FYSt4qX85oA:
+- 'Star Ocean 3: Till the End of Time'
+- 'Star Ocean III: Till the End of Time'
+https://www.youtube.com/watch?v=Fa9-pSBa9Cg:
+- Gran Turismo 5
+- Gran Turismo V
+https://www.youtube.com/watch?v=Ff_r_6N8PII:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=FgQaK7TGjX4:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=FjFx5oO-riE:
+- 'Castlevania: Order of Ecclesia'
+https://www.youtube.com/watch?v=FkMm63VAHps:
+- Gunlord
+https://www.youtube.com/watch?v=FnogL42dEL4:
+- 'Command & Conquer: Red Alert'
+- 'command and conquer: red alert'
+https://www.youtube.com/watch?v=FqrNEjtl2FI:
+- Twinsen's Odyssey
+https://www.youtube.com/watch?v=FrhLXDBP-2Q:
+- DuckTales
+https://www.youtube.com/watch?v=Fs9FhHHQKwE:
+- Chrono Cross
+https://www.youtube.com/watch?v=Ft-qnOD77V4:
+- Doom
+https://www.youtube.com/watch?v=G0YMlSu1DeA:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=G4g1SH2tEV0:
+- Aliens Incursion
+https://www.youtube.com/watch?v=GAVePrZeGTc:
+- SaGa Frontier
+https://www.youtube.com/watch?v=GBYsdw4Vwx8:
+- Silent Hill 2
+- Silent Hill II
+https://www.youtube.com/watch?v=GC99a8VRsIw:
+- Earthbound
+https://www.youtube.com/watch?v=GCiOjOMciOI:
+- LocoRoco
+https://www.youtube.com/watch?v=GEuRzRW86bI:
+- Musashi Samurai Legend
+https://www.youtube.com/watch?v=GIhf0yU94q4:
+- Mr. Nutz
+https://www.youtube.com/watch?v=GIuBC4GU6C8:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=GKFwm2NSJdc:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=GKKhBT0A1pE:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=GLPT6H4On4o:
+- Metroid Fusion
+https://www.youtube.com/watch?v=GM6lrZw9Fdg:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=GNqR9kGLAeA:
+- Croc 2
+- Croc II
+https://www.youtube.com/watch?v=GQND5Y7_pXc:
+- Sprint Vector
+https://www.youtube.com/watch?v=GRU4yR3FQww:
+- Final Fantasy XIII
+- Final Fantasy 13
+https://www.youtube.com/watch?v=GWaooxrlseo:
+- Mega Man X3
+https://www.youtube.com/watch?v=G_80PQ543rM:
+- DuckTales
+https://www.youtube.com/watch?v=GaOT77kUTD8:
+- Jack Bros.
+https://www.youtube.com/watch?v=GdOFuA2qpG4:
+- Mega Man Battle Network 3
+- Mega Man Battle Network III
+https://www.youtube.com/watch?v=GhFffRvPfig:
+- DuckTales
+https://www.youtube.com/watch?v=Gibt8OLA__M:
+- Pilotwings 64
+https://www.youtube.com/watch?v=GnwlAOp6tfI:
+- L.A. Noire
+- 50.A. Noire
+https://www.youtube.com/watch?v=Gt-QIiYkAOU:
+- Galactic Pinball
+https://www.youtube.com/watch?v=GtZNgj5OUCM:
+- 'Pokemon Mystery Dungeon: Explorers of Sky'
+https://www.youtube.com/watch?v=GyiSanVotOM:
+- Dark Souls II
+- Dark Souls 2
+https://www.youtube.com/watch?v=GyuReqv2Rnc:
+- ActRaiser
+https://www.youtube.com/watch?v=GzBsFGh6zoc:
+- Lufia
+https://www.youtube.com/watch?v=Gza34GxrZlk:
+- Secret of the Stars
+https://www.youtube.com/watch?v=H-CwNdgHcDw:
+- Lagoon
+https://www.youtube.com/watch?v=H1B52TSCl_A:
+- Super Mario 64
+https://www.youtube.com/watch?v=H2-rCJmEDIQ:
+- Fez
+https://www.youtube.com/watch?v=H3fQtYVwpx4:
+- Croc 2
+- Croc II
+https://www.youtube.com/watch?v=H4hryHF3kTw:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=HCHsMo4BOJ0:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=HCi2-HtFh78:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=HFKtYCcMWT4:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=HGMjMDE-gAY:
+- Terranigma
+https://www.youtube.com/watch?v=HHun7iYtbFU:
+- Mega Man 6
+- Mega Man VI
+https://www.youtube.com/watch?v=HIKOSJh9_5k:
+- Treasure Hunter G
+https://www.youtube.com/watch?v=HImC0q17Pk0:
+- 'FTL: Faster Than Light'
+https://www.youtube.com/watch?v=HLl-oMBhiPc:
+- 'Sailor Moon RPG: Another Story'
+https://www.youtube.com/watch?v=HNPqugUrdEM:
+- 'Castlevania: Lament of Innocence'
+https://www.youtube.com/watch?v=HO0rvkOPQww:
+- Guardian's Crusade
+https://www.youtube.com/watch?v=HRAnMmwuLx4:
+- Radiant Historia
+https://www.youtube.com/watch?v=HSWAPWjg5AM:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=HTo_H7376Rs:
+- Dark Souls II
+- Dark Souls 2
+https://www.youtube.com/watch?v=HUpDqe4s4do:
+- 'Lunar: The Silver Star'
+https://www.youtube.com/watch?v=HUzLO2GpPv4:
+- Castlevania 64
+https://www.youtube.com/watch?v=HW5WcFpYDc4:
+- 'Mega Man Battle Network 5: Double Team'
+- 'Mega Man Battle Network V: Double Team'
+https://www.youtube.com/watch?v=HXxA7QJTycA:
+- Mario Kart Wii
+https://www.youtube.com/watch?v=HZ9O1Gh58vI:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=H_rMLATTMws:
+- Illusion of Gaia
+https://www.youtube.com/watch?v=HaRmFcPG7o8:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=Hbw3ZVY7qGc:
+- Scott Pilgrim vs the World
+https://www.youtube.com/watch?v=He7jFaamHHk:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=HeirTA9Y9i0:
+- Maken X
+https://www.youtube.com/watch?v=HijQBbE0WiQ:
+- Heroes of Might and Magic III
+- Heroes of Might and Magic 3
+https://www.youtube.com/watch?v=HmOUI30QqiE:
+- Streets of Rage 2
+- Streets of Rage II
+https://www.youtube.com/watch?v=HneWfB9jsHk:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=Ho2TE9ZfkgI:
+- Battletoads (Arcade)
+- battletoads
+https://www.youtube.com/watch?v=HpecW3jSJvQ:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=Hro03nOyUuI:
+- Ecco the Dolphin (Sega CD)
+- Ecco the Dolphin
+https://www.youtube.com/watch?v=HtJPpVCuYGQ:
+- 'Chuck Rock II: Son of Chuck'
+- 'Chuck Rock 2: Son of Chuck'
+https://www.youtube.com/watch?v=HvnAkAQK82E:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=HvyPtN7_jNk:
+- F-Zero GX
+https://www.youtube.com/watch?v=HwBOvdH38l0:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=HyWy1vzcqGE:
+- Boom Blox
+https://www.youtube.com/watch?v=I-_yzFMnclM:
+- 'Lufia: The Legend Returns'
+https://www.youtube.com/watch?v=I0FNN-t4pRU:
+- Earthbound
+https://www.youtube.com/watch?v=I0rfWwuyHFg:
+- Time Trax
+https://www.youtube.com/watch?v=I1USJ16xqw4:
+- Disney's Aladdin
+https://www.youtube.com/watch?v=I2LzT-9KtNA:
+- The Oregon Trail
+https://www.youtube.com/watch?v=I4b8wCqmQfE:
+- Phantasy Star Online Episode III
+- Phantasy Star Online Episode 3
+https://www.youtube.com/watch?v=I4gMnPkOQe8:
+- Earthbound
+https://www.youtube.com/watch?v=I5GznpBjHE4:
+- Soul Blazer
+https://www.youtube.com/watch?v=I8ij2RGGBtc:
+- Mario Sports Mix
+https://www.youtube.com/watch?v=I8zZaUvkIFY:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=ICOotKB_MUc:
+- Top Gear
+https://www.youtube.com/watch?v=ICdhgaXXor4:
+- Mass Effect 3
+- Mass Effect III
+https://www.youtube.com/watch?v=IDUGJ22OWLE:
+- Front Mission 1st
+https://www.youtube.com/watch?v=IE3FTu_ppko:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=IEMaS33Wcd8:
+- Shovel Knight
+https://www.youtube.com/watch?v=IEf1ALD_TCA:
+- Bully
+https://www.youtube.com/watch?v=IQDiMzoTMH4:
+- 'World of Warcraft: Wrath of the Lich King'
+https://www.youtube.com/watch?v=IS-bZp4WW4w:
+- Crusader of Centy
+https://www.youtube.com/watch?v=ITQVlvGsSDA:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=ITijTBoqJpc:
+- 'Final Fantasy Fables: Chocobo''s Dungeon'
+https://www.youtube.com/watch?v=IUAZtA-hHsw:
+- SaGa Frontier II
+- SaGa Frontier 2
+https://www.youtube.com/watch?v=IVCQ-kau7gs:
+- Shatterhand
+https://www.youtube.com/watch?v=IWoCTYqBOIE:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=IXU7Jhi6jZ8:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=IY7hfsfPh84:
+- Radiata Stories
+https://www.youtube.com/watch?v=IYGLnkSrA50:
+- Super Paper Mario
+https://www.youtube.com/watch?v=Ia1BEcALLX0:
+- Radiata Stories
+https://www.youtube.com/watch?v=IbBmFShDBzs:
+- Secret of Mana
+https://www.youtube.com/watch?v=Ie1zB5PHwEw:
+- Contra
+https://www.youtube.com/watch?v=IgPtGSdLliQ:
+- Chrono Trigger
+https://www.youtube.com/watch?v=IjZaRBbmVUc:
+- Bastion
+https://www.youtube.com/watch?v=ImdjNeH310w:
+- Ragnarok Online II
+- Ragnarok Online 2
+https://www.youtube.com/watch?v=IrLs8cW3sIc:
+- 'The Legend of Zelda: Wind Waker'
+- wind waker
+https://www.youtube.com/watch?v=Ir_3DdPZeSg:
+- 'Far Cry 3: Blood Dragon'
+- 'Far Cry III: Blood Dragon'
+https://www.youtube.com/watch?v=Is_yOYLMlHY:
+- "We \xE2\u2122\xA5 Katamari"
+https://www.youtube.com/watch?v=Iss6CCi3zNk:
+- Earthbound
+https://www.youtube.com/watch?v=Iu4MCoIyV94:
+- Motorhead
+https://www.youtube.com/watch?v=IwIt4zlHSWM:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=IyAs15CjGXU:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=J-zD9QjtRNo:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=J1x1Ao6CxyA:
+- Double Dragon II
+- Double Dragon 2
+https://www.youtube.com/watch?v=J323aFuwx64:
+- Super Mario Bros 3
+- Super Mario Bros III
+https://www.youtube.com/watch?v=J4EE4hRA9eU:
+- Lost Odyssey
+https://www.youtube.com/watch?v=J67nkzoJ_2M:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=J6Beh5YUWdI:
+- Wario World
+https://www.youtube.com/watch?v=JA_VeKxyfiU:
+- Golden Sun
+https://www.youtube.com/watch?v=JCqSHvyY_2I:
+- Secret of Evermore
+https://www.youtube.com/watch?v=JE1hhd0E-_I:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=JF7ucc5IH_Y:
+- Mass Effect
+https://www.youtube.com/watch?v=JFadABMZnYM:
+- Ragnarok Online
+https://www.youtube.com/watch?v=JGQ_Z0W43D4:
+- Secret of Evermore
+https://www.youtube.com/watch?v=JHrGsxoZumY:
+- Soukaigi
+https://www.youtube.com/watch?v=JKVUavdztAg:
+- Shovel Knight
+https://www.youtube.com/watch?v=JOFsATsPiH0:
+- Deus Ex
+https://www.youtube.com/watch?v=JRKOBmaENoE:
+- Spanky's Quest
+https://www.youtube.com/watch?v=JS8vCLXX5Pg:
+- Panzer Dragoon Saga
+https://www.youtube.com/watch?v=JV8qMsWKTvk:
+- Legaia 2
+- Legaia II
+https://www.youtube.com/watch?v=JWMtsksJtYw:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=JXtWCWeM6uI:
+- Animal Crossing
+https://www.youtube.com/watch?v=J_cTMwAZil0:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=Jb83GX7k_08:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=Je3YoGKPC_o:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=Jg5M1meS6wI:
+- Metal Gear Solid
+https://www.youtube.com/watch?v=JgGPRcUgGNk:
+- Ace Combat 6
+- Ace Combat VI
+https://www.youtube.com/watch?v=Jgm24MNQigg:
+- Parasite Eve II
+- Parasite Eve 2
+https://www.youtube.com/watch?v=JhDblgtqx5o:
+- Arumana no Kiseki
+https://www.youtube.com/watch?v=Jig-PUAk-l0:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=JkEt-a3ro1U:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=JlGnZvt5OBE:
+- Ittle Dew
+https://www.youtube.com/watch?v=Jokz0rBmE7M:
+- ZombiU
+https://www.youtube.com/watch?v=Jq949CcPxnM:
+- Super Valis IV
+- Super Valis 4
+https://www.youtube.com/watch?v=JrlGy3ozlDA:
+- Deep Fear
+https://www.youtube.com/watch?v=JsjTpjxb9XU:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=JvGhaOX-aOo:
+- Mega Man & Bass
+- mega man and bass
+https://www.youtube.com/watch?v=JvMsfqT9KB8:
+- Hotline Miami
+https://www.youtube.com/watch?v=JwSV7nP5wcs:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=JxhYFSN_xQY:
+- Musashi Samurai Legend
+https://www.youtube.com/watch?v=Jz2sxbuN3gM:
+- 'Moon: Remix RPG Adventure'
+https://www.youtube.com/watch?v=JzPKClyQ1rQ:
+- Persona 3 Portable
+- Persona III Portable
+https://www.youtube.com/watch?v=K2fx7bngK80:
+- Thumper
+https://www.youtube.com/watch?v=K5AOu1d79WA:
+- 'Ecco the Dolphin: Defender of the Future'
+https://www.youtube.com/watch?v=KAHuWEfue8U:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=KB0Yxdtig90:
+- 'Hitman 2: Silent Assassin'
+- 'Hitman II: Silent Assassin'
+https://www.youtube.com/watch?v=KDVUlqp8aFM:
+- Earthworm Jim
+https://www.youtube.com/watch?v=KI6ZwWinXNM:
+- 'Digimon Story: Cyber Sleuth'
+https://www.youtube.com/watch?v=KTHBvQKkibA:
+- The 7th Saga
+https://www.youtube.com/watch?v=KULCV3TgyQk:
+- Breath of Fire
+https://www.youtube.com/watch?v=KWH19AGkFT0:
+- Dark Cloud
+https://www.youtube.com/watch?v=KWIbZ_4k3lE:
+- Final Fantasy III
+- Final Fantasy 3
+https://www.youtube.com/watch?v=KWRoyFQ1Sj4:
+- Persona 5
+- Persona V
+https://www.youtube.com/watch?v=KX57tzysYQc:
+- Metal Gear 2
+- Metal Gear II
+https://www.youtube.com/watch?v=KYfK61zxads:
+- Angry Video Game Nerd Adventures
+https://www.youtube.com/watch?v=KZA1PegcwIg:
+- Goldeneye
+https://www.youtube.com/watch?v=KZyPC4VPWCY:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=K_jigRSuN-g:
+- MediEvil
+https://www.youtube.com/watch?v=Kc7UynA9WVk:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=KgCLAXQow3w:
+- Ghouls 'n' Ghosts
+https://www.youtube.com/watch?v=KiGfjOLF_j0:
+- Earthbound
+https://www.youtube.com/watch?v=Kk0QDbYvtAQ:
+- Arcana
+https://www.youtube.com/watch?v=Km-cCxquP-s:
+- Yoshi's Island
+https://www.youtube.com/watch?v=KnTyM5OmRAM:
+- 'Mario & Luigi: Partners in Time'
+- 'mario and luigi: partners in time'
+https://www.youtube.com/watch?v=KnoUxId8yUQ:
+- Jak & Daxter
+- jak and daxter
+https://www.youtube.com/watch?v=KoPF_wOrQ6A:
+- 'Tales from Space: Mutant Blobs Attack'
+https://www.youtube.com/watch?v=Kr5mloai1B0:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=KrvdivSD98k:
+- Sonic the Hedgehog 3
+- Sonic the Hedgehog III
+https://www.youtube.com/watch?v=Ks9ZCaUNKx4:
+- Quake II
+- Quake 2
+https://www.youtube.com/watch?v=L5t48bbzRDs:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=L8TEsGhBOfI:
+- The Binding of Isaac
+https://www.youtube.com/watch?v=L9Uft-9CV4g:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=L9e6Pye7p5A:
+- Mystical Ninja Starring Goemon
+https://www.youtube.com/watch?v=LAHKscXvt3Q:
+- Space Harrier
+https://www.youtube.com/watch?v=LD4OAYQx1-I:
+- Metal Gear Solid 4
+- Metal Gear Solid IV
+https://www.youtube.com/watch?v=LDvKwSVuUGA:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=LGLW3qgiiB8:
+- "We \xE2\u2122\xA5 Katamari"
+https://www.youtube.com/watch?v=LPO5yrMSMEw:
+- Ridge Racers
+https://www.youtube.com/watch?v=LQ0uDk5i_s0:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=LQxlUTTrKWE:
+- 'Assassin''s Creed III: The Tyranny of King Washington'
+- 'Assassin''s Creed 3: The Tyranny of King Washington'
+https://www.youtube.com/watch?v=LSFho-sCOp0:
+- Grandia
+https://www.youtube.com/watch?v=LScvuN6-ZWo:
+- Battletoads & Double Dragon
+- battletoads
+- double dragon
+https://www.youtube.com/watch?v=LSfbb3WHClE:
+- No More Heroes
+https://www.youtube.com/watch?v=LTWbJDROe7A:
+- Xenoblade Chronicles X
+- Xenoblade Chronicles 10
+https://www.youtube.com/watch?v=LUjxPj3al5U:
+- Blue Dragon
+https://www.youtube.com/watch?v=LXuXWMV2hW4:
+- Metroid AM2R
+https://www.youtube.com/watch?v=LYiwMd5y78E:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=LcFX7lFjfqA:
+- Shin Megami Tensei IV
+- Shin Megami Tensei 4
+https://www.youtube.com/watch?v=LdIlCX2iOa0:
+- Antichamber
+https://www.youtube.com/watch?v=Lj8ouSLvqzU:
+- Megalomachia 2
+- Megalomachia II
+https://www.youtube.com/watch?v=LkRfePyfoj4:
+- Senko no Ronde (Wartech)
+- wartech
+- senko no ronde
+https://www.youtube.com/watch?v=LlokRNcURKM:
+- The Smurfs' Nightmare
+https://www.youtube.com/watch?v=LpO2ar64UGE:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=LpxUHj-a_UI:
+- Michael Jackson's Moonwalker
+https://www.youtube.com/watch?v=Luko2A5gNpk:
+- Metroid Prime
+https://www.youtube.com/watch?v=Lx906iVIZSE:
+- 'Diablo III: Reaper of Souls'
+- 'Diablo 3: Reaper of Souls'
+https://www.youtube.com/watch?v=M16kCIMiNyc:
+- 'Lisa: The Painful RPG'
+https://www.youtube.com/watch?v=M3FytW43iOI:
+- Fez
+https://www.youtube.com/watch?v=M3Wux3163kI:
+- 'Castlevania: Dracula X'
+https://www.youtube.com/watch?v=M4FN0sBxFoE:
+- Arc the Lad
+https://www.youtube.com/watch?v=M4XYQ8YfVdo:
+- Rollercoaster Tycoon 3
+- Rollercoaster Tycoon III
+https://www.youtube.com/watch?v=MCITsL-vfW8:
+- Miitopia
+https://www.youtube.com/watch?v=MH00uDOwD28:
+- Portal 2
+- Portal II
+https://www.youtube.com/watch?v=MK41-UzpQLk:
+- Star Fox 64
+https://www.youtube.com/watch?v=ML-kTPHnwKI:
+- Metroid
+https://www.youtube.com/watch?v=MLFX_CIsvS8:
+- Final Fantasy Adventure
+https://www.youtube.com/watch?v=MPvQoxXUQok:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=MTThoxoAVoI:
+- NieR
+https://www.youtube.com/watch?v=MYNeu0cZ3NE:
+- Silent Hill
+https://www.youtube.com/watch?v=M_B1DJu8FlQ:
+- Super Mario Odyssey
+https://www.youtube.com/watch?v=MaiHaXRYtNQ:
+- Tales of Vesperia
+https://www.youtube.com/watch?v=MbkMki62A4o:
+- Gran Turismo 5
+- Gran Turismo V
+https://www.youtube.com/watch?v=Mea-D-VFzck:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=MffE4TpsHto:
+- Assassin's Creed II
+- Assassin's Creed 2
+https://www.youtube.com/watch?v=MfsFZsPiw3M:
+- Grandia
+https://www.youtube.com/watch?v=Mg236zrHA40:
+- Dragon Quest VIII
+- Dragon Quest 8
+https://www.youtube.com/watch?v=MhjEEbyuJME:
+- Xenogears
+https://www.youtube.com/watch?v=MjeghICMVDY:
+- Ape Escape 3
+- Ape Escape III
+https://www.youtube.com/watch?v=MkKh-oP7DBQ:
+- Waterworld
+https://www.youtube.com/watch?v=MlRGotA3Yzs:
+- Mega Man 4
+- Mega Man IV
+https://www.youtube.com/watch?v=MlhPnFjCfwc:
+- Blue Stinger
+https://www.youtube.com/watch?v=Mn3HPClpZ6Q:
+- 'Vampire The Masquerade: Bloodlines'
+https://www.youtube.com/watch?v=Mobwl45u2J8:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=MowlJduEbgY:
+- Ori and the Blind Forest
+https://www.youtube.com/watch?v=MqK5MvPwPsE:
+- Hotline Miami
+https://www.youtube.com/watch?v=MthR2dXqWHI:
+- Super Mario RPG
+https://www.youtube.com/watch?v=MvJUxw8rbPA:
+- 'The Elder Scrolls III: Morrowind'
+- 'The Elder Scrolls 3: Morrowind'
+- Morrowind
+https://www.youtube.com/watch?v=MxShFnOgCnk:
+- Soma Bringer
+https://www.youtube.com/watch?v=MxyCk1mToY4:
+- Koudelka
+https://www.youtube.com/watch?v=N-BiX7QXE8k:
+- Shin Megami Tensei Nocturne
+https://www.youtube.com/watch?v=N-T8KwCCNh8:
+- Advance Wars DS
+https://www.youtube.com/watch?v=N1EyCv65yOI:
+- 'Qbeh-1: The Atlas Cube'
+- 'Qbeh-I: The Atlas Cube'
+https://www.youtube.com/watch?v=N1lp6YLpT_o:
+- Tribes 2
+- Tribes II
+https://www.youtube.com/watch?v=N2_yNExicyI:
+- 'Castlevania: Curse of Darkness'
+https://www.youtube.com/watch?v=N46rEikk4bw:
+- Ecco the Dolphin (Sega CD)
+- Ecco the Dolphin
+https://www.youtube.com/watch?v=N4V4OxH1d9Q:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=N6hzEQyU6QM:
+- Grounseed
+https://www.youtube.com/watch?v=N74vegXRMNk:
+- Bayonetta
+https://www.youtube.com/watch?v=NAyXKITCss8:
+- Forza Motorsport 4
+- Forza Motorsport IV
+https://www.youtube.com/watch?v=NFsvEFkZHoE:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=NGJp1-tPT54:
+- OutRun2
+https://www.youtube.com/watch?v=NL0AZ-oAraw:
+- Terranigma
+https://www.youtube.com/watch?v=NOomtJrX_MA:
+- Western Lords
+https://www.youtube.com/watch?v=NP3EK1Kr1sQ:
+- Dr. Mario
+https://www.youtube.com/watch?v=NRNHbaF_bvY:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=NT-c2ZeOpsg:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=NTfVsOnX0lY:
+- Rayman
+https://www.youtube.com/watch?v=NUloEiKpAZU:
+- Goldeneye
+https://www.youtube.com/watch?v=NVRgpAmkmPg:
+- Resident Evil 4
+- Resident Evil IV
+https://www.youtube.com/watch?v=NXr5V6umW6U:
+- Opoona
+https://www.youtube.com/watch?v=NZVZC4x9AzA:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=NcjcKZnJqAA:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=Nd2O6mbhCLU:
+- Mega Man 5
+- Mega Man V
+https://www.youtube.com/watch?v=NgKT8GTKhYU:
+- 'Final Fantasy XI: Wings of the Goddess'
+- 'Final Fantasy 11: Wings of the Goddess'
+https://www.youtube.com/watch?v=Nhj0Rct8v48:
+- The Wonderful 101
+- The Wonderful CI
+https://www.youtube.com/watch?v=NjG2ZjPqzzE:
+- Journey to Silius
+https://www.youtube.com/watch?v=NjmUCbNk65o:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=NkonFpRLGTU:
+- Transistor
+https://www.youtube.com/watch?v=NlsRts7Sims:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=Nn5K-NNmgTM:
+- Chrono Trigger
+https://www.youtube.com/watch?v=NnZlRu28fcU:
+- Etrian Odyssey
+https://www.youtube.com/watch?v=NnvD6RDF-SI:
+- Chibi-Robo
+https://www.youtube.com/watch?v=NnvZ6Dqv7Ws:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=Nr2McZBfSmc:
+- Uninvited
+https://www.youtube.com/watch?v=NtRlpjt5ItA:
+- Lone Survivor
+https://www.youtube.com/watch?v=NtXv9yFZI_Y:
+- Earthbound
+https://www.youtube.com/watch?v=Nu91ToSI4MU:
+- Breath of Death VII
+- Breath of Death 7
+https://www.youtube.com/watch?v=NuSPcCqiCZo:
+- Pilotwings 64
+https://www.youtube.com/watch?v=Nw5cfSRvFSA:
+- Super Meat Boy
+https://www.youtube.com/watch?v=Nw7bbb1mNHo:
+- NeoTokyo
+https://www.youtube.com/watch?v=NxWGa33zC8w:
+- Alien Breed
+https://www.youtube.com/watch?v=O-v3Df_q5QQ:
+- Star Fox Adventures
+https://www.youtube.com/watch?v=O0fQlDmSSvY:
+- Opoona
+https://www.youtube.com/watch?v=O0kjybFXyxM:
+- Final Fantasy X-2
+- Final Fantasy 10-2
+- Final Fantasy X-II
+https://www.youtube.com/watch?v=O0rVK4H0-Eo:
+- Legaia 2
+- Legaia II
+https://www.youtube.com/watch?v=O1Ysg-0v7aQ:
+- Tekken 2
+- Tekken II
+https://www.youtube.com/watch?v=O5a4jwv-jPo:
+- Teenage Mutant Ninja Turtles
+https://www.youtube.com/watch?v=O8jJJXgNLo4:
+- Diablo I & II
+- Diablo 1 & 2
+- diablo 1
+- diablo 2
+- diablo I
+- diablo II
+https://www.youtube.com/watch?v=OB9t0q4kkEE:
+- Katamari Damacy
+https://www.youtube.com/watch?v=OCFWEWW9tAo:
+- SimCity
+https://www.youtube.com/watch?v=OD49e9J3qbw:
+- 'Resident Evil: Revelations'
+https://www.youtube.com/watch?v=ODjYdlmwf1E:
+- 'The Binding of Isaac: Rebirth'
+https://www.youtube.com/watch?v=OIsI5kUyLcI:
+- Super Mario Maker
+https://www.youtube.com/watch?v=OJjsUitjhmU:
+- 'Chuck Rock II: Son of Chuck'
+- 'Chuck Rock 2: Son of Chuck'
+https://www.youtube.com/watch?v=OMsJdryIOQU:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=OUmeK282f-E:
+- 'Silent Hill 4: The Room'
+- 'Silent Hill IV: The Room'
+https://www.youtube.com/watch?v=OViAthHme2o:
+- The Binding of Isaac
+https://www.youtube.com/watch?v=OWQ4bzYMbNQ:
+- Devil May Cry 3
+- Devil May Cry III
+https://www.youtube.com/watch?v=OXHIuTm-w2o:
+- Super Mario RPG
+https://www.youtube.com/watch?v=OXWqqshHuYs:
+- La-Mulana
+https://www.youtube.com/watch?v=OXqxg3FpuDA:
+- Ollie King
+https://www.youtube.com/watch?v=OYr-B_KWM50:
+- Mega Man 3
+- Mega Man III
+https://www.youtube.com/watch?v=OZLXcCe7GgA:
+- Ninja Gaiden
+https://www.youtube.com/watch?v=Oam7ttk5RzA:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=OegoI_0vduQ:
+- Mystical Ninja Starring Goemon
+https://www.youtube.com/watch?v=OjRNSYsddz0:
+- Yo-Kai Watch
+https://www.youtube.com/watch?v=Ol9Ine1TkEk:
+- Dark Souls
+https://www.youtube.com/watch?v=OmMWlRu6pbM:
+- 'Call of Duty: Black Ops II'
+- 'Call of Duty: Black Ops 2'
+- black ops 2
+https://www.youtube.com/watch?v=On1N8hL95Xw:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=Op2h7kmJw10:
+- 'Castlevania: Dracula X'
+https://www.youtube.com/watch?v=OpvLr9vyOhQ:
+- Undertale
+https://www.youtube.com/watch?v=OqXhJ_eZaPI:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=Os2q1_PkgzY:
+- Super Adventure Island
+https://www.youtube.com/watch?v=Ou0WU5p5XkI:
+- 'Atelier Iris 3: Grand Phantasm'
+- 'Atelier Iris III: Grand Phantasm'
+https://www.youtube.com/watch?v=Ovn18xiJIKY:
+- Dragon Quest VI
+- Dragon Quest 6
+https://www.youtube.com/watch?v=OzbSP7ycMPM:
+- Yoshi's Island
+https://www.youtube.com/watch?v=P01-ckCZtCo:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=P1IBUrLte2w:
+- Earthbound 64
+https://www.youtube.com/watch?v=P2smOsHacjk:
+- The Magical Land of Wozz
+https://www.youtube.com/watch?v=P3FU2NOzUEU:
+- Paladin's Quest
+https://www.youtube.com/watch?v=P3oYGDwIKbc:
+- The Binding of Isaac
+https://www.youtube.com/watch?v=P3vzN5sizXk:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=P7K7jzxf6iw:
+- Legend of Legaia
+https://www.youtube.com/watch?v=P8oefrmJrWk:
+- Metroid Prime
+https://www.youtube.com/watch?v=P9OdKnQQchQ:
+- 'The Elder Scrolls IV: Oblivion'
+- 'The Elder Scrolls 4: Oblivion'
+- Oblivion
+https://www.youtube.com/watch?v=PAU7aZ_Pz4c:
+- Heimdall 2
+- Heimdall II
+https://www.youtube.com/watch?v=PAuFr7PZtGg:
+- Tales of Legendia
+https://www.youtube.com/watch?v=PFQCO_q6kW8:
+- Donkey Kong 64
+https://www.youtube.com/watch?v=PGowEQXyi3Y:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=PKno6qPQEJg:
+- Blaster Master
+https://www.youtube.com/watch?v=PMKc5Ffynzw:
+- 'Kid Icarus: Uprising'
+https://www.youtube.com/watch?v=POAGsegLMnA:
+- Super Mario Land
+https://www.youtube.com/watch?v=PQjOIZTv8I4:
+- Super Street Fighter II Turbo
+- Super Street Fighter 2 Turbo
+https://www.youtube.com/watch?v=PRCBxcvNApQ:
+- Glover
+https://www.youtube.com/watch?v=PRLWoJBwJFY:
+- World of Warcraft
+https://www.youtube.com/watch?v=PUZ8r9MJczQ:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=PXqJEm-vm-w:
+- Tales of Vesperia
+https://www.youtube.com/watch?v=PZBltehhkog:
+- 'MediEvil: Resurrection'
+https://www.youtube.com/watch?v=PZnF6rVTgQE:
+- Dragon Quest VII
+- Dragon Quest 7
+https://www.youtube.com/watch?v=PZwTdBbDmB8:
+- Mother
+https://www.youtube.com/watch?v=Pc3GfVHluvE:
+- Baten Kaitos
+https://www.youtube.com/watch?v=PfY_O8NPhkg:
+- 'Bravely Default: Flying Fairy'
+https://www.youtube.com/watch?v=PhW7tlUisEU:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=Pjdvqy1UGlI:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=PjlkqeMdZzU:
+- Paladin's Quest II
+- Paladin's Quest 2
+https://www.youtube.com/watch?v=PkKXW2-3wvg:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=Pmn-r3zx-E0:
+- Katamari Damacy
+https://www.youtube.com/watch?v=Poh9VDGhLNA:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=PqvQvt3ePyg:
+- Live a Live
+https://www.youtube.com/watch?v=PwEzeoxbHMQ:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=PwlvY_SeUQU:
+- Starcraft
+https://www.youtube.com/watch?v=PyubBPi9Oi0:
+- Pokemon
+https://www.youtube.com/watch?v=PzkbuitZEjE:
+- Ragnarok Online
+https://www.youtube.com/watch?v=Q1TnrjE909c:
+- 'Lunar: Dragon Song'
+https://www.youtube.com/watch?v=Q27un903ps0:
+- F-Zero GX
+https://www.youtube.com/watch?v=Q3Vci9ri4yM:
+- Cyborg 009
+https://www.youtube.com/watch?v=Q7a0piUG3jM:
+- Dragon Ball Z Butouden 2
+- Dragon Ball Z Butouden II
+https://www.youtube.com/watch?v=QD30b0MwpQw:
+- Shatter
+https://www.youtube.com/watch?v=QGgK5kQkLUE:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=QHStTXLP7II:
+- Breath of Fire IV
+- Breath of Fire 4
+https://www.youtube.com/watch?v=QLsVsiWgTMo:
+- 'Mario Kart: Double Dash!!'
+https://www.youtube.com/watch?v=QN1wbetaaTk:
+- Kirby & The Rainbow Curse
+- kirby and the rainbow curse
+https://www.youtube.com/watch?v=QNd4WYmj9WI:
+- 'World of Warcraft: Wrath of the Lich King'
+https://www.youtube.com/watch?v=QOKl7-it2HY:
+- Silent Hill
+https://www.youtube.com/watch?v=QR5xn8fA76Y:
+- Terranigma
+https://www.youtube.com/watch?v=QTwpZhWtQus:
+- 'The Elder Scrolls IV: Oblivion'
+- 'The Elder Scrolls 4: Oblivion'
+- Oblivion
+https://www.youtube.com/watch?v=QXd1P54rIzQ:
+- Secret of Evermore
+https://www.youtube.com/watch?v=QYnrEDKTB-k:
+- The Guardian Legend
+https://www.youtube.com/watch?v=QZiTBVot5xE:
+- Legaia 2
+- Legaia II
+https://www.youtube.com/watch?v=QaE0HHN4c30:
+- Halo
+https://www.youtube.com/watch?v=QdLD2Wop_3k:
+- Super Paper Mario
+https://www.youtube.com/watch?v=QiX-xWrkNZs:
+- Machinarium
+https://www.youtube.com/watch?v=QkgA1qgTsdQ:
+- Contact
+https://www.youtube.com/watch?v=Ql-Ud6w54wc:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=Qnz_S0QgaLA:
+- Deus Ex
+https://www.youtube.com/watch?v=QqN7bKgYWI0:
+- Suikoden
+https://www.youtube.com/watch?v=QtW1BBAufvM:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=QuSSx8dmAXQ:
+- Gran Turismo 4
+- Gran Turismo IV
+https://www.youtube.com/watch?v=Qv_8KiUsRTE:
+- Golden Sun
+https://www.youtube.com/watch?v=R1DRTdnR0qU:
+- Chrono Trigger
+https://www.youtube.com/watch?v=R2yEBE2ueuQ:
+- Breath of Fire
+https://www.youtube.com/watch?v=R3gmQcMK_zg:
+- Ragnarok Online
+https://www.youtube.com/watch?v=R5BZKMlqbPI:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=R6BoWeWh2Fg:
+- 'Cladun: This is an RPG'
+https://www.youtube.com/watch?v=R6tANRv2YxA:
+- FantaVision (North America)
+- FantaVision
+https://www.youtube.com/watch?v=R6us0FiZoTU:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=R9rnsbf914c:
+- Lethal League
+https://www.youtube.com/watch?v=RAevlv9Y1ao:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=RBKbYPqJNOw:
+- Wii Shop Channel
+https://www.youtube.com/watch?v=RBslMKpPu1M:
+- 'Donkey Kong Country: Tropical Freeze'
+https://www.youtube.com/watch?v=RBxWlVGd9zE:
+- Wild Arms 2
+- Wild Arms II
+https://www.youtube.com/watch?v=RHiQZ7tXSlw:
+- Radiant Silvergun
+https://www.youtube.com/watch?v=RKm11Z6Btbg:
+- Daytona USA
+https://www.youtube.com/watch?v=RNkUpb36KhQ:
+- Titan Souls
+https://www.youtube.com/watch?v=ROKcr2OTgws:
+- Chrono Cross
+https://www.youtube.com/watch?v=RO_FVqiEtDY:
+- Super Paper Mario
+https://www.youtube.com/watch?v=RP5DzEkA0l8:
+- Machinarium
+https://www.youtube.com/watch?v=RSlUnXWm9hM:
+- NeoTokyo
+https://www.youtube.com/watch?v=RSm22cu707w:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=RVBoUZgRG68:
+- Super Paper Mario
+https://www.youtube.com/watch?v=RXZ2gTXDwEc:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=Rj9bp-bp-TA:
+- Grow Home
+https://www.youtube.com/watch?v=RkDusZ10M4c:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=Roj5F9QZEpU:
+- 'Momodora: Reverie Under the Moonlight'
+https://www.youtube.com/watch?v=RpQlfTGfEsw:
+- Sonic CD
+- Sonic 400
+https://www.youtube.com/watch?v=RqqbUR7YxUw:
+- Pushmo
+https://www.youtube.com/watch?v=Rs2y4Nqku2o:
+- Chrono Cross
+https://www.youtube.com/watch?v=Ru7_ew8X6i4:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=Rv7-G28CPFI:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=RxcQY1OUzzY:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=RyQAZcBim88:
+- Ape Escape 3
+- Ape Escape III
+https://www.youtube.com/watch?v=RypdLW4G1Ng:
+- Hot Rod
+https://www.youtube.com/watch?v=S-vNB8mR1B4:
+- Sword of Mana
+https://www.youtube.com/watch?v=S0TmwLeUuBw:
+- God Hand
+https://www.youtube.com/watch?v=S3k1zdbBhRQ:
+- Donkey Kong Land
+https://www.youtube.com/watch?v=S87W-Rnag1E:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=SA7NfjCWbZU:
+- Treasure Hunter G
+https://www.youtube.com/watch?v=SAWxsyvWcqs:
+- Super Mario Galaxy 2
+- Super Mario Galaxy II
+https://www.youtube.com/watch?v=SCdUSkq_imI:
+- Super Mario 64
+https://www.youtube.com/watch?v=SDUUpUB1eu8:
+- Super Princess Peach
+https://www.youtube.com/watch?v=SE4FuK4MHJs:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=SFCn8IpgiLY:
+- Solstice
+https://www.youtube.com/watch?v=SKtO8AZLp2I:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=SNYFdankntY:
+- Mario Kart 64
+https://www.youtube.com/watch?v=SOAsm2UqIIM:
+- Cuphead
+https://www.youtube.com/watch?v=SPBIT_SSzmI:
+- Mario Party
+https://www.youtube.com/watch?v=SXQsmY_Px8Q:
+- Guardian of Paradise
+https://www.youtube.com/watch?v=SYp2ic7v4FU:
+- Rise of the Triad (2013)
+- Rise of the Triad
+https://www.youtube.com/watch?v=SawlCRnYYC8:
+- Eek! The Cat
+https://www.youtube.com/watch?v=Se-9zpPonwM:
+- Shatter
+https://www.youtube.com/watch?v=SeYZ8Bjo7tw:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=Sht8cKbdf_g:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=Sime7JZrTl0:
+- Castlevania
+https://www.youtube.com/watch?v=SjEwSzmSNVo:
+- Shenmue II
+- Shenmue 2
+https://www.youtube.com/watch?v=Sp7xqhunH88:
+- Waterworld
+https://www.youtube.com/watch?v=SqWu2wRA-Rk:
+- Battle Squadron
+https://www.youtube.com/watch?v=SrINCHeDeGI:
+- Luigi's Mansion
+https://www.youtube.com/watch?v=SsFYXts6EeE:
+- Ar Tonelico
+https://www.youtube.com/watch?v=Su5Z-NHGXLc:
+- 'Lunar: Eternal Blue'
+https://www.youtube.com/watch?v=SuI_RSHfLIk:
+- Guardian's Crusade
+https://www.youtube.com/watch?v=SvCIrLZ8hkI:
+- The Walking Dead
+https://www.youtube.com/watch?v=Sw9BfnRv8Ik:
+- 'Dreamfall: The Longest Journey'
+https://www.youtube.com/watch?v=SwVfsXvFbno:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=SzksdwLmxmY:
+- Bomberman Quest
+https://www.youtube.com/watch?v=T18nAaO_rGs:
+- Dragon Quest Monsters
+https://www.youtube.com/watch?v=T1edn6OPNRo:
+- 'Ys: The Oath in Felghana'
+https://www.youtube.com/watch?v=T24J3gTL4vY:
+- Polymer
+https://www.youtube.com/watch?v=T586T6QFjqE:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=T9kK9McaCoE:
+- Mushihimesama Futari
+https://www.youtube.com/watch?v=TBx-8jqiGfA:
+- Super Mario Bros
+https://www.youtube.com/watch?v=TEPaoDnS6AM:
+- Street Fighter III 3rd Strike
+- Street Fighter 3 3rd Strike
+https://www.youtube.com/watch?v=TFxtovEXNmc:
+- Bahamut Lagoon
+https://www.youtube.com/watch?v=TIzYqi_QFY8:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=TJH9E2x87EY:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=TM3BIOvEJSw:
+- Eternal Sonata
+https://www.youtube.com/watch?v=TMhh7ApHESo:
+- Super Win the Game
+https://www.youtube.com/watch?v=TO1kcFmNtTc:
+- Lost Odyssey
+https://www.youtube.com/watch?v=TPW9GRiGTek:
+- Yoshi's Woolly World
+https://www.youtube.com/watch?v=TRdrbKasYz8:
+- Xenosaga
+https://www.youtube.com/watch?v=TS8q1pjWviA:
+- Star Fox
+https://www.youtube.com/watch?v=TSlDUPl7DoA:
+- 'Star Ocean 3: Till the End of Time'
+- 'Star Ocean III: Till the End of Time'
+https://www.youtube.com/watch?v=TTt_-gE9iPU:
+- Bravely Default
+https://www.youtube.com/watch?v=TUZU34Sss8o:
+- Pokemon
+https://www.youtube.com/watch?v=TVKAMsRwIUk:
+- Nintendo World Cup
+https://www.youtube.com/watch?v=TXEz-i-oORk:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=TXO9vzXnAeg:
+- Dragon Quest
+https://www.youtube.com/watch?v=TYjKjjgQPk8:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=T_HfcZMUR4k:
+- Doom
+https://www.youtube.com/watch?v=TaRAKfltBfo:
+- Etrian Odyssey IV
+- Etrian Odyssey 4
+https://www.youtube.com/watch?v=Tc6G2CdSVfs:
+- 'Hitman: Blood Money'
+https://www.youtube.com/watch?v=TcKSIuOSs4U:
+- The Legendary Starfy
+https://www.youtube.com/watch?v=TdiRoUoSM-E:
+- Soma Bringer
+https://www.youtube.com/watch?v=TdxJKAvFEIU:
+- Lost Odyssey
+https://www.youtube.com/watch?v=TidW2D0Mnpo:
+- Blast Corps
+https://www.youtube.com/watch?v=TioQJoZ8Cco:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=Tj04oRO-0Ws:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=TkEH0e07jg8:
+- Secret of Evermore
+https://www.youtube.com/watch?v=TlDaPnHXl_o:
+- 'The Seventh Seal: Dark Lord'
+https://www.youtube.com/watch?v=TlLIOD2rJMs:
+- Chrono Trigger
+https://www.youtube.com/watch?v=TmkijsJ8-Kg:
+- 'NieR: Automata'
+https://www.youtube.com/watch?v=Tms-MKKS714:
+- Dark Souls
+https://www.youtube.com/watch?v=Tq8TV1PqZvw:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=TrO0wRbqPUo:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=TssxHy4hbko:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=TtACPCoJ-4I:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=Tug0cYK0XW0:
+- Shenmue
+https://www.youtube.com/watch?v=U2MqAWgqYJY:
+- Mystical Ninja Starring Goemon
+https://www.youtube.com/watch?v=U2XioVnZUlo:
+- Nintendo Land
+https://www.youtube.com/watch?v=U3FkappfRsQ:
+- Katamari Damacy
+https://www.youtube.com/watch?v=U4aEm6UufgY:
+- 'NyxQuest: Kindred Spirits'
+https://www.youtube.com/watch?v=U9z3oWS0Qo0:
+- 'Castlevania: Bloodlines'
+https://www.youtube.com/watch?v=UBCtM24yyYY:
+- Little Inferno
+https://www.youtube.com/watch?v=UC6_FirddSI:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=UHAEjRndMwg:
+- Machinarium
+https://www.youtube.com/watch?v=UOOmKmahDX4:
+- Super Mario Kart
+https://www.youtube.com/watch?v=UOdV3Ci46jY:
+- Run Saber
+https://www.youtube.com/watch?v=UPdZlmyedcI:
+- Castlevania 64
+https://www.youtube.com/watch?v=UQFiG9We23I:
+- Streets of Rage 2
+- Streets of Rage II
+https://www.youtube.com/watch?v=UWOTB6x_WAs:
+- Magical Tetris Challenge
+https://www.youtube.com/watch?v=UZ9Z0YwFkyk:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=U_Ox-uIbalo:
+- Bionic Commando
+https://www.youtube.com/watch?v=U_l3eYfpUQ0:
+- 'Resident Evil: Revelations'
+https://www.youtube.com/watch?v=Ubu3U44i5Ic:
+- Super Mario 64
+https://www.youtube.com/watch?v=UdKzw6lwSuw:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=UmTX3cPnxXg:
+- Super Mario 3D World
+https://www.youtube.com/watch?v=UmgTFGAPkXc:
+- Secret of Mana
+https://www.youtube.com/watch?v=Un0n0m8b3uE:
+- 'Ys: The Oath in Felghana'
+https://www.youtube.com/watch?v=UnyOHbOV-h0:
+- Dragon Ball Z Butouden 2
+- Dragon Ball Z Butouden II
+https://www.youtube.com/watch?v=UoBLfXPlyPA:
+- Shatter
+https://www.youtube.com/watch?v=UoDDUr6poOs:
+- World of Warcraft
+https://www.youtube.com/watch?v=UoEyt7S10Mo:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=UqQQ8LlMd3s:
+- Final Fantasy
+https://www.youtube.com/watch?v=Urqrn3sZbHQ:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=Uu4KCLd5kdg:
+- 'Diablo III: Reaper of Souls'
+- 'Diablo 3: Reaper of Souls'
+https://www.youtube.com/watch?v=UxiG3triMd8:
+- Hearthstone
+https://www.youtube.com/watch?v=V07qVpXUhc0:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=V1YsfDO8lgY:
+- Pokemon
+https://www.youtube.com/watch?v=V2UKwNO9flk:
+- 'Fire Emblem: Radiant Dawn'
+https://www.youtube.com/watch?v=V2kV7vfl1SE:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=V39OyFbkevY:
+- Etrian Odyssey IV
+- Etrian Odyssey 4
+https://www.youtube.com/watch?v=V4JjpIUYPg4:
+- Street Fighter IV
+- Street Fighter 4
+https://www.youtube.com/watch?v=V4tmMcpWm_I:
+- Super Street Fighter IV
+- Super Street Fighter 4
+https://www.youtube.com/watch?v=VClUpC8BwJU:
+- 'Silent Hill: Downpour'
+https://www.youtube.com/watch?v=VHCxLYOFHqU:
+- Chrono Trigger
+https://www.youtube.com/watch?v=VMMxNt_-s8E:
+- River City Ransom
+https://www.youtube.com/watch?v=VMt6f3DvTaU:
+- Mighty Switch Force
+https://www.youtube.com/watch?v=VVc6pY7njCA:
+- 'Kid Icarus: Uprising'
+https://www.youtube.com/watch?v=VVlFM_PDBmY:
+- Metal Gear Solid
+https://www.youtube.com/watch?v=VZIA6ZoLBEA:
+- Donkey Kong Country Returns
+https://www.youtube.com/watch?v=VdYkebbduH8:
+- Mario Kart 64
+https://www.youtube.com/watch?v=VfvadCcVXCo:
+- Crystal Beans from Dungeon Explorer
+https://www.youtube.com/watch?v=VgMHWxN2U_w:
+- Pokemon Trading Card Game
+https://www.youtube.com/watch?v=Vgxs785sqjw:
+- Persona 3 FES
+- Persona III FES
+https://www.youtube.com/watch?v=Vin5IrgdWnM:
+- Donkey Kong 64
+https://www.youtube.com/watch?v=VixvyNbhZ6E:
+- 'Lufia: The Legend Returns'
+https://www.youtube.com/watch?v=Vjf--bJDDGQ:
+- Super Mario 3D World
+https://www.youtube.com/watch?v=VktyN1crFLQ:
+- Devilish
+https://www.youtube.com/watch?v=Vl9Nz-X4M68:
+- Double Dragon Neon
+https://www.youtube.com/watch?v=VmOy8IvUcAE:
+- F-Zero GX
+https://www.youtube.com/watch?v=VmemS-mqlOQ:
+- Nostalgia
+https://www.youtube.com/watch?v=VpOYrLJKFUk:
+- The Walking Dead
+https://www.youtube.com/watch?v=VpyUtWCMrb4:
+- Castlevania III
+- Castlevania 3
+https://www.youtube.com/watch?v=VsvQy72iZZ8:
+- 'Kid Icarus: Uprising'
+https://www.youtube.com/watch?v=Vt2-826EsT8:
+- Cosmic Star Heroine
+https://www.youtube.com/watch?v=VuT5ukjMVFw:
+- Grandia III
+- Grandia 3
+https://www.youtube.com/watch?v=VvMkmsgHWMo:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=VxJf8k4YzBY:
+- The Mummy Demastered
+https://www.youtube.com/watch?v=VxgLPrbSg-U:
+- Romancing Saga 3
+- Romancing Saga III
+https://www.youtube.com/watch?v=VzHPc-HJlfM:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=VzJ2MLvIGmM:
+- 'E.V.O.: Search for Eden'
+- 'E.5.O.: Search for Eden'
+https://www.youtube.com/watch?v=W0fvt7_n9CU:
+- 'Castlevania: Lords of Shadow'
+https://www.youtube.com/watch?v=W4259ddJDtw:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=W6GNcYfHe1E:
+- Illusion of Gaia
+https://www.youtube.com/watch?v=W6O1WLDxRrY:
+- Krater
+https://www.youtube.com/watch?v=W7RPY-oiDAQ:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=W8-GDfP2xNM:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=W8Y2EuSrz-k:
+- Sonic the Hedgehog 3
+- Sonic the Hedgehog III
+https://www.youtube.com/watch?v=WBawD9gcECk:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=WCGk_7V5IGk:
+- Super Street Fighter II
+- Super Street Fighter 2
+https://www.youtube.com/watch?v=WEoHCLNJPy0:
+- Radical Dreamers
+https://www.youtube.com/watch?v=WLorUNfzJy8:
+- Breath of Death VII
+- Breath of Death 7
+https://www.youtube.com/watch?v=WNORnKsigdQ:
+- Radiant Historia
+https://www.youtube.com/watch?v=WP9081WAmiY:
+- 'The Legend of Zelda: Wind Waker'
- wind waker
-https://www.youtube.com/watch?v=nkPF5UiDi4g:
-- uncharted 2
-https://www.youtube.com/watch?v=CdYen5UII0s:
-- battlefield 1
-- battlefield one
-https://www.youtube.com/watch?v=8yj-25MOgOM:
-- star fox zero
-- starfox zero
-https://www.youtube.com/watch?v=Z9dNrmGD7mU:
-- dark souls iii
-- dark souls 3
-https://www.youtube.com/watch?v=Bio99hoZVYI:
-- fire emblem awakening
-https://www.youtube.com/watch?v=4EcgruWlXnQ:
-- monty on the run
-https://www.youtube.com/watch?v=oEf8gPFFZ58:
-- mega man 3
-- megaman 3
-https://www.youtube.com/watch?v=ifbr2NQ3Js0:
-- castlevania
-https://www.youtube.com/watch?v=W7rhEKTX-sE:
-- shovel knight
-https://www.youtube.com/watch?v=as_ct9tgkZA:
-- mega man 2
-- megaman 2
-https://www.youtube.com/watch?v=FB9Pym-sdbs:
-- actraiser
-https://www.youtube.com/watch?v=G3zhZHU6B2M:
-- ogre battle
-https://www.youtube.com/watch?v=hlrOAEr6dXc:
-- metroid zero mission
-- zero mission
-https://www.youtube.com/watch?v=jl6kjAkVw_s:
-- sonic 2
-https://www.youtube.com/watch?v=K8GRDNU50b8:
-- the legend of zelda ocarina of time
-- legend of zelda ocarina of time
+https://www.youtube.com/watch?v=WR_AncWskUk:
+- Metal Saga
+https://www.youtube.com/watch?v=WV56iJ9KFlw:
+- Mass Effect
+https://www.youtube.com/watch?v=WY2kHNPn-x8:
+- Tearaway
+https://www.youtube.com/watch?v=WYRFMUNIUVw:
+- Chrono Trigger
+https://www.youtube.com/watch?v=WZ1TQWlSOxo:
+- OutRun 2
+- OutRun II
+https://www.youtube.com/watch?v=W_t9udYAsBE:
+- Super Mario Bros 3
+- Super Mario Bros III
+https://www.youtube.com/watch?v=WaThErXvfD8:
+- Super Mario RPG
+https://www.youtube.com/watch?v=WcM38YKdk44:
+- Killer7
+https://www.youtube.com/watch?v=WdZPEL9zoMA:
+- Celeste
+https://www.youtube.com/watch?v=WeVAeMWeFNo:
+- 'Sakura Taisen: Atsuki Chishio Ni'
+https://www.youtube.com/watch?v=WgK4UTP0gfU:
+- Breath of Fire II
+- Breath of Fire 2
+https://www.youtube.com/watch?v=Wj17uoJLIV8:
+- Prince of Persia
+https://www.youtube.com/watch?v=Wqv5wxKDSIo:
+- Scott Pilgrim vs the World
+https://www.youtube.com/watch?v=WwXBfLnChSE:
+- Radiant Historia
+https://www.youtube.com/watch?v=WwuhhymZzgY:
+- The Last Story
+https://www.youtube.com/watch?v=X1-oxRS8-m4:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=X3rxfNjBGqQ:
+- Earthbound
+https://www.youtube.com/watch?v=X68AlSKY0d8:
+- Shatter
+https://www.youtube.com/watch?v=X80YQj6UHG8:
+- Xenogears
+https://www.youtube.com/watch?v=X8CGqt3N4GA:
+- 'The Legend of Zelda: Majora''s Mask'
+- 'majora''s mask'
+https://www.youtube.com/watch?v=XCfYHd-9Szw:
+- Mass Effect
+https://www.youtube.com/watch?v=XG7HmRvDb5Y:
+- Yoshi's Woolly World
+https://www.youtube.com/watch?v=XH1J5XxZklI:
+- Snowboard Kids
+https://www.youtube.com/watch?v=XIzflqDtA1M:
+- Lone Survivor
+https://www.youtube.com/watch?v=XJllrwZzWwc:
+- Namco x Capcom
+https://www.youtube.com/watch?v=XKI0-dPmwSo:
+- Shining Force II
+- Shining Force 2
+https://www.youtube.com/watch?v=XKeXXWBYTkE:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=XLJxqz83ujw:
+- Glover
+https://www.youtube.com/watch?v=XMc9xjrnySg:
+- Golden Sun
+https://www.youtube.com/watch?v=XSSNGYomwAU:
+- Suikoden
+https://www.youtube.com/watch?v=XSkuBJx8q-Q:
+- Doki Doki Literature Club!
+https://www.youtube.com/watch?v=XW3Buw2tUgI:
+- Extreme-G
+https://www.youtube.com/watch?v=XWd4539-gdk:
+- Tales of Phantasia
+https://www.youtube.com/watch?v=XZEuJnSFz9U:
+- Bubble Bobble
+https://www.youtube.com/watch?v=X_PszodM17s:
+- ICO
+https://www.youtube.com/watch?v=Xa7uyLoh8t4:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=Xb8k4cp_mvQ:
+- Sonic the Hedgehog 2
+- Sonic the Hedgehog II
+https://www.youtube.com/watch?v=XelC_ns-vro:
+- Breath of Fire II
+- Breath of Fire 2
+https://www.youtube.com/watch?v=XhlM0eFM8F4:
+- Banjo-Tooie
+https://www.youtube.com/watch?v=Xkr40w4TfZQ:
+- 'The Legend of Zelda: Skyward Sword'
+- 'skyward sword'
+https://www.youtube.com/watch?v=Xm7lW0uvFpc:
+- DuckTales
+https://www.youtube.com/watch?v=XmAMeRNX_D4:
+- Ragnarok Online
+https://www.youtube.com/watch?v=XmmV5c2fS30:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=XnHysmcf31o:
+- Mother
+https://www.youtube.com/watch?v=Xnmuncx1F0Q:
+- Demon's Crest
+https://www.youtube.com/watch?v=Xo1gsf_pmzM:
+- Super Mario 3D World
+https://www.youtube.com/watch?v=Xpwy4RtRA1M:
+- The Witcher
+https://www.youtube.com/watch?v=XqPsT01sZVU:
+- Kingdom of Paradise
+https://www.youtube.com/watch?v=Xv_VYdKzO3A:
+- 'Tintin: Prisoners of the Sun'
+https://www.youtube.com/watch?v=Xw58jPitU-Q:
+- Ys Origin
+https://www.youtube.com/watch?v=XxMf4BdVq_g:
+- Deus Ex
+https://www.youtube.com/watch?v=Xy9eA5PJ9cU:
+- Pokemon
+https://www.youtube.com/watch?v=XztQyuJ4HoQ:
+- Legend of Legaia
+https://www.youtube.com/watch?v=Y0oO0bOyIAU:
+- Hotline Miami
+https://www.youtube.com/watch?v=Y1i3z56CiU4:
+- Pokemon X / Y
+- pokemon x
+- pokemon y
+https://www.youtube.com/watch?v=Y5HHYuQi7cQ:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=Y5cXKVt3wOE:
+- Souten no Celenaria
+https://www.youtube.com/watch?v=Y7McPnKoP8g:
+- Illusion of Gaia
+https://www.youtube.com/watch?v=Y8Z8C0kziMw:
+- Sonic the Hedgehog
+https://www.youtube.com/watch?v=Y9a5VahqzOE:
+- Kirby's Dream Land
+https://www.youtube.com/watch?v=YA3VczBNCh8:
+- Lost Odyssey
+https://www.youtube.com/watch?v=YADDsshr-NM:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=YCwOCGt97Y0:
+- Kaiser Knuckle
+https://www.youtube.com/watch?v=YD19UMTxu4I:
+- Time Trax
+https://www.youtube.com/watch?v=YEoAPCEZyA0:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=YFDcu-hy4ak:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=YFz1vqikCaE:
+- 'TMNT IV: Turtles in Time'
+- 'TMNT 4: Turtles in Time'
+https://www.youtube.com/watch?v=YJcuMHvodN4:
+- Super Bonk
+https://www.youtube.com/watch?v=YKe8k8P2FNw:
+- Baten Kaitos
+https://www.youtube.com/watch?v=YL5Q4GybKWc:
+- Balloon Fight
+https://www.youtube.com/watch?v=YQasQAYgbb4:
+- Terranigma
+https://www.youtube.com/watch?v=YYBmrB3bYo4:
+- Christmas NiGHTS
+https://www.youtube.com/watch?v=YYGKW8vyYXU:
+- Shatterhand
+https://www.youtube.com/watch?v=YYxvaixwybA:
+- Shatter
+https://www.youtube.com/watch?v=YZGrI4NI9Nw:
+- Guacamelee!
+https://www.youtube.com/watch?v=Y_GJywu5Wr0:
+- Final Fantasy Tactics A2
+https://www.youtube.com/watch?v=Y_RoEPwYLug:
+- Mega Man ZX
+https://www.youtube.com/watch?v=YdcgKnwaE-A:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=YfFxcLGBCdI:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=Yh0LHDiWJNk:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=Yh4e_rdWD-k:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=YhOUDccL1i8:
+- Rudra No Hihou
+https://www.youtube.com/watch?v=YlLX3U6QfyQ:
+- 'Albert Odyssey: Legend of Eldean'
+https://www.youtube.com/watch?v=YmF88zf5qhM:
+- Halo 4
+- Halo IV
+https://www.youtube.com/watch?v=YmaHBaNxWt0:
+- Tekken 7
+- Tekken VII
+https://www.youtube.com/watch?v=Yn9EmSHIaLw:
+- Stardew Valley
+https://www.youtube.com/watch?v=YnQ9nrcp_CE:
+- Skyblazer
+https://www.youtube.com/watch?v=YqPjWx9XiWk:
+- Captain America and the Avengers
+https://www.youtube.com/watch?v=Ys_xfruRWSc:
+- Pokemon Snap
+https://www.youtube.com/watch?v=Yx-m8z-cbzo:
+- Cave Story
+https://www.youtube.com/watch?v=YzELBO_3HzE:
+- Plok
+https://www.youtube.com/watch?v=Z-LAcjwV74M:
+- Soul Calibur II
+- Soul Calibur 2
+https://www.youtube.com/watch?v=Z167OL2CQJw:
+- Lost Eden
+https://www.youtube.com/watch?v=Z41vcQERnQQ:
+- Dragon Quest III
+- Dragon Quest 3
+https://www.youtube.com/watch?v=Z49Lxg65UOM:
+- Tsugunai
+https://www.youtube.com/watch?v=Z4QunenBEXI:
+- 'The Legend of Zelda: Link''s Awakening'
+- 'link''s awakening'
+https://www.youtube.com/watch?v=Z74e6bFr5EY:
+- Chrono Trigger
+https://www.youtube.com/watch?v=Z8Jf5aFCbEE:
+- Secret of Evermore
+https://www.youtube.com/watch?v=Z9UnlYHogTE:
+- The Violinist of Hameln
+https://www.youtube.com/watch?v=ZAyRic3ZW0Y:
+- Comix Zone
+https://www.youtube.com/watch?v=ZCd2Y1HlAnA:
+- 'Atelier Iris: Eternal Mana'
+https://www.youtube.com/watch?v=ZEUEQ4wlvi4:
+- Dragon Quest III
+- Dragon Quest 3
+https://www.youtube.com/watch?v=ZJGF0_ycDpU:
+- Pokemon GO
+https://www.youtube.com/watch?v=ZJjaiYyES4w:
+- 'Tales of Symphonia: Dawn of the New World'
+https://www.youtube.com/watch?v=ZQGc9rG5qKo:
+- Metroid Prime
+https://www.youtube.com/watch?v=ZW-eiSBpG8E:
+- Legend of Mana
+https://www.youtube.com/watch?v=ZabqQ7MSsIg:
+- Wrecking Crew
+https://www.youtube.com/watch?v=ZbIfD6r518s:
+- Secret of Mana
+https://www.youtube.com/watch?v=ZbPfNA8vxQY:
+- Dustforce
+https://www.youtube.com/watch?v=ZbpEhw42bvQ:
+- Mega Man 6
+- Mega Man VI
+https://www.youtube.com/watch?v=Zee9VKBU_Vk:
+- Fallout 3
+- Fallout III
+https://www.youtube.com/watch?v=ZfZQWz0VVxI:
+- Platoon
+https://www.youtube.com/watch?v=ZgvsIvHJTds:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=Zj3P44pqM_Q:
+- Final Fantasy XI
+- Final Fantasy 11
+https://www.youtube.com/watch?v=Zn8GP0TifCc:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=ZrDAjeoPR7A:
+- Child of Eden
+https://www.youtube.com/watch?v=ZriKAVSIQa0:
+- 'The Legend of Zelda: A Link Between Worlds'
+- a link between worlds
+https://www.youtube.com/watch?v=ZuM618JZgww:
+- Metroid Prime Hunters
+https://www.youtube.com/watch?v=ZulAUy2_mZ4:
+- Gears of War 4
+- Gears of War IV
+https://www.youtube.com/watch?v=ZyAIAKItmoM:
+- Hotline Miami 2
+- Hotline Miami II
+https://www.youtube.com/watch?v=Zys-MeBfBto:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=_1CWWL9UBUk:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=_1rwSdxY7_g:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=_24ZkPUOIeo:
+- Pilotwings 64
+https://www.youtube.com/watch?v=_2FYWCCZrNs:
+- Chrono Cross
+https://www.youtube.com/watch?v=_3Am7OPTsSk:
+- Earthbound
+https://www.youtube.com/watch?v=_9LUtb1MOSU:
+- Secret of Mana
+https://www.youtube.com/watch?v=_BdvaCCUsYo:
+- Tales of Destiny
+https://www.youtube.com/watch?v=_CB18Elh4Rc:
+- Chrono Cross
+https://www.youtube.com/watch?v=_C_fXeDZHKw:
+- Secret of Evermore
+https://www.youtube.com/watch?v=_CeQp-NVkSw:
+- Grounseed
+https://www.youtube.com/watch?v=_EYg1z-ZmUs:
+- Breath of Death VII
+- Breath of Death 7
+https://www.youtube.com/watch?v=_Gnu2AttTPI:
+- Pokemon Black / White
+- pokemon black
+- pokemon white
+https://www.youtube.com/watch?v=_H42_mzLMz0:
+- Dragon Quest IV
+- Dragon Quest 4
+https://www.youtube.com/watch?v=_Ju6JostT7c:
+- Castlevania
+https://www.youtube.com/watch?v=_L6scVxzIiI:
+- 'The Legend of Zelda: Link''s Awakening'
+- 'link''s awakening'
+https://www.youtube.com/watch?v=_Ms2ME7ufis:
+- 'Superbrothers: Sword & Sworcery EP'
+- 'superbrothers: sword and sworcery ep'
+https://www.youtube.com/watch?v=_OM5A6JwHig:
+- Machinarium
+https://www.youtube.com/watch?v=_OguBY5x-Qo:
+- Shenmue
+https://www.youtube.com/watch?v=_RHmWJyCsAM:
+- Dragon Quest II
+- Dragon Quest 2
+https://www.youtube.com/watch?v=_U3JUtO8a9U:
+- Mario + Rabbids Kingdom Battle
+https://www.youtube.com/watch?v=_Wcte_8oFyM:
+- Plants vs Zombies
+https://www.youtube.com/watch?v=_WjOqJ4LbkQ:
+- Mega Man 10
+https://www.youtube.com/watch?v=_XJw072Co_A:
+- Diddy Kong Racing
+https://www.youtube.com/watch?v=_YxsxsaP2T4:
+- 'The Elder Scrolls V: Skyrim'
+- 'The Elder Scrolls 5: Skyrim'
+- Skyrim
+https://www.youtube.com/watch?v=_bOxB__fyJI:
+- World Reborn
+https://www.youtube.com/watch?v=_blDkW4rCwc:
+- Hyrule Warriors
+https://www.youtube.com/watch?v=_cglnkygG_0:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=_dXaKTGvaEk:
+- 'Fatal Frame II: Crimson Butterfly'
+- 'Fatal Frame 2: Crimson Butterfly'
+https://www.youtube.com/watch?v=_dsKphN-mEI:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=_eDz4_fCerk:
+- Jurassic Park
+https://www.youtube.com/watch?v=_gmeGnmyn34:
+- 3D Dot Game Heroes
+https://www.youtube.com/watch?v=_hRi2AwnEyw:
+- Dragon Quest V
+- Dragon Quest 5
+https://www.youtube.com/watch?v=_i9LIgKpgkc:
+- Persona 3
+- Persona III
+https://www.youtube.com/watch?v=_j8AXugAZCQ:
+- Earthbound
+https://www.youtube.com/watch?v=_jWbBWpfBWw:
+- Advance Wars
+https://www.youtube.com/watch?v=_joPG7N0lRk:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=_qbSmANSx6s:
+- 'The Legend of Zelda: Ocarina of Time'
- ocarina of time
-https://www.youtube.com/watch?v=dTZ8uhJ5hIE:
-- kirby's epic yarn
-- kirbys epic yarn
-https://www.youtube.com/watch?v=QaaD9CnWgig:
-- super smash bros brawl
-- super smash bros. brawl
-- super smash brothers brawl
-https://www.youtube.com/watch?v=JDqJa1RC3q8:
-- kid icarus uprising
-https://www.youtube.com/watch?v=MQurUl4Snio:
-- punch-out!!
-- punch-out
-- punch out
-- punchout
-https://www.youtube.com/watch?v=vlz6qgahnYQ:
-- super street fighter 2 turbo
-- super street fighter two turbo
-- street fighter 2 turbo
-- street fighter two turbo
-https://www.youtube.com/watch?v=FBLp-3Rw_u0:
-- mario & luigi bowser's inside story
-- mario and luigi bowser's inside story
-- mario & luigi bowsers inside story
-- mario and luigi bowsers inside story
-- bowser's inside story
-- bowsers inside story
-https://www.youtube.com/watch?v=jqE8M2ZnFL8:
-- grand theft auto 4
-- grand theft auto four
-https://www.youtube.com/watch?v=GQZLEegUK74:
-- goldeneye 007
-- goldeneye
-https://www.youtube.com/watch?v=nCe7W1ajzIE:
-- tmnt iv turtles in time
-- tmnt iv
-- tmnt 4 turtles in time
-- tmnt 4
-- turtles in time
-https://www.youtube.com/watch?v=YHEifuLCSIY:
-- ducktales
-https://www.youtube.com/watch?v=rXefFHRgyE0:
+https://www.youtube.com/watch?v=_thDGKkVgIE:
+- 'Spyro: A Hero''s Tail'
+https://www.youtube.com/watch?v=_ttw1JCEiZE:
+- NieR
+https://www.youtube.com/watch?v=_wHwJoxw4i4:
+- Metroid
+https://www.youtube.com/watch?v=_wbGNLXgYgE:
+- Grand Theft Auto V
+- Grand Theft Auto 5
+https://www.youtube.com/watch?v=a0oq7Yw8tkc:
+- 'The Binding of Isaac: Rebirth'
+https://www.youtube.com/watch?v=a14tqUAswZU:
+- Daytona USA
+https://www.youtube.com/watch?v=a43NXcUkHkI:
+- Final Fantasy
+https://www.youtube.com/watch?v=a4t1ty8U9qw:
+- Earthbound
+https://www.youtube.com/watch?v=a5JdLRzK_uQ:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=a5WtWa8lL7Y:
+- Tetris
+https://www.youtube.com/watch?v=a8hAxP__AKw:
+- Lethal Weapon
+https://www.youtube.com/watch?v=a9MLBjUvgFE:
+- Minecraft (Update Aquatic)
+- Minecraft
+https://www.youtube.com/watch?v=aBmqRgtqOgw:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=aDJ3bdD4TPM:
+- Terranigma
+https://www.youtube.com/watch?v=aDbohXp2oEs:
+- Baten Kaitos Origins
+https://www.youtube.com/watch?v=aKgSFxA0ZhY:
+- Touch My Katamari
+https://www.youtube.com/watch?v=aKqYLGaG_E4:
+- Earthbound
+https://www.youtube.com/watch?v=aObuQqkoa-g:
+- Dragon Quest VI
+- Dragon Quest 6
+https://www.youtube.com/watch?v=aOjeeAVojAE:
+- Metroid AM2R
+https://www.youtube.com/watch?v=aOxqL6hSt8c:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=aPrcJy-5hoA:
+- 'Westerado: Double Barreled'
+https://www.youtube.com/watch?v=aRloSB3iXG0:
+- Metal Warriors
+https://www.youtube.com/watch?v=aTofARLXiBk:
+- Jazz Jackrabbit 3
+- Jazz Jackrabbit III
+https://www.youtube.com/watch?v=aU0WdpQRzd4:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=aWh7crjCWlM:
+- Conker's Bad Fur Day
+https://www.youtube.com/watch?v=aXJ0om-_1Ew:
+- Crystal Beans from Dungeon Explorer
+https://www.youtube.com/watch?v=aYUMd2GvwsU:
+- A Bug's Life
+https://www.youtube.com/watch?v=aZ37adgwDIw:
+- Shenmue
+https://www.youtube.com/watch?v=a_WurTZJrpE:
+- Earthbound
+https://www.youtube.com/watch?v=a_qDMzn6BOA:
+- Shin Megami Tensei IV
+- Shin Megami Tensei 4
+https://www.youtube.com/watch?v=aatRnG3Tkmg:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=abv-zluKyQQ:
+- Final Fantasy Tactics Advance
+https://www.youtube.com/watch?v=acAAz1MR_ZA:
+- 'Disgaea: Hour of Darkness'
+https://www.youtube.com/watch?v=acLncvJ9wHI:
+- Trauma Team
+https://www.youtube.com/watch?v=acVjEoRvpv8:
+- Dark Cloud
+https://www.youtube.com/watch?v=aci_luVBju4:
+- 'The Legend of Zelda: Skyward Sword'
+- skyward sword
+https://www.youtube.com/watch?v=ae_lrtPgor0:
+- Super Mario World
+https://www.youtube.com/watch?v=afsUV7q6Hqc:
+- Mega Man ZX
+https://www.youtube.com/watch?v=ag5q7vmDOls:
+- Lagoon
+https://www.youtube.com/watch?v=aj9mW0Hvp0g:
+- 'Ufouria: The Saga'
+https://www.youtube.com/watch?v=am5TVpGwHdE:
+- Digital Devil Saga
+https://www.youtube.com/watch?v=ammnaFhcafI:
+- Mario Party 4
+- Mario Party IV
+https://www.youtube.com/watch?v=an3P8otlD2A:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=aqLjvjhHgDI:
+- Minecraft
+https://www.youtube.com/watch?v=aqWw9gLgFRA:
+- Portal
+https://www.youtube.com/watch?v=aumWblPK58M:
+- SaGa Frontier
+https://www.youtube.com/watch?v=avyGawaBrtQ:
+- 'Dragon Ball Z: Budokai'
+https://www.youtube.com/watch?v=b-oxtWJ00WA:
+- Pikmin 3
+- Pikmin III
+https://www.youtube.com/watch?v=b-rgxR_zIC4:
+- Mega Man 4
+- Mega Man IV
+https://www.youtube.com/watch?v=b0kqwEbkSag:
+- Deathsmiles IIX
+https://www.youtube.com/watch?v=b1YKRCKnge8:
+- Chrono Trigger
+https://www.youtube.com/watch?v=b3Ayzzo8eZo:
+- 'Lunar: Dragon Song'
+https://www.youtube.com/watch?v=b3l5v-QQF40:
+- 'TMNT IV: Turtles in Time'
+- 'TMNT 4: Turtles in Time'
+https://www.youtube.com/watch?v=b6QzJaltmUM:
+- What Remains of Edith Finch
+https://www.youtube.com/watch?v=b9OZwTLtrl4:
+- Legend of Mana
+https://www.youtube.com/watch?v=bA4PAkrAVpQ:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=bAkK3HqzoY0:
+- 'Fire Emblem: Radiant Dawn'
+https://www.youtube.com/watch?v=bCNdNTdJYvE:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=bDH8AIok0IM:
+- TimeSplitters 2
+- TimeSplitters II
+https://www.youtube.com/watch?v=bFk3mS6VVsE:
+- Threads of Fate
+https://www.youtube.com/watch?v=bItjdi5wxFQ:
+- Watch Dogs
+https://www.youtube.com/watch?v=bKj3JXmYDfY:
+- The Swapper
+https://www.youtube.com/watch?v=bNzYIEY-CcM:
+- Chrono Trigger
+https://www.youtube.com/watch?v=bO2wTaoCguc:
+- Super Dodge Ball
+https://www.youtube.com/watch?v=bOg8XuvcyTY:
+- Final Fantasy Legend II
+- Final Fantasy Legend 2
+https://www.youtube.com/watch?v=bQ1D8oR128E:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=bR4AB3xNT0c:
+- Donkey Kong Country Returns
+https://www.youtube.com/watch?v=bRAT5LgAl5E:
+- The Dark Spire
+https://www.youtube.com/watch?v=bW3KNnZ2ZiA:
+- Chrono Trigger
+https://www.youtube.com/watch?v=bWp4F1p2I64:
+- 'Deus Ex: Human Revolution'
+https://www.youtube.com/watch?v=bXfaBUCDX1I:
+- 'Mario & Luigi: Dream Team'
+- 'mario and luigi: dream team'
+https://www.youtube.com/watch?v=bZBoTinEpao:
+- Jade Cocoon
+https://www.youtube.com/watch?v=bcHL3tGy7ws:
+- World of Warcraft
+https://www.youtube.com/watch?v=bckgyhCo7Lw:
+- Tales of Legendia
+https://www.youtube.com/watch?v=bdNrjSswl78:
+- Kingdom Hearts II
+- Kingdom Hearts 2
+https://www.youtube.com/watch?v=berZX7mPxbE:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=bffwco66Vnc:
+- 'Little Nemo: The Dream Master'
+https://www.youtube.com/watch?v=bhW8jNscYqA:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=bmsw4ND8HNA:
+- Pokemon Diamond / Pearl / Platinum
+- pokemon diamond
+- pokemon pearl
+- pokemon platinum
+https://www.youtube.com/watch?v=bp4-fXuTwb8:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=brYzVFvM98I:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=bss8vzkIB74:
+- 'Vampire The Masquerade: Bloodlines'
+https://www.youtube.com/watch?v=bu-kSDUXUts:
+- Silent Hill 2
+- Silent Hill II
+https://www.youtube.com/watch?v=bvbOS8Mp8aQ:
+- Street Fighter V
+- Street Fighter 5
+https://www.youtube.com/watch?v=bviyWo7xpu0:
+- Wild Arms 5
+- Wild Arms V
+https://www.youtube.com/watch?v=c2Y1ANec-5M:
+- Ys Chronicles
+https://www.youtube.com/watch?v=c47-Y-y_dqI:
+- Blue Dragon
+https://www.youtube.com/watch?v=c62hLhyF2D4:
+- Jelly Defense
+https://www.youtube.com/watch?v=c7mYaBoSIQU:
+- Contact
+https://www.youtube.com/watch?v=c8sDG4L-qrY:
+- Skullgirls
+https://www.youtube.com/watch?v=cETUoqcjICE:
+- Vay
+https://www.youtube.com/watch?v=cHfgcOHSTs0:
+- Ogre Battle 64
+https://www.youtube.com/watch?v=cKBgNT-8rrM:
+- Grounseed
+https://www.youtube.com/watch?v=cKQZVFIuyko:
+- Streets of Rage 2
+- Streets of Rage II
+https://www.youtube.com/watch?v=cMxOAeESteU:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=cO1UTkT6lf8:
+- Baten Kaitos Origins
+https://www.youtube.com/watch?v=cQhqxEIAZbE:
+- Resident Evil Outbreak
+https://www.youtube.com/watch?v=cRyIPt01AVM:
+- Banjo-Kazooie
+https://www.youtube.com/watch?v=cU1Z5UwBlQo:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=cWTZEXmWcOs:
+- Night in the Woods
+https://www.youtube.com/watch?v=cWt6j5ZJCHU:
+- R-Type Delta
+https://www.youtube.com/watch?v=cYV7Ph-qvvI:
+- 'Romancing Saga: Minstrel Song'
+https://www.youtube.com/watch?v=cYlKsL8r074:
+- NieR
+https://www.youtube.com/watch?v=cZVRDjJUPIQ:
+- Kirby & The Rainbow Curse
+- kirby and the rainbow curse
+https://www.youtube.com/watch?v=c_ex2h9t2yk:
+- Klonoa
+https://www.youtube.com/watch?v=calW24ddgOM:
+- 'Castlevania: Order of Ecclesia'
+https://www.youtube.com/watch?v=cbiEH5DMx78:
+- Wild Arms
+https://www.youtube.com/watch?v=ccHauz5l5Kc:
+- Torchlight
+https://www.youtube.com/watch?v=ccMkXEV0YmY:
+- Tekken 2
+- Tekken II
+https://www.youtube.com/watch?v=ciM3PBf1DRs:
+- Sonic the Hedgehog
+https://www.youtube.com/watch?v=cjrh4YcvptY:
+- Jurassic Park 2
+- Jurassic Park II
+https://www.youtube.com/watch?v=ckVmgiTobAw:
+- Okami
+https://www.youtube.com/watch?v=cl6iryREksM:
+- 'The Legend of Zelda: Skyward Sword'
+- skyward sword
+https://www.youtube.com/watch?v=clyy2eKqdC0:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=cmyK3FdTu_Q:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=cnjADMWesKk:
+- Silent Hill 2
+- Silent Hill II
+https://www.youtube.com/watch?v=coyl_h4_tjc:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=cpcx0UQt4Y8:
+- Shadow of the Beast
+https://www.youtube.com/watch?v=cqSEDRNwkt8:
+- 'SMT: Digital Devil Saga 2'
+- 'SMT: Digital Devil Saga II'
+https://www.youtube.com/watch?v=cqkYQt8dnxU:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=cs3hwrowdaQ:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=cvae_OsnWZ0:
+- Super Mario RPG
+https://www.youtube.com/watch?v=cvpGCTUGi8o:
+- Pokemon Diamond / Pearl / Platinum
- pokemon diamond
- pokemon pearl
- pokemon platinum
-https://www.youtube.com/watch?v=4jaIUlz-wNU:
-- warriors orochi 3
-- warriors orochi three
-https://www.youtube.com/watch?v=EAwWPadFsOA:
-- mortal kombat
-https://www.youtube.com/watch?v=XI1VpElKWF8:
-- metal gear solid
-https://www.youtube.com/watch?v=zz8m1oEkW5k:
-- tetris blitz
-https://www.youtube.com/watch?v=gMdX_Iloow8:
-- ultimate marvel vs capcom 3
-- marvel vs capcom 3
-- ultimate marvel vs. capcom 3
-- marvel vs. capcom 3
-https://www.youtube.com/watch?v=vRe3h1iQ1Os:
-- sonic the hedgehog 2006
-- sonic the hegehog
-https://www.youtube.com/watch?v=SYTS2sJWcIs:
-- pokemon heartgold
-- pokemon soulsilver
-https://www.youtube.com/watch?v=5-BIqqSe1nU:
-- red dead redemption
-https://www.youtube.com/watch?v=wp6QpMWaKpE:
-- bioshock
-https://www.youtube.com/watch?v=R9XdMnsKvUs:
-- call of duty 4 modern warfare
-- call of duty 4
-- modern warfare
-https://www.youtube.com/watch?v=f-sQhBDsjgE:
-- killzone 2
-https://www.youtube.com/watch?v=-_O6F5FwQ0s:
-- soul calibur v
-- sould calibur 5
-https://www.youtube.com/watch?v=MgK_OfW7nl4:
-- the legend of zelda breath of the wild
-- legend of zelda breath of the wild
-- breath of the wild
-https://www.youtube.com/watch?v=tz82xbLvK_k:
-- undertale
-https://www.youtube.com/watch?v=J46RY4PU8a8:
-- chrono cross
-https://www.youtube.com/watch?v=6LB7LZZGpkw:
-- silent hill 2
-https://www.youtube.com/watch?v=ya3yxTbkh5s:
-- Ōkami
-- okami
-- wolf
-https://www.youtube.com/watch?v=KGidvt4NTPI:
-- hikari 光
-- hikari
-- 光
-- light
-https://www.youtube.com/watch?v=JbXVNKtmWnc:
-- final fantasy vi
-- final fantasy 6
-https://www.youtube.com/watch?v=-jMDutXA4-M:
-- final fantasy iii
-- final fantasy 3
\ No newline at end of file
+https://www.youtube.com/watch?v=cwmHupo9oSQ:
+- Street Fighter 2010
+- Street Fighter MMX
+https://www.youtube.com/watch?v=cxAE48Dul7Y:
+- Top Gear 3000
+- Top Gear MMM
+https://www.youtube.com/watch?v=cxAbbHCpucs:
+- Unreal Tournament
+https://www.youtube.com/watch?v=cyShVri-4kQ:
+- NieR
+https://www.youtube.com/watch?v=d0akzKhBl2k:
+- Pop'n Music 7
+- Pop'n Music VII
+https://www.youtube.com/watch?v=d12Pt-zjLsI:
+- Fire Emblem Fates
+https://www.youtube.com/watch?v=d1UyVXN13SI:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=d2dB0PuWotU:
+- Sonic Adventure 2
+- Sonic Adventure II
+https://www.youtube.com/watch?v=d3mJsXFGhDg:
+- Altered Beast
+https://www.youtube.com/watch?v=d5OK1GkI_CU:
+- Chrono Cross
+https://www.youtube.com/watch?v=d8xtkry1wK8:
+- Lost Odyssey
+https://www.youtube.com/watch?v=dBsdllfE4Ek:
+- Undertale
+https://www.youtube.com/watch?v=dEVI5_OxUyY:
+- Goldeneye
+https://www.youtube.com/watch?v=dG4ZCzodq4g:
+- Tekken 6
+- Tekken VI
+https://www.youtube.com/watch?v=dGF7xsF0DmQ:
+- Shatterhand (JP)
+- shatterhand
+https://www.youtube.com/watch?v=dGzGSapPGL8:
+- Jets 'N' Guns
+https://www.youtube.com/watch?v=dJzTqmQ_erE:
+- Chrono Trigger
+https://www.youtube.com/watch?v=dMSjvBILQRU:
+- Fable
+https://www.youtube.com/watch?v=dMYW4wBDQLU:
+- 'Ys VI: The Ark of Napishtim'
+- 'Ys 6: The Ark of Napishtim'
+https://www.youtube.com/watch?v=dO4awKzd8rc:
+- One Step Beyond
+https://www.youtube.com/watch?v=dOHur-Yc3nE:
+- Shatter
+https://www.youtube.com/watch?v=dQRiJz_nEP8:
+- Castlevania II
+- Castlevania 2
+https://www.youtube.com/watch?v=dRHpQFbEthY:
+- Shovel Knight
+https://www.youtube.com/watch?v=dSwUFI18s7s:
+- Valkyria Chronicles 3
+- Valkyria Chronicles III
+https://www.youtube.com/watch?v=dTjNEOT-e-M:
+https://www.youtube.com/watch?v=dUcTukA0q4Y:
+- Super Mario World
+- 'FTL: Faster Than Light'
+https://www.youtube.com/watch?v=dWiHtzP-bc4:
+- 'Kirby 64: The Crystal Shards'
+https://www.youtube.com/watch?v=dWrm-lwiKj0:
+- Nora to Toki no Koubou
+https://www.youtube.com/watch?v=dZAOgvdXhuk:
+- 'Star Wars: Shadows of the Empire'
+https://www.youtube.com/watch?v=dcEXzNbn20k:
+- Dead Space
+https://www.youtube.com/watch?v=dd2dbckq54Q:
+- Black/Matrix
+https://www.youtube.com/watch?v=deKo_UHZa14:
+- Return All Robots!
+https://www.youtube.com/watch?v=dfykPUgPns8:
+- Parasite Eve
+https://www.youtube.com/watch?v=dgD5lgqNzP8:
+- Dark Souls
+https://www.youtube.com/watch?v=dhGMZwQr0Iw:
+- Mario Kart 8
+- Mario Kart VIII
+https://www.youtube.com/watch?v=dhzrumwtwFY:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=dim1KXcN34U:
+- ActRaiser
+https://www.youtube.com/watch?v=dj0Ib2lJ7JA:
+- Final Fantasy XII
+- Final Fantasy 12
+https://www.youtube.com/watch?v=dj8Qe3GUrdc:
+- 'Divinity II: Ego Draconis'
+- 'Divinity 2: Ego Draconis'
+https://www.youtube.com/watch?v=dlZyjOv5G80:
+- Shenmue
+https://www.youtube.com/watch?v=dobKarKesA0:
+- Elemental Master
+https://www.youtube.com/watch?v=dqww-xq7b9k:
+- SaGa Frontier II
+- SaGa Frontier 2
+https://www.youtube.com/watch?v=drFZ1-6r7W8:
+- Shenmue II
+- Shenmue 2
+https://www.youtube.com/watch?v=dszJhqoPRf8:
+- Super Mario Kart
+https://www.youtube.com/watch?v=dtITnB_uRzc:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=dyFj_MfRg3I:
+- Dragon Quest
+https://www.youtube.com/watch?v=dylldXUC20U:
+- 'The Legend of Zelda: Wind Waker'
+- wind waker
+https://www.youtube.com/watch?v=e-r3yVxzwe0:
+- Chrono Cross
+https://www.youtube.com/watch?v=e1HWSPwGlpA:
+- Doom 3
+- Doom III
+https://www.youtube.com/watch?v=e6cvikWAAEo:
+- Super Smash Bros. Brawl
+https://www.youtube.com/watch?v=e7YW5tmlsLo:
+- Cannon Fodder
+https://www.youtube.com/watch?v=e9uvCvvlMn4:
+- Wave Race 64
+https://www.youtube.com/watch?v=e9xHOWHjYKc:
+- Beyond Good & Evil
+- beyond good and evil
+https://www.youtube.com/watch?v=eCS1Tzbcbro:
+- Demon's Crest
+https://www.youtube.com/watch?v=eDOCPzvn87s:
+- Super Mario World
+https://www.youtube.com/watch?v=eDjJq3DsNTc:
+- Ar nosurge
+https://www.youtube.com/watch?v=eEZLBWjQsGk:
+- Parasite Eve
+https://www.youtube.com/watch?v=eF03eqpRxHE:
+- Soul Edge
+https://www.youtube.com/watch?v=eFN9fNhjRPg:
+- 'NieR: Automata'
+https://www.youtube.com/watch?v=eFR7iBDJYpI:
+- Ratchet & Clank
+- ratchet and clank
+https://www.youtube.com/watch?v=eKiz8PrTvSs:
+- Metroid
+https://www.youtube.com/watch?v=eLLdU3Td1w0:
+- Star Fox 64
+https://www.youtube.com/watch?v=eNXj--eakKg:
+- Chrono Trigger
+https://www.youtube.com/watch?v=eNXv3L_ebrk:
+- 'Moon: Remix RPG Adventure'
+https://www.youtube.com/watch?v=eOx1HJJ-Y8M:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=eRuhYeSR19Y:
+- Uncharted Waters
+https://www.youtube.com/watch?v=eRzo1UGPn9s:
+- 'TMNT IV: Turtles in Time'
+- 'TMNT 4: Turtles in Time'
+https://www.youtube.com/watch?v=eWsYdciDkqY:
+- Jade Cocoon
+https://www.youtube.com/watch?v=ehNS3sKQseY:
+- Wipeout Pulse
+https://www.youtube.com/watch?v=ehxzly2ogW4:
+- Xenoblade Chronicles X
+- Xenoblade Chronicles 10
+https://www.youtube.com/watch?v=ej4PiY8AESE:
+- 'Lunar: Eternal Blue'
+https://www.youtube.com/watch?v=eje3VwPYdBM:
+- Pop'n Music 7
+- Pop'n Music VII
+https://www.youtube.com/watch?v=elvSWFGFOQs:
+- Ridge Racer Type 4
+- Ridge Racer Type IV
+https://www.youtube.com/watch?v=emGEYMPc9sY:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=eoPtQd6adrA:
+- Talesweaver
+https://www.youtube.com/watch?v=euk6wHmRBNY:
+- Infinite Undiscovery
+https://www.youtube.com/watch?v=ev9G_jTIA-k:
+- Robotrek
+https://www.youtube.com/watch?v=evHQZjhE9CM:
+- The Bouncer
+https://www.youtube.com/watch?v=evVH7gshLs8:
+- Turok 2 (Gameboy)
+- Turok II
+- turok 2
+https://www.youtube.com/watch?v=eyhLabJvb2M:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=eyiABstbKJE:
+- Kirby's Return to Dreamland
+https://www.youtube.com/watch?v=f0UzNWcwC30:
+- Tales of Graces
+https://www.youtube.com/watch?v=f0bj_Aqhbb8:
+- Guild Wars 2
+- Guild Wars II
+https://www.youtube.com/watch?v=f0muXjuV6cc:
+- Super Mario World
+https://www.youtube.com/watch?v=f1EFHMwKdkY:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=f1QLfSOUiHU:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=f2XcqUwycvA:
+- 'Kingdom Hearts: Birth By Sleep'
+https://www.youtube.com/watch?v=f2q9axKQFHc:
+- Tekken Tag Tournament 2
+- Tekken Tag Tournament II
+https://www.youtube.com/watch?v=f3z73Xp9fCk:
+- Outlaws
+https://www.youtube.com/watch?v=f6QCNRRA1x0:
+- Legend of Mana
+https://www.youtube.com/watch?v=fEfuvS-V9PI:
+- Mii Channel
+https://www.youtube.com/watch?v=fH-lLbHbG-A:
+- 'TMNT IV: Turtles in Time'
+- 'TMNT 4: Turtles in Time'
+https://www.youtube.com/watch?v=fH66CHAUcoA:
+- Chrono Trigger
+https://www.youtube.com/watch?v=fJZoDK-N6ug:
+- Castlevania 64
+https://www.youtube.com/watch?v=fJkpSSJUxC4:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=fNBMeTJb9SM:
+- Dead Rising 3
+- Dead Rising III
+https://www.youtube.com/watch?v=fRy6Ly5A5EA:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=fTj73xQg2TY:
+- Child of Light
+https://www.youtube.com/watch?v=fTvPg89TIMI:
+- Tales of Legendia
+https://www.youtube.com/watch?v=fWqvxC_8yDk:
+- 'Ecco: The Tides of Time (Sega CD)'
+- 'Ecco: The Tides of Time'
+https://www.youtube.com/watch?v=fWx4q8GqZeo:
+- Digital Devil Saga
+https://www.youtube.com/watch?v=fXxbFMtx0Bo:
+- Halo 3 ODST
+- Halo III ODST
+https://www.youtube.com/watch?v=fYvGx-PEAtg:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=f_UurCb4AD4:
+- Dewy's Adventure
+https://www.youtube.com/watch?v=fbc17iYI7PA:
+- Warcraft II
+- Warcraft 2
+https://www.youtube.com/watch?v=fcJLdQZ4F8o:
+- Ar Tonelico
+https://www.youtube.com/watch?v=fc_3fMMaWK8:
+- Secret of Mana
+https://www.youtube.com/watch?v=fd6QnwqipcE:
+- Mutant Mudds
+https://www.youtube.com/watch?v=feZJtZnevAM:
+- Pandora's Tower
+https://www.youtube.com/watch?v=fexAY_t4N8U:
+- Conker's Bad Fur Day
+https://www.youtube.com/watch?v=fg1PDaOnU2Q:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=fiPxE3P2Qho:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=fjNJqcuFD-A:
+- Katamari Damacy
+https://www.youtube.com/watch?v=fpVag5b7zHo:
+- Pokemon Omega Ruby / Alpha Sapphire
+- pokemon omega ruby
+- pokemon alpha sapphire
+https://www.youtube.com/watch?v=ft5DP1h8jsg:
+- Wild Arms 2
+- Wild Arms II
+https://www.youtube.com/watch?v=g2S2Lxzow3Q:
+- Mega Man 5
+- Mega Man V
+https://www.youtube.com/watch?v=g4Bnot1yBJA:
+- 'The Elder Scrolls III: Morrowind'
+- 'The Elder Scrolls 3: Morrowind'
+- Morrowind
+https://www.youtube.com/watch?v=g6vc_zFeHFk:
+- Streets of Rage
+https://www.youtube.com/watch?v=gAy6qk8rl5I:
+- Wild Arms
+https://www.youtube.com/watch?v=gDL6uizljVk:
+- 'Batman: Return of the Joker'
+https://www.youtube.com/watch?v=gF4pOYxzplw:
+- Xenogears
+https://www.youtube.com/watch?v=gIlGulCdwB4:
+- Pilotwings Resort
+https://www.youtube.com/watch?v=gLfz9w6jmJM:
+- Machinarium
+https://www.youtube.com/watch?v=gLu7Bh0lTPs:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=gQUe8l_Y28Y:
+- Lineage II
+- Lineage 2
+https://www.youtube.com/watch?v=gQiYZlxJk3w:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=gQndM8KdTD0:
+- 'Kirby 64: The Crystal Shards'
+https://www.youtube.com/watch?v=gRZFl-vt4w0:
+- Ratchet & Clank
+- ratchet and clank
+https://www.youtube.com/watch?v=gSLIlAVZ6Eo:
+- Tales of Vesperia
+https://www.youtube.com/watch?v=gTahA9hCxAg:
+- Undertale
+https://www.youtube.com/watch?v=gVGhVofDPb4:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=gW0DiDKWgWc:
+- Earthbound
+https://www.youtube.com/watch?v=gWZ2cqFr0Vo:
+- Chrono Cross
+https://www.youtube.com/watch?v=gY9jq9-1LTk:
+- Treasure Hunter G
+https://www.youtube.com/watch?v=g_Hsyo7lmQU:
+- Pictionary
+https://www.youtube.com/watch?v=gcm3ak-SLqM:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=gf3NerhyM_k:
+- Tales of Berseria
+https://www.youtube.com/watch?v=ggTedyRHx20:
+- 'Qbeh-1: The Atlas Cube'
+- 'Qbeh-I: The Atlas Cube'
+https://www.youtube.com/watch?v=ghe_tgQvWKQ:
+- Resident Evil REmake
+https://www.youtube.com/watch?v=ght6F5_jHQ0:
+- Mega Man 4
+- Mega Man IV
+https://www.youtube.com/watch?v=glFK5I0G2GE:
+- Sheep Raider
+https://www.youtube.com/watch?v=glcGXw3gS6Q:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=gmfBMy-h6Js:
+- NieR
+https://www.youtube.com/watch?v=go7JlCI5n5o:
+- Counter Strike
+https://www.youtube.com/watch?v=gokt9KTpf18:
+- Mario Kart 7
+- Mario Kart VII
+https://www.youtube.com/watch?v=grQkblTqSMs:
+- Earthbound
+https://www.youtube.com/watch?v=grmP-wEjYKw:
+- Okami
+https://www.youtube.com/watch?v=guff_k4b6cI:
+- Wild Arms
+https://www.youtube.com/watch?v=gwesq9ElVM4:
+- 'The Legend of Zelda: A Link Between Worlds'
+- a link between worlds
+https://www.youtube.com/watch?v=gxF__3CNrsU:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=gzl9oJstIgg:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=h0LDHLeL-mE:
+- Sonic Forces
+https://www.youtube.com/watch?v=h0ed9Kei7dw:
+- Biker Mice from Mars
+https://www.youtube.com/watch?v=h2AhfGXAPtk:
+- Deathsmiles
+https://www.youtube.com/watch?v=h4VF0mL35as:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=h5iAyksrXgc:
+- Yoshi's Story
+https://www.youtube.com/watch?v=h8Z73i0Z5kk:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=h8wD8Dmxr94:
+- 'Dragon Ball Z: The Legacy of Goku II'
+- 'Dragon Ball Z: The Legacy of Goku 2'
+https://www.youtube.com/watch?v=hB3mYnW-v4w:
+- 'Superbrothers: Sword & Sworcery EP'
+- 'superbrothers: sword and sworcery ep'
+https://www.youtube.com/watch?v=hBg-pnQpic4:
+- Pokemon Ruby / Sapphire / Emerald
+- pokemon ruby
+- pokemon sapphire
+- pokemon emerald
+https://www.youtube.com/watch?v=hELte7HgL2Y:
+- Chrono Trigger
+https://www.youtube.com/watch?v=hFgqnQLyqqE:
+- Sonic Lost World
+https://www.youtube.com/watch?v=hL7-cD9LDp0:
+- Glover
+https://www.youtube.com/watch?v=hLKBPvLNzng:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=hMd5T_RlE_o:
+- Super Mario World
+https://www.youtube.com/watch?v=hMoejZAOOUM:
+- Ys II Chronicles
+- Ys 2 Chronicles
+https://www.youtube.com/watch?v=hNCGAN-eyuc:
+- Undertale
+https://www.youtube.com/watch?v=hNOTJ-v8xnk:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=hT8FhGDS5qE:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=hUpjPQWKDpM:
+- Breath of Fire V
+- Breath of Fire 5
+https://www.youtube.com/watch?v=hV3Ktwm356M:
+- Killer Instinct
+https://www.youtube.com/watch?v=hYHMbcC08xA:
+- Mega Man 9
+- Mega Man IX
+https://www.youtube.com/watch?v=h_suLF-Qy5U:
+- Katamari Damacy
+https://www.youtube.com/watch?v=hb6Ny-4Pb7o:
+- Mana Khemia
+https://www.youtube.com/watch?v=he2oLG1Trtg:
+- 'Kirby: Triple Deluxe'
+https://www.youtube.com/watch?v=heD3Rzhrnaw:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=he_ECgg9YyU:
+- Mega Man
+https://www.youtube.com/watch?v=hlCHzEa9MRg:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=hlQ-DG9Jy3Y:
+- Pop'n Music 2
+- Pop'n Music II
+https://www.youtube.com/watch?v=hoOeroni32A:
+- Mutant Mudds
+https://www.youtube.com/watch?v=hqKfTvkVo1o:
+- Monster Hunter Tri
+https://www.youtube.com/watch?v=hrxseupEweU:
+- Unreal Tournament 2003 & 2004
+- unreal tournament 2003
+- unreal tournament 2004
+https://www.youtube.com/watch?v=hsPiGiZ2ks4:
+- SimCity 4
+- SimCity IV
+https://www.youtube.com/watch?v=hv2BL0v2tb4:
+- Phantasy Star Online
+https://www.youtube.com/watch?v=hxZTBl7Q5fs:
+- 'The Legend of Zelda: Link''s Awakening'
+- 'link''s awakening'
+https://www.youtube.com/watch?v=hyjJl59f_I0:
+- Star Fox Adventures
+https://www.youtube.com/watch?v=i-hcCtD_aB0:
+- Soma Bringer
+https://www.youtube.com/watch?v=i-v-bJhK5yc:
+- Undertale
+https://www.youtube.com/watch?v=i1GFclxeDIU:
+- Shadow Hearts
+https://www.youtube.com/watch?v=i1ZVtT5zdcI:
+- Secret of Mana
+https://www.youtube.com/watch?v=i2E9c0j0n4A:
+- Rad Racer II
+- Rad Racer 2
+https://www.youtube.com/watch?v=i49PlEN5k9I:
+- Soul Sacrifice
+https://www.youtube.com/watch?v=i8DTcUWfmws:
+- Guilty Gear Isuka
+https://www.youtube.com/watch?v=iA6xXR3pwIY:
+- Baten Kaitos
+https://www.youtube.com/watch?v=iDIbO2QefKo:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=iDVMfUFs_jo:
+- LOST CHILD
+https://www.youtube.com/watch?v=iFa5bIrsWb0:
+- 'The Legend of Zelda: Link''s Awakening'
+https://www.youtube.com/watch?v=iJS-PjSQMtw:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=iK-g9PXhXzM:
+- Radiant Historia
+https://www.youtube.com/watch?v=iMeBQBv2ACs:
+- Etrian Mystery Dungeon
+https://www.youtube.com/watch?v=iN3Jp55Db_A:
+- Maniac Mansion
+https://www.youtube.com/watch?v=iS98ggIHkRw:
+- Extreme-G
+https://www.youtube.com/watch?v=iSP-_hNQyYs:
+- Chrono Trigger
+https://www.youtube.com/watch?v=iTUBlKA5IfY:
+- Pokemon Art Academy
+https://www.youtube.com/watch?v=iV5Ae4lOWmk:
+- Super Paper Mario
+https://www.youtube.com/watch?v=iXDF9eHsmD4:
+- F-Zero
+https://www.youtube.com/watch?v=iZv19yJrZyo:
+- 'FTL: Advanced Edition'
+https://www.youtube.com/watch?v=idw1zFkySA0:
+- Boot Hill Heroes
+https://www.youtube.com/watch?v=ietzDT5lOpQ:
+- Braid
+https://www.youtube.com/watch?v=ifqmN14qJp8:
+- Minecraft
+https://www.youtube.com/watch?v=ifvxBt7tmA8:
+- Yoshi's Island
+https://www.youtube.com/watch?v=iga0Ed0BWGo:
+- Diablo III
+- Diablo 3
+https://www.youtube.com/watch?v=ihi7tI8Kaxc:
+- The Last Remnant
+https://www.youtube.com/watch?v=ijUwAWUS8ug:
+- Diablo II
+- Diablo 2
+https://www.youtube.com/watch?v=ilOYzbGwX7M:
+- Deja Vu
+https://www.youtube.com/watch?v=imK2k2YK36E:
+- Giftpia
+https://www.youtube.com/watch?v=in7TUvirruo:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=injXmLzRcBI:
+- Blue Dragon
+https://www.youtube.com/watch?v=iohvqM6CGEU:
+- Mario Kart 64
+https://www.youtube.com/watch?v=irGCdR0rTM4:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=irQxobE5PU8:
+- Frozen Synapse
+https://www.youtube.com/watch?v=ivfEScAwMrE:
+- 'Paper Mario: Sticker Star'
+https://www.youtube.com/watch?v=iwemkM-vBmc:
+- Super Mario Sunshine
+https://www.youtube.com/watch?v=ixE9HlQv7v8:
+- Castle Crashers
+https://www.youtube.com/watch?v=j16ZcZf9Xz8:
+- Pokemon Silver / Gold / Crystal
+- pokemon silver
+- pokemon gold
+- pokemon crystal
+https://www.youtube.com/watch?v=j2zAq26hqd8:
+- 'Metroid Prime 2: Echoes'
+- 'Metroid Prime II: Echoes'
+https://www.youtube.com/watch?v=j4Zh9IFn_2U:
+- Etrian Odyssey Untold
+https://www.youtube.com/watch?v=j6i73HYUNPk:
+- Gauntlet III
+- Gauntlet 3
+https://www.youtube.com/watch?v=jANl59bNb60:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=jAQGCM-IyOE:
+- Xenosaga
+https://www.youtube.com/watch?v=jChHVPyd4-Y:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=jEmyzsFaiZ8:
+- Tomb Raider
+https://www.youtube.com/watch?v=jI2ltHB50KU:
+- Opoona
+https://www.youtube.com/watch?v=jJVTRXZXEIA:
+- 'Dust: An Elysian Tail'
+https://www.youtube.com/watch?v=jL57YsG1JJE:
+- Metroid
+https://www.youtube.com/watch?v=jLrqs_dvAGU:
+- Yoshi's Woolly World
+https://www.youtube.com/watch?v=jNoiUfwuuP8:
+- 'Kirby 64: The Crystal Shards'
+https://www.youtube.com/watch?v=jObg1aw9kzE:
+- 'Divinity 2: Ego Draconis'
+- 'Divinity II: Ego Draconis'
+https://www.youtube.com/watch?v=jP2CHO9yrl8:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=jRqXWj7TL5A:
+- Goldeneye
+https://www.youtube.com/watch?v=jTZEuazir4s:
+- Environmental Station Alpha
+https://www.youtube.com/watch?v=jWtiuVTe5kQ:
+- Equinox
+https://www.youtube.com/watch?v=jXGaW3dKaHs:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=jYFYsfEyi0c:
+- Ragnarok Online
+https://www.youtube.com/watch?v=j_8sYSOkwAg:
+- Professor Layton and the Curious Village
+https://www.youtube.com/watch?v=j_EH4xCh1_U:
+- Metroid Prime
+https://www.youtube.com/watch?v=jaG1I-7dYvY:
+- Earthbound
+https://www.youtube.com/watch?v=jfEZs-Ada78:
+- Jack Bros.
+https://www.youtube.com/watch?v=jgtKSnmM5oE:
+- Tetris
+https://www.youtube.com/watch?v=jhHfROLw4fA:
+- 'Donkey Kong Country: Tropical Freeze'
+https://www.youtube.com/watch?v=jhsNQ6r2fHE:
+- 3D Dot Game Heroes
+https://www.youtube.com/watch?v=jkWYvENgxwA:
+- Journey to Silius
+https://www.youtube.com/watch?v=jlFYSIyAGmA:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=jlcjrgSVkkc:
+- Mario Kart 8
+- Mario Kart VIII
+https://www.youtube.com/watch?v=jpghr0u8LCU:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=jv5_zzFZMtk:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=k09qvMpZYYo:
+- Secret of Mana
+https://www.youtube.com/watch?v=k0f4cCJqUbg:
+- Katamari Forever
+https://www.youtube.com/watch?v=k3m-_uCo-b8:
+- Mega Man
+https://www.youtube.com/watch?v=k4L8cq2vrlk:
+- Chrono Trigger
+https://www.youtube.com/watch?v=k4N3Go4wZCg:
+- 'Uncharted: Drake''s Fortune'
+https://www.youtube.com/watch?v=kA69u0-U-Vk:
+- MapleStory
+https://www.youtube.com/watch?v=kDssUvBiHFk:
+- Yoshi's Island
+https://www.youtube.com/watch?v=kEA-4iS0sco:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=kJRiZaexNno:
+- Unlimited Saga
+https://www.youtube.com/watch?v=kN-jdHNOq8w:
+- Super Mario 64
+https://www.youtube.com/watch?v=kNDB4L0D2wg:
+- 'Everquest: Planes of Power'
+https://www.youtube.com/watch?v=kNPz77g5Xyk:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=kNgI7N5k5Zo:
+- 'Atelier Iris 2: The Azoth of Destiny'
+- 'Atelier Iris II: The Azoth of Destiny'
+https://www.youtube.com/watch?v=kW63YiVf5I0:
+- Splatoon
+https://www.youtube.com/watch?v=kWRFPdhAFls:
+- 'Fire Emblem 4: Seisen no Keifu'
+- 'Fire Emblem IV: Seisen no Keifu'
+https://www.youtube.com/watch?v=khPWld3iA8g:
+- Max Payne 2
+- Max Payne II
+https://www.youtube.com/watch?v=ki_ralGwQN4:
+- Legend of Mana
+https://www.youtube.com/watch?v=kmkzuPrQHQM:
+- Yoshi's Island DS
+https://www.youtube.com/watch?v=koHO9vN6t4I:
+- Giftpia
+https://www.youtube.com/watch?v=krmNfjbfJUQ:
+- Midnight Resistance
+https://www.youtube.com/watch?v=ks0xlnvjwMo:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=ks74Hlce8yw:
+- Super Mario 3D World
+https://www.youtube.com/watch?v=ksq6wWbVsPY:
+- Tekken 2
+- Tekken II
+https://www.youtube.com/watch?v=ktnL6toFPCo:
+- PaRappa the Rapper
+https://www.youtube.com/watch?v=ku0pS3ko5CU:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=kx580yOvKxs:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=kyaC_jSV_fw:
+- Nostalgia
+https://www.youtube.com/watch?v=kzId-AbowC4:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=kzUYJAaiEvA:
+- ICO
+https://www.youtube.com/watch?v=l1O9XZupPJY:
+- Tomb Raider III
+- Tomb Raider 3
+https://www.youtube.com/watch?v=l1UCISJoDTU:
+- Xenoblade Chronicles 2
+- Xenoblade Chronicles II
+https://www.youtube.com/watch?v=l5VK4kR1YTw:
+- Banjo-Kazooie
+https://www.youtube.com/watch?v=l5WLVNhczjE:
+- 'Phoenix Wright: Justice for All'
+https://www.youtube.com/watch?v=lBEvtA4Uuwk:
+- Wild Arms
+https://www.youtube.com/watch?v=lFOBRmPK-Qs:
+- Pokemon
+https://www.youtube.com/watch?v=lJc9ajk9bXs:
+- Sonic the Hedgehog 2
+- Sonic the Hedgehog II
+https://www.youtube.com/watch?v=lLP6Y-1_P1g:
+- Asterix & Obelix
+- asterix and obelix
+https://www.youtube.com/watch?v=lLniW316mUk:
+- Suikoden III
+- Suikoden 3
+https://www.youtube.com/watch?v=lOaWT7Y7ZNo:
+- Mirror's Edge
+https://www.youtube.com/watch?v=lPFndohdCuI:
+- Super Mario RPG
+https://www.youtube.com/watch?v=lXBFPdRiZMs:
+- 'Dragon Ball Z: Super Butoden'
+https://www.youtube.com/watch?v=lZUgl5vm6tk:
+- Trip World
+https://www.youtube.com/watch?v=lb88VsHVDbw:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=lcOky3CKCa0:
+- Yoshi's Woolly World
+https://www.youtube.com/watch?v=lfudDzITiw8:
+- Opoona
+https://www.youtube.com/watch?v=lhVk4Q47cgQ:
+- Shadow of the Colossus
+https://www.youtube.com/watch?v=lmhxytynQOE:
+- Romancing Saga 3
+- Romancing Saga III
+https://www.youtube.com/watch?v=loh0SQ_SF2s:
+- Xenogears
+https://www.youtube.com/watch?v=lwUtHErD2Yo:
+- Furi
+https://www.youtube.com/watch?v=lyduqdKbGSw:
+- Create
+https://www.youtube.com/watch?v=lzhkFmiTB_8:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=m-VXBxd2pmo:
+- Asterix
+https://www.youtube.com/watch?v=m09KrtCgiCA:
+- Final Fantasy Origins
+- final fantasy origins
+https://www.youtube.com/watch?v=m2Vlxyd9Wjw:
+- Dragon Quest V
+- Dragon Quest 5
+https://www.youtube.com/watch?v=m2q8wtFHbyY:
+- 'La Pucelle: Tactics'
+https://www.youtube.com/watch?v=m4NfokfW3jw:
+- 'Dragon Ball Z: The Legacy of Goku II'
+- 'Dragon Ball Z: The Legacy of Goku 2'
+https://www.youtube.com/watch?v=m4uR39jNeGE:
+- Wild Arms 3
+- Wild Arms III
+https://www.youtube.com/watch?v=m57kb5d3wZ4:
+- Chrono Cross
+https://www.youtube.com/watch?v=m6HgGxxjyrU:
+- Tales of Symphonia
+https://www.youtube.com/watch?v=m9kEp_sNLJo:
+- Illusion of Gaia
+https://www.youtube.com/watch?v=mA2rTmfT1T8:
+- Valdis Story
+https://www.youtube.com/watch?v=mASkgOcUdOQ:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=mDw3F-Gt4bQ:
+- Knuckles Chaotix
+https://www.youtube.com/watch?v=mG1D80dMhKo:
+- Asterix
+https://www.youtube.com/watch?v=mG9BcQEApoI:
+- 'Castlevania: Dawn of Sorrow'
+https://www.youtube.com/watch?v=mHUE5GkAUXo:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=mJCRoXkJohc:
+- Bomberman 64
+https://www.youtube.com/watch?v=mNDaE4dD8dE:
+- Monster Rancher 4
+- Monster Rancher IV
+https://www.youtube.com/watch?v=mPhy1ylhj7E:
+- Earthbound
+https://www.youtube.com/watch?v=mRGdr6iahg8:
+- 'Kirby 64: The Crystal Shards'
+https://www.youtube.com/watch?v=mSXFiU0mqik:
+- Chrono Cross
+https://www.youtube.com/watch?v=mTnXMcxBwcE:
+- 'The Legend of Zelda: Ocarina of Time'
+- ocarina of time
+https://www.youtube.com/watch?v=mWJeicPtar0:
+- NieR
+https://www.youtube.com/watch?v=mX78VEVMSVo:
+- Arcana
+https://www.youtube.com/watch?v=m_kAJLsSGz8:
+- 'Shantae: Risky''s Revenge'
+https://www.youtube.com/watch?v=mbPpGeTPbjM:
+- Eternal Darkness
+https://www.youtube.com/watch?v=mfOHgEeuEHE:
+- Umineko no Naku Koro ni
+https://www.youtube.com/watch?v=mh9iibxyg14:
+- Super Mario RPG
+https://www.youtube.com/watch?v=minJMBk4V9g:
+- 'Star Trek: Deep Space Nine'
+https://www.youtube.com/watch?v=mkTkAkcj6mQ:
+- 'The Elder Scrolls IV: Oblivion'
+- 'The Elder Scrolls 4: Oblivion'
+- Oblivion
+https://www.youtube.com/watch?v=mm-nVnt8L0g:
+- Earthbound
+https://www.youtube.com/watch?v=mnPqUs4DZkI:
+- 'Turok: Dinosaur Hunter'
+https://www.youtube.com/watch?v=mngXThXnpwY:
+- Legendary Wings
+https://www.youtube.com/watch?v=moDNdAfZkww:
+- Minecraft
+https://www.youtube.com/watch?v=mpt-RXhdZzQ:
+- Mega Man X
+https://www.youtube.com/watch?v=mr1anFEQV9s:
+- Alundra
+https://www.youtube.com/watch?v=msEbmIgnaSI:
+- Breath of Fire IV
+- Breath of Fire 4
+https://www.youtube.com/watch?v=mvcctOvLAh4:
+- Donkey Kong Country
+https://www.youtube.com/watch?v=mwWcWgKjN5Y:
+- F.E.A.R.
+https://www.youtube.com/watch?v=mwdGO2vfAho:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=myZzE9AYI90:
+- Silent Hill 2
+- Silent Hill II
+https://www.youtube.com/watch?v=myjd1MnZx5Y:
+- Dragon Quest IX
+- Dragon Quest 9
+https://www.youtube.com/watch?v=mzFGgwKMOKw:
+- Super Mario Land 2
+- Super Mario Land II
+https://www.youtube.com/watch?v=n10VyIRJj58:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=n2CyG6S363M:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=n4Pun5BDH0g:
+- Okamiden
+https://www.youtube.com/watch?v=n5L0ZpcDsZw:
+- Lufia II
+- Lufia 2
+https://www.youtube.com/watch?v=n5eb_qUg5rY:
+- Jazz Jackrabbit 2
+- Jazz Jackrabbit II
+https://www.youtube.com/watch?v=n6f-bb8DZ_k:
+- Street Fighter II
+- Street Fighter 2
+https://www.youtube.com/watch?v=n9QNuhs__8s:
+- 'Magna Carta: Tears of Blood'
+https://www.youtube.com/watch?v=nBWjVglSVGk:
+- The Flintstones
+https://www.youtube.com/watch?v=nEBoB571s9w:
+- Asterix & Obelix
+- asterix and obelix
+https://www.youtube.com/watch?v=nFsoCfGij0Y:
+- 'Batman: Return of the Joker'
+https://www.youtube.com/watch?v=nH7ma8TPnE8:
+- The Legend of Zelda
+https://www.youtube.com/watch?v=nJN-xeA7ZJo:
+- Treasure Master
+https://www.youtube.com/watch?v=nJgwF3gw9Xg:
+- 'Zelda II: The Adventure of Link'
+- 'Zelda 2: The Adventure of Link'
+https://www.youtube.com/watch?v=nK-IjRF-hs4:
+- 'Spyro: A Hero''s Tail'
+https://www.youtube.com/watch?v=nL3YMZ-Br0o:
+- Child of Light
+https://www.youtube.com/watch?v=nL5Y2NmHn38:
+- Fallout 4
+- Fallout IV
+https://www.youtube.com/watch?v=nO3lPvYVxzs:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=nOeGX-O_QRU:
+- Top Gear
+https://www.youtube.com/watch?v=nQC4AYA14UU:
+- Battery Jam
+https://www.youtube.com/watch?v=nRw54IXvpE8:
+- Gitaroo Man
+https://www.youtube.com/watch?v=nUScyv5DcIo:
+- Super Stickman Golf 2
+- Super Stickman Golf II
+https://www.youtube.com/watch?v=nUbwvWQOOvU:
+- Metal Gear Solid 3
+- Metal Gear Solid III
+https://www.youtube.com/watch?v=nUiZp8hb42I:
+- Intelligent Qube
+https://www.youtube.com/watch?v=nY8JLHPaN4c:
+- 'Ape Escape: Million Monkeys'
+https://www.youtube.com/watch?v=naIUUMurT5U:
+- Lara Croft GO
+https://www.youtube.com/watch?v=nea0ze3wh6k:
+- Toy Story 2
+- Toy Story II
+https://www.youtube.com/watch?v=nesYhwViPkc:
+- 'The Legend of Zelda: Tri Force Heroes'
+- tri force heroes
+https://www.youtube.com/watch?v=ng442hwhhAw:
+- Super Mario Bros 3
+- Super Mario Bros III
+https://www.youtube.com/watch?v=nj2d8U-CO9E:
+- Wild Arms 2
+- Wild Arms II
+https://www.youtube.com/watch?v=njoqMF6xebE:
+- 'Chip ''n Dale: Rescue Rangers'
+https://www.youtube.com/watch?v=nl57xFzDIM0:
+- Darksiders II
+- Darksiders 2
+https://www.youtube.com/watch?v=novAJAlNKHk:
+- Wild Arms 4
+- Wild Arms IV
+https://www.youtube.com/watch?v=nrNPfvs4Amc:
+- Super Turrican 2
+- Super Turrican II
+https://www.youtube.com/watch?v=nuUYTK61228:
+- Hyper Light Drifter
+https://www.youtube.com/watch?v=nuXnaXgt2MM:
+- Super Mario 64
+https://www.youtube.com/watch?v=nvv6JrhcQSo:
+- 'The Legend of Zelda: Spirit Tracks'
+- spirit tracks
+https://www.youtube.com/watch?v=ny2ludAFStY:
+- Sonic Triple Trouble
+https://www.youtube.com/watch?v=o0t8vHJtaKk:
+- Rayman
+https://www.youtube.com/watch?v=o5tflPmrT5c:
+- I am Setsuna
+- 1 am Setsuna
+https://www.youtube.com/watch?v=o8cQl5pL6R8:
+- Street Fighter IV
+- Street Fighter 4
+https://www.youtube.com/watch?v=oEEm45iRylE:
+- Super Princess Peach
+https://www.youtube.com/watch?v=oFbVhFlqt3k:
+- Xenogears
+https://www.youtube.com/watch?v=oHjt7i5nt8w:
+- Final Fantasy VI
+- Final Fantasy 6
+https://www.youtube.com/watch?v=oIPYptk_eJE:
+- 'Starcraft II: Wings of Liberty'
+- 'Starcraft 2: Wings of Liberty'
+https://www.youtube.com/watch?v=oJFAAWYju6c:
+- Ys Origin
+https://www.youtube.com/watch?v=oNjnN_p5Clo:
+- Bomberman 64
+https://www.youtube.com/watch?v=oPjI-qh3QWQ:
+- Opoona
+https://www.youtube.com/watch?v=oQVscNAg1cQ:
+- The Adventures of Bayou Billy
+https://www.youtube.com/watch?v=oYOdCD4mWsk:
+- Donkey Kong Country 2
+- Donkey Kong Country II
+https://www.youtube.com/watch?v=o_vtaSXF0WU:
+- 'Arc the Lad IV: Twilight of the Spirits'
+- 'Arc the Lad 4: Twilight of the Spirits'
+https://www.youtube.com/watch?v=obPhMUJ8G9k:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=ocVRCl9Kcus:
+- Shatter
+https://www.youtube.com/watch?v=odyd0b_WZ9E:
+- Dr. Mario
+https://www.youtube.com/watch?v=oeBGiKhMy-Q:
+- Chrono Cross
+https://www.youtube.com/watch?v=oksAhZuJ55I:
+- Etrian Odyssey II
+- Etrian Odyssey 2
+https://www.youtube.com/watch?v=ol2zCdVl3pQ:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=ooohjN5k5QE:
+- Cthulhu Saves the World
+https://www.youtube.com/watch?v=oseD00muRc8:
+- 'Phoenix Wright: Trials and Tribulations'
+https://www.youtube.com/watch?v=ouV9XFnqgio:
+- Final Fantasy Tactics
+https://www.youtube.com/watch?v=oubq22rV9sE:
+- Top Gear Rally
+https://www.youtube.com/watch?v=p-GeFCcmGzk:
+- World of Warcraft
+https://www.youtube.com/watch?v=p-dor7Fj3GM:
+- 'The Legend of Zelda: Majora''s Mask'
+- 'majora''s mask'
+https://www.youtube.com/watch?v=p2vEakoOIdU:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=p48dpXQixgk:
+- Beyond Good & Evil
+- beyond good and evil
+https://www.youtube.com/watch?v=p5ObFGkl_-4:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=p6LMIrRG16c:
+- Asterix & Obelix
+- asterix and obelix
+https://www.youtube.com/watch?v=p6alE3r44-E:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=p9Nt449SP24:
+- Guardian's Crusade
+https://www.youtube.com/watch?v=pAlhuLOMFbU:
+- World of Goo
+https://www.youtube.com/watch?v=pDW_nN8EkjM:
+- Wild Guns
+https://www.youtube.com/watch?v=pDznNHFE5rA:
+- Final Fantasy Tactics Advance
+https://www.youtube.com/watch?v=pETxZAqgYgQ:
+- 'Zelda II: The Adventure of Link'
+- 'Zelda 2: The Adventure of Link'
+https://www.youtube.com/watch?v=pI4lS0lxV18:
+- Terraria
+https://www.youtube.com/watch?v=pIC5D1F9EQQ:
+- 'Zelda II: The Adventure of Link'
+- 'Zelda 2: The Adventure of Link'
+https://www.youtube.com/watch?v=pOK5gWEnEPY:
+- Resident Evil REmake
+https://www.youtube.com/watch?v=pQVuAGSKofs:
+- Super Castlevania IV
+- Super Castlevania 4
+https://www.youtube.com/watch?v=pTp4d38cPtc:
+- Super Metroid
+https://www.youtube.com/watch?v=pWVxGmFaNFs:
+- Ragnarok Online II
+- Ragnarok Online 2
+https://www.youtube.com/watch?v=pYSlMtpYKgw:
+- Final Fantasy XII
+- Final Fantasy 12
+https://www.youtube.com/watch?v=pZBBZ77gob4:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=pb3EJpfIYGc:
+- Persona 5
+- Persona V
+https://www.youtube.com/watch?v=pbmKt4bb5cs:
+- Brave Fencer Musashi
+https://www.youtube.com/watch?v=pfe5a22BHGk:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=pgacxbSdObw:
+- Breath of Fire IV
+- Breath of Fire 4
+https://www.youtube.com/watch?v=pieNm70nCIQ:
+- Baten Kaitos
+https://www.youtube.com/watch?v=pmKP4hR2Td0:
+- Mario Paint
+https://www.youtube.com/watch?v=pmQu1KRUw7U:
+- New Super Mario Bros Wii
+https://www.youtube.com/watch?v=pnS50Lmz6Y8:
+- 'Beyond: Two Souls'
+https://www.youtube.com/watch?v=pqCxONuUK3s:
+- 'Persona Q: Shadow of the Labyrinth'
+https://www.youtube.com/watch?v=pq_nXXuZTtA:
+- Phantasy Star Online
+https://www.youtube.com/watch?v=prRDZPbuDcI:
+- Guilty Gear XX Reload (Korean Version)
+- Guilty Gear 20 Reload
+- guilty gear xx reload
+https://www.youtube.com/watch?v=prc_7w9i_0Q:
+- Super Mario RPG
+https://www.youtube.com/watch?v=ptr9JCSxeug:
+- Popful Mail
+https://www.youtube.com/watch?v=pucNWokmRr0:
+- Tales of Eternia
+https://www.youtube.com/watch?v=pwIy1Oto4Qc:
+- Dark Cloud
+https://www.youtube.com/watch?v=pxAH2U75BoM:
+- Guild Wars 2
+- Guild Wars II
+https://www.youtube.com/watch?v=pxcx_BACNQE:
+- Double Dragon
+https://www.youtube.com/watch?v=pyO56W8cysw:
+- Machinarium
+https://www.youtube.com/watch?v=q-Fc23Ksh7I:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=q-NUnKMEXnM:
+- Evoland II
+- Evoland 2
+https://www.youtube.com/watch?v=q5vG69CXgRs:
+- Pokemon Ruby / Sapphire / Emerald
+- pokemon ruby
+- pokemon sapphire
+- pokemon emerald
+https://www.youtube.com/watch?v=q6btinyHMAg:
+- Okamiden
+https://www.youtube.com/watch?v=q87OASJOKOg:
+- 'Castlevania: Aria of Sorrow'
+https://www.youtube.com/watch?v=q8ZKmxmWqhY:
+- Massive Assault
+https://www.youtube.com/watch?v=qBC7aIoDSHU:
+- 'Minecraft: Story Mode'
+https://www.youtube.com/watch?v=qBh4tvmT6N4:
+- Max Payne 3
+- Max Payne III
+https://www.youtube.com/watch?v=qEozZuqRbgQ:
+- Snowboard Kids 2
+- Snowboard Kids II
+https://www.youtube.com/watch?v=qH8MFPIvFpU:
+- Xenogears
+https://www.youtube.com/watch?v=qJMfgv5YFog:
+- Katamari Damacy
+https://www.youtube.com/watch?v=qMkvXCaxXOg:
+- Senko no Ronde DUO
+https://www.youtube.com/watch?v=qN32pn9abhI:
+- Secret of Mana
+https://www.youtube.com/watch?v=qNIAYDOCfGU:
+- Guacamelee!
+https://www.youtube.com/watch?v=qP_40IXc-UA:
+- Mutant Mudds
+https://www.youtube.com/watch?v=qPgoOxGb6vk:
+- For the Frog the Bell Tolls
+https://www.youtube.com/watch?v=qR8x99ylgqc:
+- Axiom Verge
+https://www.youtube.com/watch?v=q_ClDJNpFV8:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=qcf1CdKVATo:
+- Jurassic Park
+https://www.youtube.com/watch?v=qgJ0yQNX2cI:
+- A Boy And His Blob
+https://www.youtube.com/watch?v=qhYbg4fsPiE:
+- Pokemon Quest
+https://www.youtube.com/watch?v=qjNHwF3R-kg:
+- Starbound
+https://www.youtube.com/watch?v=qmeaNH7mWAY:
+- 'Animal Crossing: New Leaf'
+https://www.youtube.com/watch?v=qmvx5zT88ww:
+- Sonic the Hedgehog
+https://www.youtube.com/watch?v=qnJDEN-JOzY:
+- Ragnarok Online II
+- Ragnarok Online 2
+https://www.youtube.com/watch?v=qnvYRm_8Oy8:
+- Shenmue
+https://www.youtube.com/watch?v=qqa_pXXSMDg:
+- Panzer Dragoon Saga
+https://www.youtube.com/watch?v=qrmzQOAASXo:
+- Kirby's Return to Dreamland
+https://www.youtube.com/watch?v=qs3lqJnkMX8:
+- Kirby's Epic Yarn
+https://www.youtube.com/watch?v=qsDU8LC5PLI:
+- 'Tactics Ogre: Let Us Cling Together'
+https://www.youtube.com/watch?v=qtrFSnyvEX0:
+- Demon's Crest
+https://www.youtube.com/watch?v=qyrLcNCBnPQ:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=qzhWuriX9Ws:
+- Xenogears
+https://www.youtube.com/watch?v=r-zRrHICsw0:
+- LED Storm
+https://www.youtube.com/watch?v=r5A1MkzCX-s:
+- Castlevania
+https://www.youtube.com/watch?v=r5n9re80hcQ:
+- Dragon Quest VII 3DS
+- Dragon Quest 7 3DS
+https://www.youtube.com/watch?v=r6F92CUYjbI:
+- Titan Souls
+https://www.youtube.com/watch?v=r6dC9N4WgSY:
+- Lisa the Joyful
+https://www.youtube.com/watch?v=r7owYv6_tuw:
+- Tobal No. 1
+- Tobal No. I
+https://www.youtube.com/watch?v=rACVXsRX6IU:
+- Yoshi's Island DS
+https://www.youtube.com/watch?v=rADeZTd9qBc:
+- 'Ace Combat 5: The Unsung War'
+- 'Ace Combat V: The Unsung War'
+https://www.youtube.com/watch?v=rAJS58eviIk:
+- Ragnarok Online II
+- Ragnarok Online 2
+https://www.youtube.com/watch?v=rEE6yp873B4:
+- Contact
+https://www.youtube.com/watch?v=rFIzW_ET_6Q:
+- Shadow Hearts III
+- Shadow Hearts 3
+https://www.youtube.com/watch?v=rKGlXub23pw:
+- 'Ys VIII: Lacrimosa of Dana'
+- 'Ys 8: Lacrimosa of Dana'
+https://www.youtube.com/watch?v=rLM_wOEsOUk:
+- F-Zero
+https://www.youtube.com/watch?v=rLXgXfncaIA:
+- Anodyne
+https://www.youtube.com/watch?v=rLuP2pUwK8M:
+- Pop'n Music GB
+https://www.youtube.com/watch?v=rMxIyQqeGZ8:
+- Soma Bringer
+https://www.youtube.com/watch?v=rSBh2ZUKuq4:
+- 'Castlevania: Lament of Innocence'
+https://www.youtube.com/watch?v=rVmt7axswLo:
+- Castlevania Curse of Darkness
+https://www.youtube.com/watch?v=rXNrtuz0vl4:
+- Mega Man ZX
+https://www.youtube.com/watch?v=rXlxR7sH3iU:
+- Katamari Damacy
+https://www.youtube.com/watch?v=rY3n4qQZTWY:
+- Dragon Quest III
+- Dragon Quest 3
+https://www.youtube.com/watch?v=rZ2sNdqELMY:
+- Pikmin
+https://www.youtube.com/watch?v=rZn6QE_iVzA:
+- Tekken 5
+- Tekken V
+https://www.youtube.com/watch?v=rb9yuLqoryU:
+- Spelunky
+https://www.youtube.com/watch?v=rcnkZCiwKPs:
+- Trine
+https://www.youtube.com/watch?v=rd3QIW5ds4Q:
+- Spanky's Quest
+https://www.youtube.com/watch?v=reOJi31i9JM:
+- Chrono Trigger
+https://www.youtube.com/watch?v=rg_6OKlgjGE:
+- Shin Megami Tensei IV
+- Shin Megami Tensei 4
+https://www.youtube.com/watch?v=rhCzbGrG7DU:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=rhaQM_Vpiko:
+- Outlaws
+https://www.youtube.com/watch?v=rhbGqHurV5I:
+- Castlevania II
+- Castlevania 2
+https://www.youtube.com/watch?v=rltCi97DQ7Y:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=ro4ceM17QzY:
+- Sonic Lost World
+https://www.youtube.com/watch?v=roRsBf_kQps:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=rt0hrHroPz8:
+- 'Phoenix Wright: Ace Attorney'
+https://www.youtube.com/watch?v=ru4pkshvp7o:
+- Rayman Origins
+https://www.youtube.com/watch?v=rzLD0vbOoco:
+- 'Dracula X: Rondo of Blood'
+https://www.youtube.com/watch?v=rz_aiHo3aJg:
+- ActRaiser
+https://www.youtube.com/watch?v=s-6L1lM_x7k:
+- Final Fantasy XI
+- Final Fantasy 11
+https://www.youtube.com/watch?v=s-kTMBeDy40:
+- Grandia
+https://www.youtube.com/watch?v=s0mCsa2q2a4:
+- Donkey Kong Country 3
+- Donkey Kong Country III
+https://www.youtube.com/watch?v=s25IVZL0cuE:
+- 'Castlevania: Portrait of Ruin'
+https://www.youtube.com/watch?v=s3ja0vTezhs:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=s4pG2_UOel4:
+- Castlevania III
+- Castlevania 3
+https://www.youtube.com/watch?v=s6D8clnSE_I:
+- Pokemon
+https://www.youtube.com/watch?v=s7mVzuPSvSY:
+- Gravity Rush
+https://www.youtube.com/watch?v=sA_8Y30Lk2Q:
+- 'Ys VI: The Ark of Napishtim'
+- 'Ys 6: The Ark of Napishtim'
+https://www.youtube.com/watch?v=sBkqcoD53eI:
+- Breath of Fire II
+- Breath of Fire 2
+https://www.youtube.com/watch?v=sC4xMC4sISU:
+- Bioshock
+https://www.youtube.com/watch?v=sHQslJ2FaaM:
+- Krater
+https://www.youtube.com/watch?v=sHduBNdadTA:
+- 'Atelier Iris 2: The Azoth of Destiny'
+- 'Atelier Iris II: The Azoth of Destiny'
+https://www.youtube.com/watch?v=sIXnwB5AyvM:
+- Alundra
+https://www.youtube.com/watch?v=sMcx87rq0oA:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=sN8gtvYdqY4:
+- Opoona
+https://www.youtube.com/watch?v=sOgo6fXbJI4:
+- Final Fantasy Mystic Quest
+https://www.youtube.com/watch?v=sQ4aADxHssY:
+- Romance of the Three Kingdoms V
+- Romance of the Three Kingdoms 5
+https://www.youtube.com/watch?v=sRLoAqxsScI:
+- 'Tintin: Prisoners of the Sun'
+https://www.youtube.com/watch?v=sSkcY8zPWIY:
+- 'The Legend of Zelda: Skyward Sword'
+- skyward sword
+https://www.youtube.com/watch?v=sUc3p5sojmw:
+- 'Zelda II: The Adventure of Link'
+- 'Zelda 2: The Adventure of Link'
+https://www.youtube.com/watch?v=sVnly-OASsI:
+- Lost Odyssey
+https://www.youtube.com/watch?v=sYVOk6kU3TY:
+- 'South Park: The Stick of Truth'
+https://www.youtube.com/watch?v=sZU8xWDH68w:
+- The World Ends With You
+https://www.youtube.com/watch?v=s_Z71tcVVVg:
+- Super Mario Sunshine
+https://www.youtube.com/watch?v=seJszC75yCg:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=seaPEjQkn74:
+- Emil Chronicle Online
+https://www.youtube.com/watch?v=shx_nhWmZ-I:
+- 'Adventure Time: Hey Ice King! Why''d You Steal Our Garbage?!'
+https://www.youtube.com/watch?v=sl22D3F1954:
+- Marvel vs Capcom 3
+- Marvel vs Capcom III
+https://www.youtube.com/watch?v=snsS40I9-Ts:
+- Shovel Knight
+https://www.youtube.com/watch?v=sqIb-ZhY85Q:
+- Mega Man 5
+- Mega Man V
+https://www.youtube.com/watch?v=su8bqSqIGs0:
+- Chrono Trigger
+https://www.youtube.com/watch?v=sx6L5b-ACVk:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=sxcTW6DlNqA:
+- Super Adventure Island
+https://www.youtube.com/watch?v=szxxAefjpXw:
+- 'Mario & Luigi: Bowser''s Inside Story'
+- 'mario and luigi: bower''s inside story'
+https://www.youtube.com/watch?v=t6-MOj2mkgE:
+- '999: Nine Hours, Nine Persons, Nine Doors'
+https://www.youtube.com/watch?v=t6YVE2kp8gs:
+- Earthbound
+https://www.youtube.com/watch?v=t97-JQtcpRA:
+- Nostalgia
+https://www.youtube.com/watch?v=t9uUD60LS38:
+- 'SMT: Digital Devil Saga 2'
+- 'SMT: Digital Devil Saga II'
+https://www.youtube.com/watch?v=tBr9OyNHRjA:
+- 'Sang-Froid: Tales of Werewolves'
+https://www.youtube.com/watch?v=tDuCLC_sZZY:
+- 'Divinity: Original Sin'
+https://www.youtube.com/watch?v=tEXf3XFGFrY:
+- Sonic Unleashed
+https://www.youtube.com/watch?v=tFsVKUoGJZs:
+- Deus Ex
+https://www.youtube.com/watch?v=tIiNJgLECK0:
+- Super Mario RPG
+https://www.youtube.com/watch?v=tKMWMS7O50g:
+- Pokemon Mystery Dungeon
+https://www.youtube.com/watch?v=tKmmcOH2xao:
+- VVVVVV
+https://www.youtube.com/watch?v=tL3zvui1chQ:
+- 'The Legend of Zelda: Majora''s Mask'
+- 'majora''s mask'
+https://www.youtube.com/watch?v=tNvY96zReis:
+- Metal Gear Solid
+https://www.youtube.com/watch?v=tQYCO5rHSQ8:
+- Donkey Kong Land
+https://www.youtube.com/watch?v=tU3ZA2tFxDU:
+- Fatal Frame
+https://www.youtube.com/watch?v=tVnjViENsds:
+- Super Robot Wars 4
+- Super Robot Wars IV
+https://www.youtube.com/watch?v=tWopcEQUkhg:
+- Super Smash Bros. Wii U
+https://www.youtube.com/watch?v=tXnCJLLZIvc:
+- 'Paper Mario: The Thousand Year Door'
+https://www.youtube.com/watch?v=tbVLmRfeIQg:
+- Alundra
+https://www.youtube.com/watch?v=tdsnX2Z0a3g:
+- Blast Corps
+https://www.youtube.com/watch?v=tgxFLMM9TLw:
+- Lost Odyssey
+https://www.youtube.com/watch?v=tiL0mhmOOnU:
+- Sleepwalker
+https://www.youtube.com/watch?v=tiwsAs6WVyQ:
+- Castlevania II
+- Castlevania 2
+https://www.youtube.com/watch?v=tj3ks8GfBQU:
+- Guilty Gear XX Reload (Korean Version)
+- Guilty Gear 20 Reload
+- guilty gear xx reload
+https://www.youtube.com/watch?v=tk61GaJLsOQ:
+- Mother 3
+- Mother III
+https://www.youtube.com/watch?v=tkj57nM0OqQ:
+- Sonic the Hedgehog 2
+- Sonic the Hedgehog II
+https://www.youtube.com/watch?v=tlY88rlNnEE:
+- Xenogears
+https://www.youtube.com/watch?v=tnAXbjXucPc:
+- Battletoads & Double Dragon
+- battletoads
+- double dragon
+https://www.youtube.com/watch?v=tqyigq3uWzo:
+- Perfect Dark
+https://www.youtube.com/watch?v=tvGn7jf7t8c:
+- Shinobi
+https://www.youtube.com/watch?v=tvjGxtbJpMk:
+- Parasite Eve
+https://www.youtube.com/watch?v=ty4CBnWeEKE:
+- Mario Kart 64
+https://www.youtube.com/watch?v=tzi9trLh9PE:
+- Blue Dragon
+https://www.youtube.com/watch?v=u3S8CGo_klk:
+- Radical Dreamers
+https://www.youtube.com/watch?v=u4cv8dOFQsc:
+- Silent Hill 3
+- Silent Hill III
+https://www.youtube.com/watch?v=u5v8qTkf-yk:
+- Super Smash Bros. Brawl
+https://www.youtube.com/watch?v=u6Fa28hef7I:
+- Last Bible III
+- Last Bible 3
+https://www.youtube.com/watch?v=uDwLy1_6nDw:
+- F-Zero
+https://www.youtube.com/watch?v=uDzUf4I751w:
+- Mega Man Battle Network
+https://www.youtube.com/watch?v=uKK631j464M:
+- 'Castlevania: Symphony of the Night'
+https://www.youtube.com/watch?v=uKWkvGnNffU:
+- Dustforce
+https://www.youtube.com/watch?v=uM3dR2VbMck:
+- Super Stickman Golf 2
+- Super Stickman Golf II
+https://www.youtube.com/watch?v=uPU4gCjrDqg:
+- StarTropics
+https://www.youtube.com/watch?v=uSOspFMHVls:
+- Super Mario Bros 2
+- Super Mario Bros II
+https://www.youtube.com/watch?v=uTRjJj4UeCg:
+- Shovel Knight
+https://www.youtube.com/watch?v=uUA40z9kT6w:
+- Tomb Raider Legend
+https://www.youtube.com/watch?v=uURUC6yEMZc:
+- Yooka-Laylee
+https://www.youtube.com/watch?v=uV_g76ThygI:
+- Xenosaga III
+- Xenosaga 3
+https://www.youtube.com/watch?v=uX-Dk8gBgg8:
+- Valdis Story
+https://www.youtube.com/watch?v=uYX350EdM-8:
+- Secret of Mana
+https://www.youtube.com/watch?v=uYcqP1TWYOE:
+- Soul Blade
+https://www.youtube.com/watch?v=ucXYUeyQ6iM:
+- Pop'n Music 2
+- Pop'n Music II
+https://www.youtube.com/watch?v=udEC_I8my9Y:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=udNOf4W52hg:
+- Dragon Quest III
+- Dragon Quest 3
+https://www.youtube.com/watch?v=udO3kaNWEsI:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=uixqfTElRuI:
+- 'The Legend of Zelda: Wind Waker'
+- 'wind waker'
+https://www.youtube.com/watch?v=uj2mhutaEGA:
+- Ghouls 'n' Ghosts
+https://www.youtube.com/watch?v=ujverEHBzt8:
+- F-Zero GX
+https://www.youtube.com/watch?v=umh0xNPh-pY:
+- Okami
+https://www.youtube.com/watch?v=un-CZxdgudA:
+- Vortex
+https://www.youtube.com/watch?v=ung2q_BVXWY:
+- Nora to Toki no Koubou
+https://www.youtube.com/watch?v=uvRU3gsmXx4:
+- 'Qbeh-1: The Atlas Cube'
+- 'Qbeh-I: The Atlas Cube'
+https://www.youtube.com/watch?v=uwB0T1rExMc:
+- Drakkhen
+https://www.youtube.com/watch?v=uxETfaBcSYo:
+- Grandia II
+- Grandia 2
+https://www.youtube.com/watch?v=uy2OQ0waaPo:
+- Secret of Evermore
+https://www.youtube.com/watch?v=v-h3QCB_Pig:
+- Ninja Gaiden II
+- Ninja Gaiden 2
+https://www.youtube.com/watch?v=v02ZFogqSS8:
+- Pokemon Diamond / Pearl / Platinum
+- pokemon diamond
+- pokemon pearl
+- pokemon platinum
+https://www.youtube.com/watch?v=v0toUGs93No:
+- 'Command & Conquer: Tiberian Sun'
+- 'command and conquer: tiberian sun'
+https://www.youtube.com/watch?v=v4fgFmfuzqc:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=vCqkxI9eu44:
+- Astal
+https://www.youtube.com/watch?v=vEx9gtmDoRI:
+- 'Star Ocean 2: The Second Story'
+- 'Star Ocean II: The Second Story'
+https://www.youtube.com/watch?v=vLRhuxHiYio:
+- Hotline Miami 2
+- Hotline Miami II
+https://www.youtube.com/watch?v=vLkDLzEcJlU:
+- 'Final Fantasy VII: CC'
+- 'Final Fantasy 7: 200'
+https://www.youtube.com/watch?v=vMNf5-Y25pQ:
+- Final Fantasy V
+- Final Fantasy 5
+https://www.youtube.com/watch?v=vN9zJNpH3Mc:
+- Terranigma
+https://www.youtube.com/watch?v=vRRrOKsfxPg:
+- 'The Legend of Zelda: A Link to the Past'
+- a link to the past
+https://www.youtube.com/watch?v=vY8in7gADDY:
+- Tetrisphere
+https://www.youtube.com/watch?v=vZOCpswBNiw:
+- Lufia
+https://www.youtube.com/watch?v=v_9EdBLmHcE:
+- Equinox
+https://www.youtube.com/watch?v=vaJvNNWO_OQ:
+- Mega Man 2
+- Mega Man II
+https://www.youtube.com/watch?v=vbzmtIEujzk:
+- Deadly Premonition
+https://www.youtube.com/watch?v=vfRr0Y0QnHo:
+- Super Mario 64
+https://www.youtube.com/watch?v=vfqMK4BuN64:
+- Beyond Good & Evil
+- beyond good and evil
+https://www.youtube.com/watch?v=vgD6IngCtyU:
+- 'Romancing Saga: Minstrel Song'
+https://www.youtube.com/watch?v=vl6Cuvw4iyk:
+- Mighty Switch Force!
+https://www.youtube.com/watch?v=vmUwR3aa6dc:
+- F-Zero
+https://www.youtube.com/watch?v=vp6NjZ0cGiI:
+- Deep Labyrinth
+https://www.youtube.com/watch?v=vrWC1PosXSI:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=vsLJDafIEHc:
+- Legend of Grimrock
+https://www.youtube.com/watch?v=vsYHDEiBSrg:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=vtTk81cIJlg:
+- Magnetis
+https://www.youtube.com/watch?v=vz59icOE03E:
+- Boot Hill Heroes
+https://www.youtube.com/watch?v=w1tmFpEPagk:
+- Suikoden
+https://www.youtube.com/watch?v=w2HT5XkGaws:
+- 'Gremlins 2: The New Batch'
+- 'Gremlins II: The New Batch'
+https://www.youtube.com/watch?v=w4J4ZQP7Nq0:
+- Legend of Mana
+https://www.youtube.com/watch?v=w4b-3x2wqpw:
+- Breath of Death VII
+- Breath of Death 7
+https://www.youtube.com/watch?v=w6exvhdhIE8:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=w7dO2edfy00:
+- Wild Arms
+https://www.youtube.com/watch?v=wBAXLY1hq7s:
+- Ys Chronicles
+https://www.youtube.com/watch?v=wBUVdh4mVDc:
+- Lufia
+https://www.youtube.com/watch?v=wE8p0WBW4zo:
+- Guilty Gear XX Reload (Korean Version)
+- Guilty Gear 20 Reload
+- guilty gear xx reload
+https://www.youtube.com/watch?v=wEkfscyZEfE:
+- Sonic Rush
+https://www.youtube.com/watch?v=wFJYhWhioPI:
+- Shin Megami Tensei Nocturne
+https://www.youtube.com/watch?v=wFM8K7GLFKk:
+- Goldeneye
+https://www.youtube.com/watch?v=wHgmFPLNdW8:
+- Pop'n Music 8
+- Pop'n Music VIII
+https://www.youtube.com/watch?v=wKNz1SsO_cM:
+- Life is Strange
+https://www.youtube.com/watch?v=wKgoegkociY:
+- Opoona
+https://www.youtube.com/watch?v=wNfUOcOv1no:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=wPCmweLoa8Q:
+- Wangan Midnight Maximum Tune 3
+- Wangan Midnight Maximum Tune III
+https://www.youtube.com/watch?v=wPZgCJwBSgI:
+- Perfect Dark
+https://www.youtube.com/watch?v=wXSFR4tDIUs:
+- F-Zero
+https://www.youtube.com/watch?v=wXXgqWHDp18:
+- Tales of Zestiria
+https://www.youtube.com/watch?v=wXZ-2p4rC5s:
+- 'Metroid II: Return of Samus'
+- 'Metroid 2: Return of Samus'
+https://www.youtube.com/watch?v=w_6ZSQ2_7Q4:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=w_N7__8-9r0:
+- Donkey Kong Land
+https://www.youtube.com/watch?v=w_TOt-XQnPg:
+- Pokemon Ruby / Sapphire / Emerald
+- pokemon ruby
+- pokemon sapphire
+- pokemon emerald
+https://www.youtube.com/watch?v=waesdKG4rhM:
+- Dragon Quest VII 3DS
+- Dragon Quest 7 3DS
+https://www.youtube.com/watch?v=wdWZYggy75A:
+- Mother 4
+- Mother IV
+https://www.youtube.com/watch?v=wgAtWoPfBgQ:
+- Metroid Prime
+https://www.youtube.com/watch?v=wkrgYK2U5hE:
+- 'Super Monkey Ball: Step & Roll'
+- 'super monkey ball: step and roll'
+https://www.youtube.com/watch?v=wqb9Cesq3oM:
+- Super Mario RPG
+https://www.youtube.com/watch?v=wuFKdtvNOp0:
+- Granado Espada
+https://www.youtube.com/watch?v=wv6HHTa4jjI:
+- Miitopia
+https://www.youtube.com/watch?v=ww6KySR4MQ0:
+- Street Fighter II
+- Street Fighter 2
+https://www.youtube.com/watch?v=wxzrrUWOU8M:
+- Space Station Silicon Valley
+https://www.youtube.com/watch?v=wyYpZvfAUso:
+- Soul Calibur
+https://www.youtube.com/watch?v=x0wxJHbcDYE:
+- Prop Cycle
+https://www.youtube.com/watch?v=x4i7xG2IOOE:
+- 'Silent Hill: Origins'
+https://www.youtube.com/watch?v=x4mrK-42Z18:
+- Sonic Generations
+https://www.youtube.com/watch?v=x6VlzkDSU6k:
+- Parasite Eve
+https://www.youtube.com/watch?v=x9S3GnJ3_WQ:
+- Wild Arms
+https://www.youtube.com/watch?v=xFUvAJTiSH4:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=xJHVfLI5pLY:
+- 'Animal Crossing: Wild World'
+https://www.youtube.com/watch?v=xKxhEqH7UU0:
+- ICO
+https://www.youtube.com/watch?v=xP3PDznPrw4:
+- Dragon Quest IX
+- Dragon Quest 9
+https://www.youtube.com/watch?v=xTRmnisEJ7Y:
+- Super Mario Galaxy
+https://www.youtube.com/watch?v=xTxZchmHmBw:
+- Asterix
+https://www.youtube.com/watch?v=xWQOYiYHZ2w:
+- Antichamber
+https://www.youtube.com/watch?v=xWVBra_NpZo:
+- Bravely Default
+https://www.youtube.com/watch?v=xY86oDk6Ces:
+- Super Street Fighter II
+- Super Street Fighter 2
+https://www.youtube.com/watch?v=xZHoULMU6fE:
+- Firewatch
+https://www.youtube.com/watch?v=xaKXWFIz5E0:
+- Dragon Ball Z Butouden 2
+- Dragon Ball Z Butouden II
+https://www.youtube.com/watch?v=xajMfQuVnp4:
+- 'OFF'
+https://www.youtube.com/watch?v=xdQDETzViic:
+- The 7th Saga
+https://www.youtube.com/watch?v=xfzWn5b6MHM:
+- 'Silent Hill: Origins'
+https://www.youtube.com/watch?v=xgn1eHG_lr8:
+- Total Distortion
+https://www.youtube.com/watch?v=xhVwxYU23RU:
+- Bejeweled 3
+- Bejeweled III
+https://www.youtube.com/watch?v=xhgVOEt-wOo:
+- Final Fantasy VIII
+- Final Fantasy 8
+https://www.youtube.com/watch?v=xhzySCD19Ss:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=xieau-Uia18:
+- Sonic the Hedgehog (2006)
+- Sonic the Hedgehog 2006
+- sonic the hedgehog 06
+https://www.youtube.com/watch?v=xj0AV3Y-gFU:
+- 'The Legend of Zelda: Wind Waker'
+- wind waker
+https://www.youtube.com/watch?v=xkSD3pCyfP4:
+- Gauntlet
+https://www.youtube.com/watch?v=xl30LV6ruvA:
+- Fantasy Life
+https://www.youtube.com/watch?v=xorfsUKMGm8:
+- 'Shadow Hearts II: Covenant'
+- 'Shadow Hearts 2: Covenant'
+https://www.youtube.com/watch?v=xpu0N_oRDrM:
+- Final Fantasy X
+- Final Fantasy 10
+https://www.youtube.com/watch?v=xrLiaewZZ2E:
+- 'The Legend of Zelda: Twilight Princess'
+- twilight princess
+https://www.youtube.com/watch?v=xsC6UGAJmIw:
+- Waterworld
+https://www.youtube.com/watch?v=xtsyXDTAWoo:
+- Tetris Attack
+https://www.youtube.com/watch?v=xuCzPu3tHzg:
+- Seiken Densetsu 3
+- Seiken Densetsu III
+https://www.youtube.com/watch?v=xvvXFCYVmkw:
+- Mario Kart 64
+https://www.youtube.com/watch?v=xx9uLg6pYc0:
+- 'Spider-Man & X-Men: Arcade''s Revenge'
+- 'Spider-Man and X-Men: Arcade''s Revenge'
+https://www.youtube.com/watch?v=xze4yNQAmUU:
+- Mega Man 10
+https://www.youtube.com/watch?v=xzfhOQampfs:
+- Suikoden II
+- Suikoden 2
+https://www.youtube.com/watch?v=xzmv8C2I5ek:
+- 'Lightning Returns: Final Fantasy XIII'
+- 'Lightning Returns: Final Fantasy 13'
+https://www.youtube.com/watch?v=y0PixBaf8_Y:
+- Waterworld
+https://www.youtube.com/watch?v=y2MP97fwOa8:
+- Pokemon Ruby / Sapphire / Emerald
+- pokemon ruby
+- pokemon sapphire
+- pokemon emerald
+https://www.youtube.com/watch?v=y4DAIZM2sTc:
+- Breath of Fire III
+- Breath of Fire 3
+https://www.youtube.com/watch?v=y6UhV3E2H6w:
+- Xenoblade Chronicles
+https://www.youtube.com/watch?v=y81PyRX4ENA:
+- Zone of the Enders 2
+- Zone of the Enders II
+https://www.youtube.com/watch?v=y9SFrBt1xtw:
+- 'Mario Kart: Double Dash!!'
+https://www.youtube.com/watch?v=yCLW8IXbFYM:
+- Suikoden V
+- Suikoden 5
+https://www.youtube.com/watch?v=yDMN8XKs1z0:
+- Sonic 3D Blast (Saturn)
+- sonic 3d blast
+https://www.youtube.com/watch?v=yERMMu-OgEo:
+- Final Fantasy IV
+- Final Fantasy 4
+https://www.youtube.com/watch?v=yF_f-Y-MD2o:
+- Final Fantasy IX
+- Final Fantasy 9
+https://www.youtube.com/watch?v=yJrRo8Dqpkw:
+- 'Mario Kart: Double Dash !!'
+- 'mario kart double dash'
+https://www.youtube.com/watch?v=yTe_L2AYaI4:
+- Legend of Dragoon
+https://www.youtube.com/watch?v=yV7eGX8y2dM:
+- Hotline Miami 2
+- Hotline Miami II
+https://www.youtube.com/watch?v=yVcn0cFJY_c:
+- Xenosaga II
+- Xenosaga 2
+https://www.youtube.com/watch?v=yYPNScB1alA:
+- Speed Freaks
+https://www.youtube.com/watch?v=yZ5gFAjZsS4:
+- Wolverine
+https://www.youtube.com/watch?v=y_4Ei9OljBA:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=ye960O2B3Ao:
+- Star Fox
+https://www.youtube.com/watch?v=ygqp3eNXbI4:
+- Pop'n Music 18
+- Pop'n Music XVIII
+https://www.youtube.com/watch?v=yh8dWsIVCD8:
+- Battletoads
+https://www.youtube.com/watch?v=yirRajMEud4:
+- Jet Set Radio
+https://www.youtube.com/watch?v=yr7fU3D0Qw4:
+- Final Fantasy VII
+- Final Fantasy 7
+https://www.youtube.com/watch?v=ysLhWVbE12Y:
+- Panzer Dragoon
+https://www.youtube.com/watch?v=ysoz5EnW6r4:
+- Tekken 7
+- Tekken VII
+https://www.youtube.com/watch?v=ytp_EVRf8_I:
+- Super Mario RPG
+https://www.youtube.com/watch?v=yz1yrVcpWjA:
+- Persona 3
+- Persona III
+https://www.youtube.com/watch?v=yzgSscW7klw:
+- Steamworld Dig 2
+- Steamworld Dig II
+https://www.youtube.com/watch?v=z-QISdXXN_E:
+- Wild Arms Alter Code F
+https://www.youtube.com/watch?v=z1oW4USdB68:
+- 'The Legend of Zelda: Minish Cap'
+- minish cap
+https://www.youtube.com/watch?v=z513Tty2hag:
+- Fez
+https://www.youtube.com/watch?v=z5ndH9xEVlo:
+- Streets of Rage
+https://www.youtube.com/watch?v=z5oERC4cD8g:
+- Skies of Arcadia
+https://www.youtube.com/watch?v=zB-n8fx-Dig:
+- Kirby's Return to Dreamland
+https://www.youtube.com/watch?v=zCP7hfY8LPo:
+- Ape Escape
+https://www.youtube.com/watch?v=zFfgwmWuimk:
+- 'DmC: Devil May Cry'
+- devil may cry
+https://www.youtube.com/watch?v=zHej43S_OMI:
+- Radiata Stories
+https://www.youtube.com/watch?v=zLXJ6l4Gxsg:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=zO9y6EH6jVw:
+- 'Metroid Prime 2: Echoes'
+- 'Metroid Prime II: Echoes'
+https://www.youtube.com/watch?v=zS8QlZkN_kM:
+- Guardian's Crusade
+https://www.youtube.com/watch?v=zTHAKsaD_8U:
+- Super Mario Bros
+https://www.youtube.com/watch?v=zTKEnlYhL0M:
+- 'Gremlins 2: The New Batch'
+- 'Gremlins II: The New Batch'
+https://www.youtube.com/watch?v=zTOZesa-uG4:
+- 'Turok: Dinosaur Hunter'
+https://www.youtube.com/watch?v=zYMU-v7GGW4:
+- Kingdom Hearts
+https://www.youtube.com/watch?v=za05W9gtegc:
+- Metroid Prime
+https://www.youtube.com/watch?v=zawNmXL36zM:
+- SpaceChem
+https://www.youtube.com/watch?v=ziyH7x0P5tU:
+- Final Fantasy
+https://www.youtube.com/watch?v=zojcLdL7UTw:
+- Shining Hearts
+https://www.youtube.com/watch?v=zpVIM8de2xw:
+- Mega Man 3
+- Mega Man III
+https://www.youtube.com/watch?v=zpleUx1Llgs:
+- Super Smash Bros Wii U / 3DS
+- super smash bros wii u
+- super smas bros 3ds
+https://www.youtube.com/watch?v=zqFtW92WUaI:
+- Super Mario World
+https://www.youtube.com/watch?v=zqgfOTBPv3E:
+- Metroid Prime 3
+- Metroid Prime III
+https://www.youtube.com/watch?v=zsuBQNO7tps:
+- Dark Souls
+https://www.youtube.com/watch?v=ztLD9IqnRqY:
+- Metroid Prime 3
+- Metroid Prime III
+https://www.youtube.com/watch?v=ztiSivmoE0c:
+- Breath of Fire
+https://www.youtube.com/watch?v=zxZROhq4Lz0:
+- Pop'n Music 8
+- Pop'n Music VIII
diff --git a/audiotrivia/data/lists/guitar.yaml b/audiotrivia/data/lists/guitar.yaml
deleted file mode 100644
index 1c0d07e..0000000
--- a/audiotrivia/data/lists/guitar.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-https://www.youtube.com/watch?v=hfyE220BsD0:
-- holiday
-https://www.youtube.com/watch?v=Hh3U9iPKeXQ:
-- sultans of swing
\ No newline at end of file
diff --git a/audiotrivia/data/lists/league.yaml b/audiotrivia/data/lists/league.yaml
deleted file mode 100644
index 323aadd..0000000
--- a/audiotrivia/data/lists/league.yaml
+++ /dev/null
@@ -1,4 +0,0 @@
-https://www.youtube.com/watch?v=Hi1kUdreiWk:
-- Jinx
-https://www.youtube.com/watch?v=PNYHFluhOGI:
-- Teemo
\ No newline at end of file
diff --git a/audiotrivia/data/lists/nhlgoalhorns.yaml b/audiotrivia/data/lists/nhlgoalhorns.yaml
new file mode 100644
index 0000000..689f478
--- /dev/null
+++ b/audiotrivia/data/lists/nhlgoalhorns.yaml
@@ -0,0 +1,125 @@
+AUTHOR: Lazar
+https://youtu.be/6OejNXrGkK0:
+- Anaheim Ducks
+- Anaheim
+- Ducks
+https://youtu.be/RbUxSPoU9Yg:
+- Arizona Coyotes
+- Arizona
+- Coyotes
+https://youtu.be/DsI0PgWADks:
+- Boston Bruins
+- Boston
+- Bruins
+https://youtu.be/hjFTd3MJOHc:
+- Buffalo Sabres
+- Buffalo
+- Sabres
+https://youtu.be/sn1PliBCRDY:
+- Calgary Flames
+- Calgary
+- Flames
+https://youtu.be/3exZm6Frd18:
+- Carolina Hurricanes
+- Carolina
+- Hurricanes
+https://youtu.be/sBeXPMkqR80:
+- Chicago Blackhawks
+- Chicago
+- Blackhawks
+https://youtu.be/MARxzs_vCPI:
+- Colorado Avalanche
+- Colorado
+- Avalanche
+https://youtu.be/6yYbQfOWw4k:
+- Columbus Blue Jackets
+- Columbus
+- Blue Jackets
+https://youtu.be/Af8_9NP5lyw:
+- Dallas
+- Stars
+- Dallas Stars
+https://youtu.be/JflfvLvY7ks:
+- Detroit Red Wings
+- Detroit
+- Red wings
+https://youtu.be/xc422k5Tcqc:
+- Edmonton Oilers
+- Edmonton
+- Oilers
+https://youtu.be/Dm1bjUB9HLE:
+- Florida Panthers
+- Florida
+- Panthers
+https://youtu.be/jSgd3aIepY4:
+- Los Angeles Kings
+- Los Angeles
+- Kings
+https://youtu.be/4Pj8hWPR9VI:
+- Minnesota Wild
+- Minnesota
+- Wild
+https://youtu.be/rRGlUFWEBMk:
+- Montreal Canadiens
+- Montreal
+- Canadiens
+https://youtu.be/fHTehdlMwWQ:
+- Nashville Predators
+- Nashville
+- Predators
+https://youtu.be/4q0eNg-AbrQ:
+- New Jersey Devils
+- New Jersey
+- Devils
+https://youtu.be/ZC514zGrL80:
+- New York
+- Islanders
+- New York Islanders
+https://youtu.be/Zzfks2A2n38:
+- New York Rangers
+- New York
+- Rangers
+https://youtu.be/fHlWxPRNVBc:
+- Ottawa Senators
+- Ottawa
+- Senators
+https://youtu.be/0LsXpMiVD1E:
+- Philadelphia Flyers
+- Philadelphia
+- Flyers
+https://youtu.be/Llw3adcNuzI:
+- Pittsburgh Penguins
+- Pittsburgh
+- Penguins
+https://youtu.be/NZqSBkmpbLw:
+- San Jose Sharks
+- San Jose
+- Sharks
+https://youtu.be/Q23TDOJsY1s:
+- St. Louis Blues
+- St. Louis
+- Blues
+https://youtu.be/bdhDXxM20iM:
+- Tampa Bay Lightning
+- Tampa Bay
+- Lightning
+https://youtu.be/2cyekaemZgs:
+- Toronto Maple Leafs
+- Toronto
+- Maple Leafs
+https://youtu.be/CPozN-ZHpAo:
+- Vancouver
+- Canucks
+- Vancouver Canucks
+https://youtu.be/zheGI316WXg:
+- Vegas Golden Knights
+- Vegas
+- Golden Knights
+https://youtu.be/BH_CC1RxtfU:
+- Washington Capitals
+- Washington
+- Capitals
+https://youtu.be/3gcahU_i9WE:
+- Winnipeg Jets
+- Winnipeg
+- Jets
diff --git a/audiotrivia/info.json b/audiotrivia/info.json
index 519973e..655aa0d 100644
--- a/audiotrivia/info.json
+++ b/audiotrivia/info.json
@@ -2,19 +2,16 @@
"author": [
"Bobloy"
],
- "bot_version": [
- 3,
- 0,
- 0
- ],
+ "min_bot_version": "3.3.0",
"description": "Start an Audio Trivia game",
"hidden": false,
"install_msg": "Thank you for installing Audio trivia!\n You **MUST** unload trivia to use this (`[p]unload trivia`)\n Then you can get started with `[p]load audiotrivia` and `[p]help AudioTrivia`",
- "requirements": [],
"short": "Start an Audio Trivia game",
+ "end_user_data_statement": "This cog expands the core Audio and Trivia cogs without collecting any additional End User Data.\nSee the core End User Data storage for more information",
"tags": [
"fox",
"bobloy",
- "games"
+ "games",
+ "audio"
]
}
\ No newline at end of file
diff --git a/ccrole/ccrole.py b/ccrole/ccrole.py
index fee9a2a..eb654b1 100644
--- a/ccrole/ccrole.py
+++ b/ccrole/ccrole.py
@@ -1,34 +1,50 @@
import asyncio
+import logging
import re
-from typing import Any
import discord
-from redbot.core import Config, checks
-from redbot.core import commands
-from redbot.core.utils.chat_formatting import pagify, box
+from discord.ext.commands.view import StringView
+from redbot.core import Config, checks, commands
+from redbot.core.bot import Red
+from redbot.core.utils.chat_formatting import box, pagify
+from redbot.core.utils.mod import get_audit_reason
-Cog: Any = getattr(commands, "Cog", object)
+log = logging.getLogger("red.fox_v3.ccrole")
-class CCRole(Cog):
+async def _get_roles_from_content(ctx, content):
+ content_list = content.split(",")
+ try:
+ role_list = [
+ discord.utils.get(ctx.guild.roles, name=role.strip(" ")).id for role in content_list
+ ]
+ except (discord.HTTPException, AttributeError): # None.id is attribute error
+ return None
+ else:
+ return role_list
+
+
+class CCRole(commands.Cog):
"""
Custom commands
Creates commands used to display text and adjust roles
"""
- def __init__(self, bot):
+ def __init__(self, bot: Red):
+ super().__init__()
self.bot = bot
self.config = Config.get_conf(self, identifier=9999114111108101)
- default_guild = {
- "cmdlist": {},
- "settings": {}
- }
+ default_guild = {"cmdlist": {}, "settings": {}}
self.config.register_guild(**default_guild)
+ async def red_delete_data_for_user(self, **kwargs):
+ """Nothing to delete"""
+ return
+
@commands.guild_only()
@commands.group()
- async def ccrole(self, ctx):
+ async def ccrole(self, ctx: commands.Context):
"""Custom commands management with roles
Highly customizable custom commands with role management."""
@@ -42,6 +58,12 @@ class CCRole(Cog):
When adding text, put arguments in `{}` to eval them
Options: `{author}`, `{target}`, `{server}`, `{channel}`, `{message}`"""
+
+ # TODO: Clean this up so it's not so repetitive
+ # The call/answer format has better options as well
+ # Saying "none" over and over can trigger automod actions as well
+ # Also, allow `ctx.tick()` instead of sending a message
+
command = command.lower()
if command in self.bot.all_commands:
await ctx.send("That command is already a standard command.")
@@ -54,65 +76,78 @@ class CCRole(Cog):
cmd_list = self.config.guild(guild).cmdlist
if await cmd_list.get_raw(command, default=None):
- await ctx.send("This command already exists. Delete it with `{}ccrole delete` first.".format(ctx.prefix))
+ await ctx.send(
+ "This command already exists. Delete it with `{}ccrole delete` first.".format(
+ ctx.prefix
+ )
+ )
return
# Roles to add
- await ctx.send('What roles should it add? (Must be **comma separated**)\nSay `None` to skip adding roles')
+ await ctx.send(
+ "What roles should it add? (Must be **comma separated**)\n"
+ "Say `None` to skip adding roles"
+ )
def check(m):
return m.author == author and m.channel == channel
try:
- answer = await self.bot.wait_for('message', timeout=120, check=check)
+ answer = await self.bot.wait_for("message", timeout=120, check=check)
except asyncio.TimeoutError:
await ctx.send("Timed out, canceling")
return
arole_list = []
if answer.content.upper() != "NONE":
- arole_list = await self._get_roles_from_content(ctx, answer.content)
+ arole_list = await _get_roles_from_content(ctx, answer.content)
if arole_list is None:
await ctx.send("Invalid answer, canceling")
return
# Roles to remove
- await ctx.send('What roles should it remove? (Must be comma separated)\nSay `None` to skip removing roles')
+ await ctx.send(
+ "What roles should it remove? (Must be comma separated)\n"
+ "Say `None` to skip removing roles"
+ )
try:
- answer = await self.bot.wait_for('message', timeout=120, check=check)
+ answer = await self.bot.wait_for("message", timeout=120, check=check)
except asyncio.TimeoutError:
await ctx.send("Timed out, canceling")
return
rrole_list = []
if answer.content.upper() != "NONE":
- rrole_list = await self._get_roles_from_content(ctx, answer.content)
+ rrole_list = await _get_roles_from_content(ctx, answer.content)
if rrole_list is None:
await ctx.send("Invalid answer, canceling")
return
# Roles to use
await ctx.send(
- 'What roles are allowed to use this command? (Must be comma separated)\nSay `None` to allow all roles')
+ "What roles are allowed to use this command? (Must be comma separated)\n"
+ "Say `None` to allow all roles"
+ )
try:
- answer = await self.bot.wait_for('message', timeout=120, check=check)
+ answer = await self.bot.wait_for("message", timeout=120, check=check)
except asyncio.TimeoutError:
await ctx.send("Timed out, canceling")
return
prole_list = []
if answer.content.upper() != "NONE":
- prole_list = await self._get_roles_from_content(ctx, answer.content)
+ prole_list = await _get_roles_from_content(ctx, answer.content)
if prole_list is None:
await ctx.send("Invalid answer, canceling")
return
# Selfrole
- await ctx.send('Is this a targeted command?(yes//no)\nNo will make this a selfrole command')
+ await ctx.send("Is this a targeted command?(yes/no)\n"
+ "No will make this a selfrole command")
try:
- answer = await self.bot.wait_for('message', timeout=120, check=check)
+ answer = await self.bot.wait_for("message", timeout=120, check=check)
except asyncio.TimeoutError:
await ctx.send("Timed out, canceling")
return
@@ -126,24 +161,31 @@ class CCRole(Cog):
# Message to send
await ctx.send(
- 'What message should the bot say when using this command?\n'
- 'Say `None` to send the default `Success!` message\n'
- 'Eval Options: `{author}`, `{target}`, `{server}`, `{channel}`, `{message}`\n'
- 'For example: `Welcome {target.mention} to {server.name}!`')
+ "What message should the bot say when using this command?\n"
+ "Say `None` to send no message and just react with ✅\n"
+ "Eval Options: `{author}`, `{target}`, `{server}`, `{channel}`, `{message}`\n"
+ "For example: `Welcome {target.mention} to {server.name}!`"
+ )
try:
- answer = await self.bot.wait_for('message', timeout=120, check=check)
+ answer = await self.bot.wait_for("message", timeout=120, check=check)
except asyncio.TimeoutError:
await ctx.send("Timed out, canceling")
return
- text = "Success!"
+ text = None
if answer.content.upper() != "NONE":
text = answer.content
# Save the command
- out = {'text': text, 'aroles': arole_list, 'rroles': rrole_list, "proles": prole_list, "targeted": targeted}
+ out = {
+ "text": text,
+ "aroles": arole_list,
+ "rroles": rrole_list,
+ "proles": prole_list,
+ "targeted": targeted,
+ }
await cmd_list.set_raw(command, value=out)
@@ -164,7 +206,7 @@ class CCRole(Cog):
await self.config.guild(guild).cmdlist.set_raw(command, value=None)
await ctx.send("Custom command successfully deleted.")
- @ccrole.command(name="details")
+ @ccrole.command(name="details", aliases=["detail"])
async def ccrole_details(self, ctx, command: str):
"""Provide details about passed custom command"""
guild = ctx.guild
@@ -174,18 +216,24 @@ class CCRole(Cog):
await ctx.send("That command doesn't exist")
return
- embed = discord.Embed(title=command,
- description="{} custom command".format("Targeted" if cmd['targeted'] else "Non-Targeted"))
+ embed = discord.Embed(
+ title=command,
+ description="{} custom command".format(
+ "Targeted" if cmd["targeted"] else "Non-Targeted"
+ ),
+ )
def process_roles(role_list):
if not role_list:
return "None"
- return ", ".join([discord.utils.get(ctx.guild.roles, id=roleid).name for roleid in role_list])
+ return ", ".join(
+ [discord.utils.get(ctx.guild.roles, id=roleid).name for roleid in role_list]
+ )
- embed.add_field(name="Text", value="```{}```".format(cmd['text']))
- embed.add_field(name="Adds Roles", value=process_roles(cmd['aroles']), inline=True)
- embed.add_field(name="Removes Roles", value=process_roles(cmd['rroles']), inline=True)
- embed.add_field(name="Role Restrictions", value=process_roles(cmd['proles']), inline=True)
+ embed.add_field(name="Text", value="```{}```".format(cmd["text"]), inline=False)
+ embed.add_field(name="Adds Roles", value=process_roles(cmd["aroles"]), inline=False)
+ embed.add_field(name="Removes Roles", value=process_roles(cmd["rroles"]), inline=False)
+ embed.add_field(name="Role Restrictions", value=process_roles(cmd["proles"]), inline=False)
await ctx.send(embed=embed)
@@ -198,44 +246,63 @@ class CCRole(Cog):
if not cmd_list:
await ctx.send(
"There are no custom commands in this server. Use `{}ccrole add` to start adding some.".format(
- ctx.prefix))
+ ctx.prefix
+ )
+ )
return
cmd_list = ", ".join([ctx.prefix + c for c in sorted(cmd_list.keys())])
cmd_list = "Custom commands:\n\n" + cmd_list
- if len(cmd_list) < 1500: # I'm allowed to have arbitrary numbers for when it's too much to dm dammit
+ if (
+ len(cmd_list) < 1500
+ ): # I'm allowed to have arbitrary numbers for when it's too much to dm dammit
await ctx.send(box(cmd_list))
else:
for page in pagify(cmd_list, delims=[" ", "\n"]):
await ctx.author.send(box(page))
await ctx.send("Command list DM'd")
- async def on_message(self, message):
- if len(message.content) < 2 or message.guild is None:
+ @commands.Cog.listener()
+ async def on_message_without_command(self, message: discord.Message):
+ """
+ Credit to:
+ https://github.com/Cog-Creators/Red-DiscordBot/blob/V3/develop/redbot/cogs/customcom/customcom.py#L508
+ for the message filtering
+ """
+ # This covers message.author.bot check
+ if not await self.bot.message_eligible_as_command(message):
return
- guild = message.guild
- try:
- prefix = await self.get_prefix(message)
- except ValueError:
+ ###########
+ is_private = isinstance(message.channel, discord.abc.PrivateChannel)
+
+ if is_private or len(message.content) < 2:
return
+ if await self.bot.cog_disabled_in_guild(self, message.guild):
+ return
+
+ ctx = await self.bot.get_context(message)
+
+ if ctx.prefix is None:
+ return
+ ###########
+ # Thank you Cog-Creators
+
+ cmd = ctx.invoked_with
+ cmd = cmd.lower() # Continues the proud case_insentivity tradition of ccrole
+ guild = ctx.guild
+ # message = ctx.message # Unneeded since switch to `on_message_without_command` from `on_command_error`
+
cmdlist = self.config.guild(guild).cmdlist
- cmd = message.content[len(prefix):].split()[0].lower()
+ # cmd = message.content[len(prefix) :].split()[0].lower()
cmd = await cmdlist.get_raw(cmd, default=None)
if cmd is not None:
- await self.eval_cc(cmd, message)
-
- async def _get_roles_from_content(self, ctx, content):
- content_list = content.split(",")
- try:
- role_list = [discord.utils.get(ctx.guild.roles, name=role.strip(' ')).id for role in content_list]
- except (discord.HTTPException, AttributeError): # None.id is attribute error
- return None
+ await self.eval_cc(cmd, message, ctx)
else:
- return role_list
+ log.debug(f"No custom command named {ctx.invoked_with} found")
async def get_prefix(self, message: discord.Message) -> str:
"""
@@ -249,55 +316,79 @@ class CCRole(Cog):
"""
content = message.content
prefix_list = await self.bot.command_prefix(self.bot, message)
- prefixes = sorted(prefix_list,
- key=lambda pfx: len(pfx),
- reverse=True)
+ prefixes = sorted(prefix_list, key=lambda pfx: len(pfx), reverse=True)
for p in prefixes:
if content.startswith(p):
return p
raise ValueError
- async def eval_cc(self, cmd, message):
+ async def eval_cc(self, cmd, message: discord.Message, ctx: commands.Context):
"""Does all the work"""
- if cmd['proles'] and not (set(role.id for role in message.author.roles) & set(cmd['proles'])):
+ if cmd["proles"] and not (
+ set(role.id for role in message.author.roles) & set(cmd["proles"])
+ ):
+ log.debug(f"{message.author} missing required role to execute {ctx.invoked_with}")
return # Not authorized, do nothing
- if cmd['targeted']:
- try:
- target = discord.utils.get(message.guild.members, mention=message.content.split()[1])
- except IndexError: # .split() return list of len<2
+ if cmd["targeted"]:
+ view: StringView = ctx.view
+ view.skip_ws()
+
+ guild: discord.Guild = ctx.guild
+ # print(f"Guild: {guild}")
+
+ target = view.get_quoted_word()
+ # print(f"Target: {target}")
+
+ if target:
+ # target = discord.utils.get(guild.members, mention=target)
+ try:
+ target = await commands.MemberConverter().convert(ctx, target)
+ except commands.BadArgument:
+ target = None
+ else:
target = None
if not target:
- out_message = "This custom command is targeted! @mention a target\n`{} `".format(
- message.content.split()[0])
- await message.channel.send(out_message)
+ out_message = (
+ f"This custom command is targeted! @mention a target\n`"
+ f"{ctx.invoked_with} `"
+ )
+ await ctx.send(out_message)
return
else:
target = message.author
- if cmd['aroles']:
- arole_list = [discord.utils.get(message.guild.roles, id=roleid) for roleid in cmd['aroles']]
- # await self.bot.send_message(message.channel, "Adding: "+str([str(arole) for arole in arole_list]))
+ reason = get_audit_reason(message.author)
+
+ if cmd["aroles"]:
+ arole_list = [
+ discord.utils.get(message.guild.roles, id=roleid) for roleid in cmd["aroles"]
+ ]
try:
- await target.add_roles(*arole_list)
+ await target.add_roles(*arole_list, reason=reason)
except discord.Forbidden:
- await message.channel.send("Permission error: Unable to add roles")
- await asyncio.sleep(1)
+ log.exception(f"Permission error: Unable to add roles")
+ await ctx.send("Permission error: Unable to add roles")
- if cmd['rroles']:
- rrole_list = [discord.utils.get(message.guild.roles, id=roleid) for roleid in cmd['rroles']]
- # await self.bot.send_message(message.channel, "Removing: "+str([str(rrole) for rrole in rrole_list]))
+ if cmd["rroles"]:
+ rrole_list = [
+ discord.utils.get(message.guild.roles, id=roleid) for roleid in cmd["rroles"]
+ ]
try:
- await target.remove_roles(*rrole_list)
+ await target.remove_roles(*rrole_list, reason=reason)
except discord.Forbidden:
- await message.channel.send("Permission error: Unable to remove roles")
+ log.exception(f"Permission error: Unable to remove roles")
+ await ctx.send("Permission error: Unable to remove roles")
- out_message = self.format_cc(cmd, message, target)
- await message.channel.send(out_message)
+ if cmd["text"] is not None:
+ out_message = self.format_cc(cmd, message, target)
+ await ctx.send(out_message, allowed_mentions=discord.AllowedMentions())
+ else:
+ await ctx.tick()
def format_cc(self, cmd, message, target):
- out = cmd['text']
+ out = cmd["text"]
results = re.findall("{([^}]+)\}", out)
for result in results:
param = self.transform_parameter(result, message, target)
@@ -308,6 +399,7 @@ class CCRole(Cog):
"""
For security reasons only specific objects are allowed
Internals are ignored
+ Copied from customcom.CustomCommands.transform_parameter and added `target`
"""
raw_result = "{" + result + "}"
objects = {
@@ -316,7 +408,7 @@ class CCRole(Cog):
"channel": message.channel,
"server": message.guild,
"guild": message.guild,
- "target": target
+ "target": target,
}
if result in objects:
return str(objects[result])
diff --git a/ccrole/info.json b/ccrole/info.json
index 0c0c70c..4f29a5f 100644
--- a/ccrole/info.json
+++ b/ccrole/info.json
@@ -2,16 +2,12 @@
"author": [
"Bobloy"
],
- "bot_version": [
- 3,
- 0,
- 0
- ],
- "description": "[Incomplete] Creates custom commands to adjust roles and send custom messages",
+ "min_bot_version": "3.4.0",
+ "description": "Creates custom commands to adjust roles and send custom messages",
"hidden": false,
"install_msg": "Thank you for installing Custom Commands w/ Roles. Get started with `[p]load ccrole` and `[p]help CCRole`",
- "requirements": [],
- "short": "[Incomplete] Creates commands that adjust roles",
+ "short": "Creates commands that adjust roles",
+ "end_user_data_statement": "This cog does not store any End User Data",
"tags": [
"fox",
"bobloy",
diff --git a/chatter/README.md b/chatter/README.md
new file mode 100644
index 0000000..8ef6734
--- /dev/null
+++ b/chatter/README.md
@@ -0,0 +1,217 @@
+# Chatter
+
+Chatter is a tool designed to be a self-hosted chat cog.
+
+It is based on the brilliant work over at [Chatterbot](https://github.com/gunthercox/ChatterBot) and [spaCy](https://github.com/explosion/spaCy)
+
+
+## Known Issues
+
+* Chatter will not reload
+ * Causes this error:
+ ```
+ chatterbot.adapters.Adapter.InvalidAdapterTypeException: chatterbot.storage.SQLStorageAdapter must be a subclass of StorageAdapter
+ ```
+* Chatter responses are slow
+ * This is an unfortunate side-effect to running self-hosted maching learning on a discord bot.
+ * This version includes a number of attempts at improving this, but there is only so much that can be done.
+* Chatter responses are irrelevant
+ * This can be caused by bad training, but sometimes the data just doesn't come together right.
+ * Asking for better accuracy often leads to slower responses as well, so I've leaned towards speed over accuracy.
+* Chatter installation is not working
+ * See installation instructions below
+
+## Warning
+
+**Chatter is a CPU, RAM, and Disk intensive cog.**
+
+Chatter by default uses spaCy's `en_core_web_md` training model, which is ~50 MB
+
+Chatter can potential use spaCy's `en_core_web_lg` training model, which is ~800 MB
+
+Chatter uses as sqlite database that can potentially take up a large amount of disk space,
+depending on how much training Chatter has done.
+
+The sqlite database can be safely deleted at any time. Deletion will only erase training data.
+
+
+# Installation
+The installation is currently very tricky on Windows.
+
+There are a number of reasons for this, but the main ones are as follows:
+* Using a dev version of chatterbot
+* Some chatterbot requirements conflict with Red's (as of 3.10)
+* spaCy version is newer than chatterbot's requirements
+* A symlink in spacy to map `en` to `en_core_web_sm` requires admin permissions on windows
+* C++ Build tools are required on Windows for spaCy
+* Pandoc is required for something on windows, but I can't remember what
+
+Linux is a bit easier, but only tested on Debian and Ubuntu.
+
+## Windows Prerequisites
+
+**Requires 64 Bit Python to continue on Windows.**
+
+Install these on your windows machine before attempting the installation:
+
+[Visual Studio C++ Build Tools](https://visualstudio.microsoft.com/visual-cpp-build-tools/)
+
+[Pandoc - Universal Document Converter](https://pandoc.org/installing.html)
+
+## Methods
+### Windows - Manually
+#### Step 1: Built-in Downloader
+
+You need to get a copy of the requirements.txt provided with chatter, I recommend this method.
+
+```
+[p]repo add Fox https://github.com/bobloy/Fox-V3
+```
+
+#### Step 2: Install Requirements
+
+Make sure you have your virtual environment that you installed Red on activated before starting this step. See the Red Docs for details on how.
+
+In a terminal running as an admin, navigate to the directory containing this repo.
+
+I've used my install directory as an example.
+
+```
+cd C:\Users\Bobloy\AppData\Local\Red-DiscordBot\Red-DiscordBot\data\bobbot\cogs\RepoManager\repos\Fox\chatter
+pip install -r requirements.txt
+pip install --no-deps "chatterbot>=1.1"
+```
+
+#### Step 3: Load Chatter
+
+```
+[p]repo add Fox https://github.com/bobloy/Fox-V3 # If you didn't already do this in step 1
+[p]cog install Fox chatter
+[p]load chatter
+```
+
+### Linux - Manually
+
+#### Step 1: Built-in Downloader
+
+```
+[p]cog install Chatter
+```
+
+#### Step 2: Install Requirements
+
+In your console with your virtual environment activated:
+
+```
+pip install --no-deps "chatterbot>=1.1"
+```
+
+### Step 3: Load Chatter
+
+```
+[p]load chatter
+```
+
+# Configuration
+
+Chatter works out the the box without any training by learning as it goes,
+but will have very poor and repetitive responses at first.
+
+Initial training is recommended to speed up its learning.
+
+## Training Setup
+
+### Minutes
+```
+[p]chatter minutes X
+```
+This command configures what Chatter considers the maximum amount of minutes
+that can pass between statements before considering it a new conversation.
+
+Servers with lots of activity should set this low, where servers with low activity
+will want this number to be fairly high.
+
+This is only used during training.
+
+### Age
+
+```
+[p]chatter age X
+```
+This command configures the maximum number of days Chatter will look back when
+gathering messages for training.
+
+Setting this to be extremely high is not recommended due to the increased disk space required to store
+the data. Additionally, higher numbers will increase the training time tremendously.
+
+
+## Training
+
+### Train English
+
+```
+[p]chatter trainenglish
+```
+
+This will train chatter on basic english greetings and conversations.
+This is far from complete, but can act as a good base point for new installations.
+
+### Train Channel
+
+```
+[p]chatter train #channel_name
+```
+This command trains Chatter on the specified channel based on the configured
+settings. This can take a long time to process.
+
+
+### Train Ubuntu
+
+```
+[p]chatter trainubuntu
+```
+*WARNING:* This will trigger a large download and use a lot of processing power
+
+This command trains Chatter on the publicly available Ubuntu Dialogue Corpus. (It'll talk like a geek)
+
+
+## Switching Algorithms
+
+```
+[p]chatter algorithm X
+```
+or
+```
+[p]chatter algo X 0.95
+```
+
+Chatter can be configured to use one of three different Similarity algorithms.
+
+Changing this can help if the response speed is too slow, but can reduce the accuracy of results.
+
+The second argument is the maximum similarity threshold,
+lowering that will make the bot stop searching sooner.
+
+Default maximum similarity threshold is 0.90
+
+
+## Switching Pretrained Models
+
+```
+[p]chatter model X
+```
+
+Chatter can be configured to use one of three pretrained statistical models for English.
+
+I have not noticed any advantage to changing this,
+but supposedly it would help by splitting the search term into more useful parts.
+
+See [here](https://spacy.io/models) for more info on spaCy models.
+
+Before you're able to use the *large* model (option 3), you must install it through pip.
+
+*Warning:* This is ~800MB download.
+
+```
+[p]pipinstall https://github.com/explosion/spacy-models/releases/download/en_core_web_lg-2.3.1/en_core_web_lg-2.3.1.tar.gz#egg=en_core_web_lg
+```
diff --git a/chatter/__init__.py b/chatter/__init__.py
index cc101b7..9447c6a 100644
--- a/chatter/__init__.py
+++ b/chatter/__init__.py
@@ -1,4 +1,3 @@
-from . import chatterbot
from .chat import Chatter
@@ -6,6 +5,6 @@ def setup(bot):
bot.add_cog(Chatter(bot))
-__all__ = (
- 'chatterbot'
-)
+# __all__ = (
+# 'chatterbot'
+# )
diff --git a/chatter/chat.py b/chatter/chat.py
index 8eb25d2..ad8e37b 100644
--- a/chatter/chat.py
+++ b/chatter/chat.py
@@ -1,19 +1,46 @@
import asyncio
+import logging
+import os
import pathlib
from datetime import datetime, timedelta
+from typing import Optional
import discord
-from redbot.core import Config
-from redbot.core import commands
+from chatterbot import ChatBot
+from chatterbot.comparisons import JaccardSimilarity, LevenshteinDistance, SpacySimilarity
+from chatterbot.response_selection import get_random_response
+from chatterbot.trainers import ChatterBotCorpusTrainer, ListTrainer, UbuntuCorpusTrainer
+from redbot.core import Config, commands
+from redbot.core.commands import Cog
from redbot.core.data_manager import cog_data_path
+from redbot.core.utils.predicates import MessagePredicate
-from chatter.chatterbot import ChatBot
-from chatter.chatterbot.comparisons import levenshtein_distance
-from chatter.chatterbot.response_selection import get_first_response
-from chatter.chatterbot.trainers import ListTrainer
-from typing import Any
+log = logging.getLogger("red.fox_v3.chatter")
-Cog: Any = getattr(commands, "Cog", object)
+
+def my_local_get_prefix(prefixes, content):
+ for p in prefixes:
+ if content.startswith(p):
+ return p
+ return None
+
+
+class ENG_LG:
+ ISO_639_1 = "en_core_web_lg"
+ ISO_639 = "eng"
+ ENGLISH_NAME = "English"
+
+
+class ENG_MD:
+ ISO_639_1 = "en_core_web_md"
+ ISO_639 = "eng"
+ ENGLISH_NAME = "English"
+
+
+class ENG_SM:
+ ISO_639_1 = "en_core_web_sm"
+ ISO_639 = "eng"
+ ENGLISH_NAME = "English"
class Chatter(Cog):
@@ -22,38 +49,48 @@ class Chatter(Cog):
"""
def __init__(self, bot):
+ super().__init__()
self.bot = bot
self.config = Config.get_conf(self, identifier=6710497116116101114)
default_global = {}
- default_guild = {
- "whitelist": None,
- "days": 1
- }
+ default_guild = {"whitelist": None, "days": 1, "convo_delta": 15, "chatchannel": None}
path: pathlib.Path = cog_data_path(self)
- data_path = path / ("database.sqlite3")
+ self.data_path = path / "database.sqlite3"
- self.chatbot = ChatBot(
- "ChatterBot",
- storage_adapter='chatter.chatterbot.storage.SQLStorageAdapter',
- database=str(data_path),
- statement_comparison_function=levenshtein_distance,
- response_selection_method=get_first_response,
- logic_adapters=[
- 'chatter.chatterbot.logic.BestMatch',
- {
- 'import_path': 'chatter.chatterbot.logic.LowConfidenceAdapter',
- 'threshold': 0.65,
- 'default_response': ':thinking:'
- }
- ]
- )
- self.chatbot.set_trainer(ListTrainer)
+ # TODO: Move training_model and similarity_algo to config
+ # TODO: Add an option to see current settings
+
+ self.tagger_language = ENG_MD
+ self.similarity_algo = SpacySimilarity
+ self.similarity_threshold = 0.90
+ self.chatbot = self._create_chatbot()
+ # self.chatbot.set_trainer(ListTrainer)
+
+ # self.trainer = ListTrainer(self.chatbot)
self.config.register_global(**default_global)
self.config.register_guild(**default_guild)
self.loop = asyncio.get_event_loop()
+ async def red_delete_data_for_user(self, **kwargs):
+ """Nothing to delete"""
+ return
+
+ def _create_chatbot(self):
+
+ return ChatBot(
+ "ChatterBot",
+ storage_adapter="chatterbot.storage.SQLStorageAdapter",
+ database_uri="sqlite:///" + str(self.data_path),
+ statement_comparison_function=self.similarity_algo,
+ response_selection_method=get_random_response,
+ logic_adapters=["chatterbot.logic.BestMatch"],
+ maximum_similarity_threshold=self.similarity_threshold,
+ tagger_language=self.tagger_language,
+ logger=log,
+ )
+
async def _get_conversation(self, ctx, in_channel: discord.TextChannel = None):
"""
Compiles all conversation in the Guild this bot can get it's hands on
@@ -62,34 +99,49 @@ class Chatter(Cog):
"""
out = [[]]
after = datetime.today() - timedelta(days=(await self.config.guild(ctx.guild).days()))
+ convo_delta = timedelta(minutes=(await self.config.guild(ctx.guild).convo_delta()))
+
+ def predicate(msg: discord.Message):
+ return msg.clean_content
- def new_message(msg, sent, out_in):
- if sent is None:
- return False
+ def new_conversation(msg, sent, out_in, delta):
+ # if sent is None:
+ # return False
- if len(out_in) < 2:
- return False
+ # Don't do "too short" processing here. Sometimes people don't respond.
+ # if len(out_in) < 2:
+ # return False
- return msg.created_at - sent >= timedelta(hours=3) # This should be configurable perhaps
+ # print(msg.created_at - sent)
+
+ return msg.created_at - sent >= delta
for channel in ctx.guild.text_channels:
if in_channel:
channel = in_channel
- await ctx.send("Gathering {}".format(channel.mention))
+ await ctx.maybe_send_embed("Gathering {}".format(channel.mention))
user = None
i = 0
- send_time = None
+ send_time = after - timedelta(days=100) # Makes the first message a new message
+
try:
- async for message in channel.history(limit=None, reverse=True, after=after):
+ async for message in channel.history(
+ limit=None, after=after, oldest_first=True
+ ).filter(
+ predicate=predicate
+ ): # type: discord.Message
# if message.author.bot: # Skip bot messages
# continue
- if new_message(message, send_time, out[i]):
+ if new_conversation(message, send_time, out[i], convo_delta):
out.append([])
i += 1
user = None
- else:
- send_time = message.created_at + timedelta(seconds=1)
+
+ send_time = (
+ message.created_at
+ ) # + timedelta(seconds=1) # Can't remember why I added 1 second
+
if user == message.author:
out[i][-1] += "\n" + message.clean_content
else:
@@ -106,12 +158,29 @@ class Chatter(Cog):
return out
+ def _train_ubuntu(self):
+ trainer = UbuntuCorpusTrainer(self.chatbot)
+ trainer.train()
+ return True
+
+ def _train_english(self):
+ trainer = ChatterBotCorpusTrainer(self.chatbot)
+ # try:
+ trainer.train("chatterbot.corpus.english")
+ # except:
+ # return False
+ return True
+
def _train(self, data):
- try:
- for convo in data:
- self.chatbot.train(convo)
- except:
- return False
+ trainer = ListTrainer(self.chatbot)
+ total = len(data)
+ # try:
+ for c, convo in enumerate(data, 1):
+ if len(convo) > 1: # TODO: Toggleable skipping short conversations
+ print(f"{c} / {total}")
+ trainer.train(convo)
+ # except:
+ # return False
return True
@commands.group(invoke_without_command=False)
@@ -122,43 +191,234 @@ class Chatter(Cog):
if ctx.invoked_subcommand is None:
pass
- @chatter.command()
+ @chatter.command(name="channel")
+ async def chatter_channel(
+ self, ctx: commands.Context, channel: Optional[discord.TextChannel] = None
+ ):
+ """
+ Set a channel that the bot will respond in without mentioning it
+
+ Pass with no channel object to clear this guild's channel
+ """
+ if channel is None:
+ await self.config.guild(ctx.guild).chatchannel.set(None)
+ await ctx.maybe_send_embed("Chat channel for guild is cleared")
+ else:
+ if channel.guild != ctx.guild:
+ await ctx.maybe_send_embed("What are you trying to pull here? :eyes:")
+ return
+ await self.config.guild(ctx.guild).chatchannel.set(channel.id)
+ await ctx.maybe_send_embed(f"Chat channel is now {channel.mention}")
+
+ @chatter.command(name="cleardata")
+ async def chatter_cleardata(self, ctx: commands.Context, confirm: bool = False):
+ """
+ This command will erase all training data and reset your configuration settings
+
+ Use `[p]chatter cleardata True`
+ """
+
+ if not confirm:
+ await ctx.maybe_send_embed(
+ "Warning, this command will erase all your training data and reset your configuration\n"
+ "If you want to proceed, run the command again as `[p]chatter cleardata True`"
+ )
+ return
+ async with ctx.typing():
+ await self.config.clear_all()
+ self.chatbot = None
+ await asyncio.sleep(
+ 10
+ ) # Pause to allow pending commands to complete before deleting sql data
+ if os.path.isfile(self.data_path):
+ try:
+ os.remove(self.data_path)
+ except PermissionError:
+ await ctx.maybe_send_embed(
+ "Failed to clear training database. Please wait a bit and try again"
+ )
+
+ self._create_chatbot()
+
+ await ctx.tick()
+
+ @chatter.command(name="algorithm", aliases=["algo"])
+ async def chatter_algorithm(
+ self, ctx: commands.Context, algo_number: int, threshold: float = None
+ ):
+ """
+ Switch the active logic algorithm to one of the three. Default after reload is Spacy
+
+ 0: Spacy
+ 1: Jaccard
+ 2: Levenshtein
+ """
+
+ algos = [SpacySimilarity, JaccardSimilarity, LevenshteinDistance]
+
+ if algo_number < 0 or algo_number > 2:
+ await ctx.send_help()
+ return
+
+ if threshold is not None:
+ if threshold >= 1 or threshold <= 0:
+ await ctx.maybe_send_embed(
+ "Threshold must be a number between 0 and 1 (exclusive)"
+ )
+ return
+ else:
+ self.similarity_algo = threshold
+
+ self.similarity_algo = algos[algo_number]
+ async with ctx.typing():
+ self.chatbot = self._create_chatbot()
+
+ await ctx.tick()
+
+ @chatter.command(name="model")
+ async def chatter_model(self, ctx: commands.Context, model_number: int):
+ """
+ Switch the active model to one of the three. Default after reload is Medium
+
+ 0: Small
+ 1: Medium
+ 2: Large (Requires additional setup)
+ """
+
+ models = [ENG_SM, ENG_MD, ENG_LG]
+
+ if model_number < 0 or model_number > 2:
+ await ctx.send_help()
+ return
+
+ if model_number == 2:
+ await ctx.maybe_send_embed(
+ "Additional requirements needed. See guide before continuing.\n" "Continue?"
+ )
+ pred = MessagePredicate.yes_or_no(ctx)
+ try:
+ await self.bot.wait_for("message", check=pred, timeout=30)
+ except TimeoutError:
+ await ctx.send("Response timed out, please try again later.")
+ return
+ if not pred.result:
+ return
+
+ self.tagger_language = models[model_number]
+ async with ctx.typing():
+ self.chatbot = self._create_chatbot()
+
+ await ctx.maybe_send_embed(
+ f"Model has been switched to {self.tagger_language.ISO_639_1}"
+ )
+
+ @chatter.command(name="minutes")
+ async def minutes(self, ctx: commands.Context, minutes: int):
+ """
+ Sets the number of minutes the bot will consider a break in a conversation during training
+ Active servers should set a lower number, while less active servers should have a higher number
+ """
+
+ if minutes < 1:
+ await ctx.send_help()
+ return
+
+ await self.config.guild(ctx.guild).convo_length.set(minutes)
+
+ await ctx.tick()
+
+ @chatter.command(name="age")
async def age(self, ctx: commands.Context, days: int):
"""
Sets the number of days to look back
Will train on 1 day otherwise
"""
+ if days < 1:
+ await ctx.send_help()
+ return
+
await self.config.guild(ctx.guild).days.set(days)
- await ctx.send("Success")
+ await ctx.tick()
- @chatter.command()
+ @chatter.command(name="backup")
async def backup(self, ctx, backupname):
"""
Backup your training data to a json for later use
"""
- await ctx.send("Backing up data, this may take a while")
- future = await self.loop.run_in_executor(None, self.chatbot.trainer.export_for_training,
- './{}.json'.format(backupname))
+
+ await ctx.maybe_send_embed("Backing up data, this may take a while")
+
+ path: pathlib.Path = cog_data_path(self)
+
+ trainer = ListTrainer(self.chatbot)
+
+ future = await self.loop.run_in_executor(
+ None, trainer.export_for_training, str(path / f"{backupname}.json")
+ )
+
+ if future:
+ await ctx.maybe_send_embed(f"Backup successful! Look in {path} for your backup")
+ else:
+ await ctx.maybe_send_embed("Error occurred :(")
+
+ @chatter.command(name="trainubuntu")
+ async def chatter_train_ubuntu(self, ctx: commands.Context, confirmation: bool = False):
+ """
+ WARNING: Large Download! Trains the bot using Ubuntu Dialog Corpus data.
+ """
+
+ if not confirmation:
+ await ctx.maybe_send_embed(
+ "Warning: This command downloads ~500MB then eats your CPU for training\n"
+ "If you're sure you want to continue, run `[p]chatter trainubuntu True`"
+ )
+ return
+
+ async with ctx.typing():
+ future = await self.loop.run_in_executor(None, self._train_ubuntu)
if future:
- await ctx.send("Backup successful!")
+ await ctx.send("Training successful!")
else:
await ctx.send("Error occurred :(")
+ @chatter.command(name="trainenglish")
+ async def chatter_train_english(self, ctx: commands.Context):
+ """
+ Trains the bot in english
+ """
+ async with ctx.typing():
+ future = await self.loop.run_in_executor(None, self._train_english)
+
+ if future:
+ await ctx.maybe_send_embed("Training successful!")
+ else:
+ await ctx.maybe_send_embed("Error occurred :(")
+
@chatter.command()
async def train(self, ctx: commands.Context, channel: discord.TextChannel):
"""
Trains the bot based on language in this guild
"""
- conversation = await self._get_conversation(ctx, channel)
+ await ctx.maybe_send_embed(
+ "Warning: The cog may use significant RAM or CPU if trained on large data sets.\n"
+ "Additionally, large sets will use more disk space to save the trained data.\n\n"
+ "If you experience issues, clear your trained data and train again on a smaller scope."
+ )
+
+ async with ctx.typing():
+ conversation = await self._get_conversation(ctx, channel)
if not conversation:
- await ctx.send("Failed to gather training data")
+ await ctx.maybe_send_embed("Failed to gather training data")
return
- await ctx.send("Gather successful! Training begins now\n(**This will take a long time, be patient**)")
+ await ctx.maybe_send_embed(
+ "Gather successful! Training begins now\n"
+ "(**This will take a long time, be patient. See console for progress**)"
+ )
embed = discord.Embed(title="Loading")
embed.set_image(url="http://www.loop.universaleverything.com/animations/1295.gif")
temp_message = await ctx.send(embed=embed)
@@ -166,37 +426,62 @@ class Chatter(Cog):
try:
await temp_message.delete()
- except:
+ except discord.Forbidden:
pass
if future:
- await ctx.send("Training successful!")
+ await ctx.maybe_send_embed("Training successful!")
else:
- await ctx.send("Error occurred :(")
+ await ctx.maybe_send_embed("Error occurred :(")
- async def on_message(self, message: discord.Message):
+ @commands.Cog.listener()
+ async def on_message_without_command(self, message: discord.Message):
"""
Credit to https://github.com/Twentysix26/26-Cogs/blob/master/cleverbot/cleverbot.py
for on_message recognition of @bot
+
+ Credit to:
+ https://github.com/Cog-Creators/Red-DiscordBot/blob/V3/develop/redbot/cogs/customcom/customcom.py#L508
+ for the message filtering
"""
- author = message.author
- try:
- guild: discord.Guild = message.guild
- except AttributeError: # Not a guild message
+ ###########
+
+ if len(message.content) < 2 or message.author.bot:
+ return
+
+ guild: discord.Guild = getattr(message, "guild", None)
+
+ if await self.bot.cog_disabled_in_guild(self, guild):
+ return
+
+ ctx: commands.Context = await self.bot.get_context(message)
+
+ if ctx.prefix is not None: # Probably unnecessary, we're in on_message_without_command
return
+ ###########
+ # Thank you Cog-Creators
channel: discord.TextChannel = message.channel
- if author.id != self.bot.user.id:
- to_strip = "@" + guild.me.display_name + " "
- text = message.clean_content
- if not text.startswith(to_strip):
+ if guild is not None and channel.id == await self.config.guild(guild).chatchannel():
+ pass # good to go
+ else:
+ when_mentionables = commands.when_mentioned(self.bot, message)
+
+ prefix = my_local_get_prefix(when_mentionables, message.content)
+
+ if prefix is None:
+ # print("not mentioned")
return
- text = text.replace(to_strip, "", 1)
- async with channel.typing():
- future = await self.loop.run_in_executor(None, self.chatbot.get_response, text)
-
- if future and str(future):
- await channel.send(str(future))
- else:
- await channel.send(':thinking:')
+
+ message.content = message.content.replace(prefix, "", 1)
+
+ text = message.clean_content
+
+ async with channel.typing():
+ future = await self.loop.run_in_executor(None, self.chatbot.get_response, text)
+
+ if future and str(future):
+ await channel.send(str(future))
+ else:
+ await channel.send(":thinking:")
diff --git a/chatter/chatterbot/__init__.py b/chatter/chatterbot/__init__.py
deleted file mode 100644
index 7a127ee..0000000
--- a/chatter/chatterbot/__init__.py
+++ /dev/null
@@ -1,13 +0,0 @@
-"""
-ChatterBot is a machine learning, conversational dialog engine.
-"""
-from .chatterbot import ChatBot
-
-__version__ = '0.8.5'
-__author__ = 'Gunther Cox'
-__email__ = 'gunthercx@gmail.com'
-__url__ = 'https://github.com/gunthercox/ChatterBot'
-
-__all__ = (
- 'ChatBot',
-)
diff --git a/chatter/chatterbot/__main__.py b/chatter/chatterbot/__main__.py
deleted file mode 100644
index 0322854..0000000
--- a/chatter/chatterbot/__main__.py
+++ /dev/null
@@ -1,22 +0,0 @@
-import sys
-
-if __name__ == '__main__':
- import importlib
-
- if '--version' in sys.argv:
- chatterbot = importlib.import_module('chatterbot')
- print(chatterbot.__version__)
-
- if 'list_nltk_data' in sys.argv:
- import os
- import nltk.data
-
- data_directories = []
-
- # Find each data directory in the NLTK path that has content
- for path in nltk.data.path:
- if os.path.exists(path):
- if os.listdir(path):
- data_directories.append(path)
-
- print(os.linesep.join(data_directories))
diff --git a/chatter/chatterbot/adapters.py b/chatter/chatterbot/adapters.py
deleted file mode 100644
index 83ce94c..0000000
--- a/chatter/chatterbot/adapters.py
+++ /dev/null
@@ -1,47 +0,0 @@
-import logging
-
-
-class Adapter(object):
- """
- A superclass for all adapter classes.
-
- :param logger: A python logger.
- """
-
- def __init__(self, **kwargs):
- self.logger = kwargs.get('logger', logging.getLogger(__name__))
- self.chatbot = kwargs.get('chatbot')
-
- def set_chatbot(self, chatbot):
- """
- Gives the adapter access to an instance of the ChatBot class.
-
- :param chatbot: A chat bot instance.
- :type chatbot: ChatBot
- """
- self.chatbot = chatbot
-
- class AdapterMethodNotImplementedError(NotImplementedError):
- """
- An exception to be raised when an adapter method has not been implemented.
- Typically this indicates that the developer is expected to implement the
- method in a subclass.
- """
-
- def __init__(self, message=None):
- """
- Set the message for the esception.
- """
- if not message:
- message = 'This method must be overridden in a subclass method.'
- self.message = message
-
- def __str__(self):
- return self.message
-
- class InvalidAdapterTypeException(Exception):
- """
- An exception to be raised when an adapter
- of an unexpected class type is received.
- """
- pass
diff --git a/chatter/chatterbot/chatterbot.py b/chatter/chatterbot/chatterbot.py
deleted file mode 100644
index 08576c3..0000000
--- a/chatter/chatterbot/chatterbot.py
+++ /dev/null
@@ -1,172 +0,0 @@
-from __future__ import unicode_literals
-
-import logging
-
-from chatter.chatterbot import utils
-
-
-class ChatBot(object):
- """
- A conversational dialog chat bot.
- """
-
- def __init__(self, name, **kwargs):
- from chatter.chatterbot.logic import MultiLogicAdapter
-
- self.name = name
- kwargs['name'] = name
- kwargs['chatbot'] = self
-
- self.default_session = None
-
- storage_adapter = kwargs.get('storage_adapter', 'chatter.chatterbot.storage.SQLStorageAdapter')
-
- logic_adapters = kwargs.get('logic_adapters', [
- 'chatter.chatterbot.logic.BestMatch'
- ])
-
- input_adapter = kwargs.get('input_adapter', 'chatter.chatterbot.input.VariableInputTypeAdapter')
-
- output_adapter = kwargs.get('output_adapter', 'chatter.chatterbot.output.OutputAdapter')
-
- # Check that each adapter is a valid subclass of it's respective parent
- # utils.validate_adapter_class(storage_adapter, StorageAdapter)
- # utils.validate_adapter_class(input_adapter, InputAdapter)
- # utils.validate_adapter_class(output_adapter, OutputAdapter)
-
- self.logic = MultiLogicAdapter(**kwargs)
- self.storage = utils.initialize_class(storage_adapter, **kwargs)
- self.input = utils.initialize_class(input_adapter, **kwargs)
- self.output = utils.initialize_class(output_adapter, **kwargs)
-
- filters = kwargs.get('filters', tuple())
- self.filters = tuple([utils.import_module(F)() for F in filters])
-
- # Add required system logic adapter
- self.logic.system_adapters.append(
- utils.initialize_class('chatter.chatterbot.logic.NoKnowledgeAdapter', **kwargs)
- )
-
- for adapter in logic_adapters:
- self.logic.add_adapter(adapter, **kwargs)
-
- # Add the chatbot instance to each adapter to share information such as
- # the name, the current conversation, or other adapters
- self.logic.set_chatbot(self)
- self.input.set_chatbot(self)
- self.output.set_chatbot(self)
-
- preprocessors = kwargs.get(
- 'preprocessors', [
- 'chatter.chatterbot.preprocessors.clean_whitespace'
- ]
- )
-
- self.preprocessors = []
-
- for preprocessor in preprocessors:
- self.preprocessors.append(utils.import_module(preprocessor))
-
- # Use specified trainer or fall back to the default
- trainer = kwargs.get('trainer', 'chatter.chatterbot.trainers.Trainer')
- TrainerClass = utils.import_module(trainer)
- self.trainer = TrainerClass(self.storage, **kwargs)
- self.training_data = kwargs.get('training_data')
-
- self.default_conversation_id = None
-
- self.logger = kwargs.get('logger', logging.getLogger(__name__))
-
- # Allow the bot to save input it receives so that it can learn
- self.read_only = kwargs.get('read_only', False)
-
- if kwargs.get('initialize', True):
- self.initialize()
-
- def initialize(self):
- """
- Do any work that needs to be done before the responses can be returned.
- """
- self.logic.initialize()
-
- def get_response(self, input_item, conversation_id=None):
- """
- Return the bot's response based on the input.
-
- :param input_item: An input value.
- :param conversation_id: The id of a conversation.
- :returns: A response to the input.
- :rtype: Statement
- """
- if not conversation_id:
- if not self.default_conversation_id:
- self.default_conversation_id = self.storage.create_conversation()
- conversation_id = self.default_conversation_id
-
- input_statement = self.input.process_input_statement(input_item)
-
- # Preprocess the input statement
- for preprocessor in self.preprocessors:
- input_statement = preprocessor(self, input_statement)
-
- statement, response = self.generate_response(input_statement, conversation_id)
-
- # Learn that the user's input was a valid response to the chat bot's previous output
- previous_statement = self.storage.get_latest_response(conversation_id)
-
- if not self.read_only:
- self.learn_response(statement, previous_statement)
- self.storage.add_to_conversation(conversation_id, statement, response)
-
- # Process the response output with the output adapter
- return self.output.process_response(response, conversation_id)
-
- def generate_response(self, input_statement, conversation_id):
- """
- Return a response based on a given input statement.
- """
- self.storage.generate_base_query(self, conversation_id)
-
- # Select a response to the input statement
- response = self.logic.process(input_statement)
-
- return input_statement, response
-
- def learn_response(self, statement, previous_statement):
- """
- Learn that the statement provided is a valid response.
- """
- from chatter.chatterbot.conversation import Response
-
- if previous_statement:
- statement.add_response(
- Response(previous_statement.text)
- )
- self.logger.info('Adding "{}" as a response to "{}"'.format(
- statement.text,
- previous_statement.text
- ))
-
- # Save the statement after selecting a response
- self.storage.update(statement)
-
- def set_trainer(self, training_class, **kwargs):
- """
- Set the module used to train the chatbot.
-
- :param training_class: The training class to use for the chat bot.
- :type training_class: `Trainer`
-
- :param \**kwargs: Any parameters that should be passed to the training class.
- """
- if 'chatbot' not in kwargs:
- kwargs['chatbot'] = self
-
- self.trainer = training_class(self.storage, **kwargs)
-
- @property
- def train(self):
- """
- Proxy method to the chat bot's trainer class.
- """
- return self.trainer.train
diff --git a/chatter/chatterbot/comparisons.py b/chatter/chatterbot/comparisons.py
deleted file mode 100644
index 5e253a0..0000000
--- a/chatter/chatterbot/comparisons.py
+++ /dev/null
@@ -1,325 +0,0 @@
-# -*- coding: utf-8 -*-
-
-
-"""
-This module contains various text-comparison algorithms
-designed to compare one statement to another.
-"""
-
-# Use python-Levenshtein if available
-try:
- from Levenshtein.StringMatcher import StringMatcher as SequenceMatcher
-except ImportError:
- from difflib import SequenceMatcher
-
-
-class Comparator:
-
- def __call__(self, statement_a, statement_b):
- return self.compare(statement_a, statement_b)
-
- def compare(self, statement_a, statement_b):
- return 0
-
- def get_initialization_functions(self):
- """
- Return all initialization methods for the comparison algorithm.
- Initialization methods must start with 'initialize_' and
- take no parameters.
- """
- initialization_methods = [
- (
- method,
- getattr(self, method),
- ) for method in dir(self) if method.startswith('initialize_')
- ]
-
- return {
- key: value for (key, value) in initialization_methods
- }
-
-
-class LevenshteinDistance(Comparator):
- """
- Compare two statements based on the Levenshtein distance
- of each statement's text.
-
- For example, there is a 65% similarity between the statements
- "where is the post office?" and "looking for the post office"
- based on the Levenshtein distance algorithm.
- """
-
- def compare(self, statement, other_statement):
- """
- Compare the two input statements.
-
- :return: The percent of similarity between the text of the statements.
- :rtype: float
- """
-
- # Return 0 if either statement has a falsy text value
- if not statement.text or not other_statement.text:
- return 0
-
- # Get the lowercase version of both strings
-
- statement_text = str(statement.text.lower())
- other_statement_text = str(other_statement.text.lower())
-
- similarity = SequenceMatcher(
- None,
- statement_text,
- other_statement_text
- )
-
- # Calculate a decimal percent of the similarity
- percent = round(similarity.ratio(), 2)
-
- return percent
-
-
-class SynsetDistance(Comparator):
- """
- Calculate the similarity of two statements.
- This is based on the total maximum synset similarity between each word in each sentence.
-
- This algorithm uses the `wordnet`_ functionality of `NLTK`_ to determine the similarity
- of two statements based on the path similarity between each token of each statement.
- This is essentially an evaluation of the closeness of synonyms.
- """
-
- def initialize_nltk_wordnet(self):
- """
- Download required NLTK corpora if they have not already been downloaded.
- """
- from chatter.chatterbot.utils import nltk_download_corpus
-
- nltk_download_corpus('corpora/wordnet')
-
- def initialize_nltk_punkt(self):
- """
- Download required NLTK corpora if they have not already been downloaded.
- """
- from chatter.chatterbot.utils import nltk_download_corpus
-
- nltk_download_corpus('tokenizers/punkt')
-
- def initialize_nltk_stopwords(self):
- """
- Download required NLTK corpora if they have not already been downloaded.
- """
- from chatter.chatterbot.utils import nltk_download_corpus
-
- nltk_download_corpus('corpora/stopwords')
-
- def compare(self, statement, other_statement):
- """
- Compare the two input statements.
-
- :return: The percent of similarity between the closest synset distance.
- :rtype: float
-
- .. _wordnet: http://www.nltk.org/howto/wordnet.html
- .. _NLTK: http://www.nltk.org/
- """
- from nltk.corpus import wordnet
- from nltk import word_tokenize
- from chatter.chatterbot import utils
- import itertools
-
- tokens1 = word_tokenize(statement.text.lower())
- tokens2 = word_tokenize(other_statement.text.lower())
-
- # Remove all stop words from the list of word tokens
- tokens1 = utils.remove_stopwords(tokens1, language='english')
- tokens2 = utils.remove_stopwords(tokens2, language='english')
-
- # The maximum possible similarity is an exact match
- # Because path_similarity returns a value between 0 and 1,
- # max_possible_similarity is the number of words in the longer
- # of the two input statements.
- max_possible_similarity = max(
- len(statement.text.split()),
- len(other_statement.text.split())
- )
-
- max_similarity = 0.0
-
- # Get the highest matching value for each possible combination of words
- for combination in itertools.product(*[tokens1, tokens2]):
-
- synset1 = wordnet.synsets(combination[0])
- synset2 = wordnet.synsets(combination[1])
-
- if synset1 and synset2:
-
- # Get the highest similarity for each combination of synsets
- for synset in itertools.product(*[synset1, synset2]):
- similarity = synset[0].path_similarity(synset[1])
-
- if similarity and (similarity > max_similarity):
- max_similarity = similarity
-
- if max_possible_similarity == 0:
- return 0
-
- return max_similarity / max_possible_similarity
-
-
-class SentimentComparison(Comparator):
- """
- Calculate the similarity of two statements based on the closeness of
- the sentiment value calculated for each statement.
- """
-
- def initialize_nltk_vader_lexicon(self):
- """
- Download the NLTK vader lexicon for sentiment analysis
- that is required for this algorithm to run.
- """
- from chatter.chatterbot.utils import nltk_download_corpus
-
- nltk_download_corpus('sentiment/vader_lexicon')
-
- def compare(self, statement, other_statement):
- """
- Return the similarity of two statements based on
- their calculated sentiment values.
-
- :return: The percent of similarity between the sentiment value.
- :rtype: float
- """
- from nltk.sentiment.vader import SentimentIntensityAnalyzer
-
- sentiment_analyzer = SentimentIntensityAnalyzer()
- statement_polarity = sentiment_analyzer.polarity_scores(statement.text.lower())
- statement2_polarity = sentiment_analyzer.polarity_scores(other_statement.text.lower())
-
- statement_greatest_polarity = 'neu'
- statement_greatest_score = -1
- for polarity in sorted(statement_polarity):
- if statement_polarity[polarity] > statement_greatest_score:
- statement_greatest_polarity = polarity
- statement_greatest_score = statement_polarity[polarity]
-
- statement2_greatest_polarity = 'neu'
- statement2_greatest_score = -1
- for polarity in sorted(statement2_polarity):
- if statement2_polarity[polarity] > statement2_greatest_score:
- statement2_greatest_polarity = polarity
- statement2_greatest_score = statement2_polarity[polarity]
-
- # Check if the polarity if of a different type
- if statement_greatest_polarity != statement2_greatest_polarity:
- return 0
-
- values = [statement_greatest_score, statement2_greatest_score]
- difference = max(values) - min(values)
-
- return 1.0 - difference
-
-
-class JaccardSimilarity(Comparator):
- """
- Calculates the similarity of two statements based on the Jaccard index.
-
- The Jaccard index is composed of a numerator and denominator.
- In the numerator, we count the number of items that are shared between the sets.
- In the denominator, we count the total number of items across both sets.
- Let's say we define sentences to be equivalent if 50% or more of their tokens are equivalent.
- Here are two sample sentences:
-
- The young cat is hungry.
- The cat is very hungry.
-
- When we parse these sentences to remove stopwords, we end up with the following two sets:
-
- {young, cat, hungry}
- {cat, very, hungry}
-
- In our example above, our intersection is {cat, hungry}, which has count of two.
- The union of the sets is {young, cat, very, hungry}, which has a count of four.
- Therefore, our `Jaccard similarity index`_ is two divided by four, or 50%.
- Given our similarity threshold above, we would consider this to be a match.
-
- .. _`Jaccard similarity index`: https://en.wikipedia.org/wiki/Jaccard_index
- """
-
- SIMILARITY_THRESHOLD = 0.5
-
- def initialize_nltk_wordnet(self):
- """
- Download the NLTK wordnet corpora that is required for this algorithm
- to run only if the corpora has not already been downloaded.
- """
- from chatter.chatterbot.utils import nltk_download_corpus
-
- nltk_download_corpus('corpora/wordnet')
-
- def compare(self, statement, other_statement):
- """
- Return the calculated similarity of two
- statements based on the Jaccard index.
- """
- from nltk.corpus import wordnet
- import nltk
- import string
-
- a = statement.text.lower()
- b = other_statement.text.lower()
-
- # Get default English stopwords and extend with punctuation
- stopwords = nltk.corpus.stopwords.words('english')
- stopwords.extend(string.punctuation)
- stopwords.append('')
- lemmatizer = nltk.stem.wordnet.WordNetLemmatizer()
-
- def get_wordnet_pos(pos_tag):
- if pos_tag[1].startswith('J'):
- return (pos_tag[0], wordnet.ADJ)
- elif pos_tag[1].startswith('V'):
- return (pos_tag[0], wordnet.VERB)
- elif pos_tag[1].startswith('N'):
- return (pos_tag[0], wordnet.NOUN)
- elif pos_tag[1].startswith('R'):
- return (pos_tag[0], wordnet.ADV)
- else:
- return (pos_tag[0], wordnet.NOUN)
-
- ratio = 0
- pos_a = map(get_wordnet_pos, nltk.pos_tag(nltk.tokenize.word_tokenize(a)))
- pos_b = map(get_wordnet_pos, nltk.pos_tag(nltk.tokenize.word_tokenize(b)))
- lemma_a = [
- lemmatizer.lemmatize(
- token.strip(string.punctuation),
- pos
- ) for token, pos in pos_a if pos == wordnet.NOUN and token.strip(
- string.punctuation
- ) not in stopwords
- ]
- lemma_b = [
- lemmatizer.lemmatize(
- token.strip(string.punctuation),
- pos
- ) for token, pos in pos_b if pos == wordnet.NOUN and token.strip(
- string.punctuation
- ) not in stopwords
- ]
-
- # Calculate Jaccard similarity
- try:
- numerator = len(set(lemma_a).intersection(lemma_b))
- denominator = float(len(set(lemma_a).union(lemma_b)))
- ratio = numerator / denominator
- except Exception as e:
- print('Error', e)
- return ratio >= self.SIMILARITY_THRESHOLD
-
-
-# ---------------------------------------- #
-
-
-levenshtein_distance = LevenshteinDistance()
-synset_distance = SynsetDistance()
-sentiment_comparison = SentimentComparison()
-jaccard_similarity = JaccardSimilarity()
diff --git a/chatter/chatterbot/constants.py b/chatter/chatterbot/constants.py
deleted file mode 100644
index 3a5ae7d..0000000
--- a/chatter/chatterbot/constants.py
+++ /dev/null
@@ -1,15 +0,0 @@
-"""
-ChatterBot constants
-"""
-
-'''
-The maximum length of characters that the text of a statement can contain.
-This should be enforced on a per-model basis by the data model for each
-storage adapter.
-'''
-STATEMENT_TEXT_MAX_LENGTH = 400
-
-# The maximum length of characters that the name of a tag can contain
-TAG_NAME_MAX_LENGTH = 50
-
-DEFAULT_DJANGO_APP_NAME = 'django_chatterbot'
diff --git a/chatter/chatterbot/conversation.py b/chatter/chatterbot/conversation.py
deleted file mode 100644
index 52231f8..0000000
--- a/chatter/chatterbot/conversation.py
+++ /dev/null
@@ -1,213 +0,0 @@
-class StatementMixin(object):
- """
- This class has shared methods used to
- normalize different statement models.
- """
- tags = []
-
- def get_tags(self):
- """
- Return the list of tags for this statement.
- """
- return self.tags
-
- def add_tags(self, tags):
- """
- Add a list of strings to the statement as tags.
- """
- for tag in tags:
- self.tags.append(tag)
-
-
-class Statement(StatementMixin):
- """
- A statement represents a single spoken entity, sentence or
- phrase that someone can say.
- """
-
- def __init__(self, text, **kwargs):
-
- # Try not to allow non-string types to be passed to statements
- try:
- text = str(text)
- except UnicodeEncodeError:
- pass
-
- self.text = text
- self.tags = kwargs.pop('tags', [])
- self.in_response_to = kwargs.pop('in_response_to', [])
-
- self.extra_data = kwargs.pop('extra_data', {})
-
- # This is the confidence with which the chat bot believes
- # this is an accurate response. This value is set when the
- # statement is returned by the chat bot.
- self.confidence = 0
-
- self.storage = None
-
- def __str__(self):
- return self.text
-
- def __repr__(self):
- return '' % (self.text)
-
- def __hash__(self):
- return hash(self.text)
-
- def __eq__(self, other):
- if not other:
- return False
-
- if isinstance(other, Statement):
- return self.text == other.text
-
- return self.text == other
-
- def save(self):
- """
- Save the statement in the database.
- """
- self.storage.update(self)
-
- def add_extra_data(self, key, value):
- """
- This method allows additional data to be stored on the statement object.
-
- Typically this data is something that pertains just to this statement.
- For example, a value stored here might be the tagged parts of speech for
- each word in the statement text.
-
- - key = 'pos_tags'
- - value = [('Now', 'RB'), ('for', 'IN'), ('something', 'NN'), ('different', 'JJ')]
-
- :param key: The key to use in the dictionary of extra data.
- :type key: str
-
- :param value: The value to set for the specified key.
- """
- self.extra_data[key] = value
-
- def add_response(self, response):
- """
- Add the response to the list of statements that this statement is in response to.
- If the response is already in the list, increment the occurrence count of that response.
-
- :param response: The response to add.
- :type response: `Response`
- """
- if not isinstance(response, Response):
- raise Statement.InvalidTypeException(
- 'A {} was received when a {} instance was expected'.format(
- type(response),
- type(Response(''))
- )
- )
-
- updated = False
- for index in range(0, len(self.in_response_to)):
- if response.text == self.in_response_to[index].text:
- self.in_response_to[index].occurrence += 1
- updated = True
-
- if not updated:
- self.in_response_to.append(response)
-
- def remove_response(self, response_text):
- """
- Removes a response from the statement's response list based
- on the value of the response text.
-
- :param response_text: The text of the response to be removed.
- :type response_text: str
- """
- for response in self.in_response_to:
- if response_text == response.text:
- self.in_response_to.remove(response)
- return True
- return False
-
- def get_response_count(self, statement):
- """
- Find the number of times that the statement has been used
- as a response to the current statement.
-
- :param statement: The statement object to get the count for.
- :type statement: `Statement`
-
- :returns: Return the number of times the statement has been used as a response.
- :rtype: int
- """
- for response in self.in_response_to:
- if statement.text == response.text:
- return response.occurrence
-
- return 0
-
- def serialize(self):
- """
- :returns: A dictionary representation of the statement object.
- :rtype: dict
- """
- data = {'text': self.text, 'in_response_to': [], 'extra_data': self.extra_data}
-
- for response in self.in_response_to:
- data['in_response_to'].append(response.serialize())
-
- return data
-
- @property
- def response_statement_cache(self):
- """
- This property is to allow ChatterBot Statement objects to
- be swappable with Django Statement models.
- """
- return self.in_response_to
-
- class InvalidTypeException(Exception):
-
- def __init__(self, value='Received an unexpected value type.'):
- self.value = value
-
- def __str__(self):
- return repr(self.value)
-
-
-class Response(object):
- """
- A response represents an entity which response to a statement.
- """
-
- def __init__(self, text, **kwargs):
- from datetime import datetime
- from dateutil import parser as date_parser
-
- self.text = text
- self.created_at = kwargs.get('created_at', datetime.now())
- self.occurrence = kwargs.get('occurrence', 1)
-
- if not isinstance(self.created_at, datetime):
- self.created_at = date_parser.parse(self.created_at)
-
- def __str__(self):
- return self.text
-
- def __repr__(self):
- return '' % (self.text)
-
- def __hash__(self):
- return hash(self.text)
-
- def __eq__(self, other):
- if not other:
- return False
-
- if isinstance(other, Response):
- return self.text == other.text
-
- return self.text == other
-
- def serialize(self):
- data = {'text': self.text, 'created_at': self.created_at.isoformat(), 'occurrence': self.occurrence}
-
- return data
diff --git a/chatter/chatterbot/corpus.py b/chatter/chatterbot/corpus.py
deleted file mode 100644
index 4bf0e4b..0000000
--- a/chatter/chatterbot/corpus.py
+++ /dev/null
@@ -1,10 +0,0 @@
-"""
-Seamlessly import the external chatterbot corpus module.
-View the corpus on GitHub at https://github.com/gunthercox/chatterbot-corpus
-"""
-
-from chatterbot_corpus import Corpus
-
-__all__ = (
- 'Corpus',
-)
diff --git a/chatter/chatterbot/ext/__init__.py b/chatter/chatterbot/ext/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/chatter/chatterbot/ext/sqlalchemy_app/__init__.py b/chatter/chatterbot/ext/sqlalchemy_app/__init__.py
deleted file mode 100644
index e69de29..0000000
diff --git a/chatter/chatterbot/ext/sqlalchemy_app/models.py b/chatter/chatterbot/ext/sqlalchemy_app/models.py
deleted file mode 100644
index 6a7dc00..0000000
--- a/chatter/chatterbot/ext/sqlalchemy_app/models.py
+++ /dev/null
@@ -1,131 +0,0 @@
-from sqlalchemy import Table, Column, Integer, DateTime, ForeignKey, PickleType
-from sqlalchemy.ext.declarative import declared_attr, declarative_base
-from sqlalchemy.orm import relationship
-from sqlalchemy.sql import func
-
-from chatter.chatterbot.constants import TAG_NAME_MAX_LENGTH, STATEMENT_TEXT_MAX_LENGTH
-from chatter.chatterbot.conversation import StatementMixin
-from chatter.chatterbot.ext.sqlalchemy_app.types import UnicodeString
-
-
-class ModelBase(object):
- """
- An augmented base class for SqlAlchemy models.
- """
-
- @declared_attr
- def __tablename__(cls):
- """
- Return the lowercase class name as the name of the table.
- """
- return cls.__name__.lower()
-
- id = Column(
- Integer,
- primary_key=True,
- autoincrement=True
- )
-
-
-Base = declarative_base(cls=ModelBase)
-
-tag_association_table = Table(
- 'tag_association',
- Base.metadata,
- Column('tag_id', Integer, ForeignKey('tag.id')),
- Column('statement_id', Integer, ForeignKey('statement.id'))
-)
-
-
-class Tag(Base):
- """
- A tag that describes a statement.
- """
-
- name = Column(UnicodeString(TAG_NAME_MAX_LENGTH))
-
-
-class Statement(Base, StatementMixin):
- """
- A Statement represents a sentence or phrase.
- """
-
- text = Column(UnicodeString(STATEMENT_TEXT_MAX_LENGTH), unique=True)
-
- tags = relationship(
- 'Tag',
- secondary=lambda: tag_association_table,
- backref='statements'
- )
-
- extra_data = Column(PickleType)
-
- in_response_to = relationship(
- 'Response',
- back_populates='statement_table'
- )
-
- def get_tags(self):
- """
- Return a list of tags for this statement.
- """
- return [tag.name for tag in self.tags]
-
- def get_statement(self):
- from chatter.chatterbot.conversation import Statement as StatementObject
- from chatter.chatterbot.conversation import Response as ResponseObject
-
- statement = StatementObject(
- self.text,
- tags=[tag.name for tag in self.tags],
- extra_data=self.extra_data
- )
- for response in self.in_response_to:
- statement.add_response(
- ResponseObject(text=response.text, occurrence=response.occurrence)
- )
- return statement
-
-
-class Response(Base):
- """
- Response, contains responses related to a given statement.
- """
-
- text = Column(UnicodeString(STATEMENT_TEXT_MAX_LENGTH))
-
- created_at = Column(
- DateTime(timezone=True),
- server_default=func.now()
- )
-
- occurrence = Column(Integer, default=1)
-
- statement_text = Column(UnicodeString(STATEMENT_TEXT_MAX_LENGTH), ForeignKey('statement.text'))
-
- statement_table = relationship(
- 'Statement',
- back_populates='in_response_to',
- cascade='all',
- uselist=False
- )
-
-
-conversation_association_table = Table(
- 'conversation_association',
- Base.metadata,
- Column('conversation_id', Integer, ForeignKey('conversation.id')),
- Column('statement_id', Integer, ForeignKey('statement.id'))
-)
-
-
-class Conversation(Base):
- """
- A conversation.
- """
-
- statements = relationship(
- 'Statement',
- secondary=lambda: conversation_association_table,
- backref='conversations'
- )
diff --git a/chatter/chatterbot/ext/sqlalchemy_app/types.py b/chatter/chatterbot/ext/sqlalchemy_app/types.py
deleted file mode 100644
index ee9b123..0000000
--- a/chatter/chatterbot/ext/sqlalchemy_app/types.py
+++ /dev/null
@@ -1,16 +0,0 @@
-from sqlalchemy.types import TypeDecorator, Unicode
-
-
-class UnicodeString(TypeDecorator):
- """
- Type for unicode strings.
- """
-
- impl = Unicode
-
- def process_bind_param(self, value, dialect):
- """
- Coerce Python bytestrings to unicode before
- saving them to the database.
- """
- return value
diff --git a/chatter/chatterbot/filters.py b/chatter/chatterbot/filters.py
deleted file mode 100644
index 9a07a09..0000000
--- a/chatter/chatterbot/filters.py
+++ /dev/null
@@ -1,47 +0,0 @@
-"""
-Filters set the base query that gets passed to the storage adapter.
-"""
-
-
-class Filter(object):
- """
- A base filter object from which all other
- filters should be subclassed.
- """
-
- def filter_selection(self, chatterbot, conversation_id):
- """
- Because this is the base filter class, this method just
- returns the storage adapter's base query. Other filters
- are expected to override this method.
- """
- return chatterbot.storage.base_query
-
-
-class RepetitiveResponseFilter(Filter):
- """
- A filter that eliminates possibly repetitive responses to prevent
- a chat bot from repeating statements that it has recently said.
- """
-
- def filter_selection(self, chatterbot, conversation_id):
-
- text_of_recent_responses = []
-
- # TODO: Add a larger quantity of response history
- latest_response = chatterbot.storage.get_latest_response(conversation_id)
- if latest_response:
- text_of_recent_responses.append(latest_response.text)
-
- # Return the query with no changes if there are no statements to exclude
- if not text_of_recent_responses:
- return super(RepetitiveResponseFilter, self).filter_selection(
- chatterbot,
- conversation_id
- )
-
- query = chatterbot.storage.base_query.statement_text_not_in(
- text_of_recent_responses
- )
-
- return query
diff --git a/chatter/chatterbot/input/__init__.py b/chatter/chatterbot/input/__init__.py
deleted file mode 100644
index 53c53f9..0000000
--- a/chatter/chatterbot/input/__init__.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from .input_adapter import InputAdapter
-from .gitter import Gitter
-from .hipchat import HipChat
-from .mailgun import Mailgun
-from .microsoft import Microsoft
-from .terminal import TerminalAdapter
-from .variable_input_type_adapter import VariableInputTypeAdapter
-
-__all__ = (
- 'InputAdapter',
- 'Microsoft',
- 'Gitter',
- 'HipChat',
- 'Mailgun',
- 'TerminalAdapter',
- 'VariableInputTypeAdapter',
-)
diff --git a/chatter/chatterbot/input/gitter.py b/chatter/chatterbot/input/gitter.py
deleted file mode 100644
index 9018e37..0000000
--- a/chatter/chatterbot/input/gitter.py
+++ /dev/null
@@ -1,178 +0,0 @@
-from __future__ import unicode_literals
-
-from time import sleep
-
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
-
-
-class Gitter(InputAdapter):
- """
- An input adapter that allows a ChatterBot instance to get
- input statements from a Gitter room.
- """
-
- def __init__(self, **kwargs):
- super(Gitter, self).__init__(**kwargs)
-
- self.gitter_host = kwargs.get('gitter_host', 'https://api.gitter.im/v1/')
- self.gitter_room = kwargs.get('gitter_room')
- self.gitter_api_token = kwargs.get('gitter_api_token')
- self.only_respond_to_mentions = kwargs.get('gitter_only_respond_to_mentions', True)
- self.sleep_time = kwargs.get('gitter_sleep_time', 4)
-
- authorization_header = 'Bearer {}'.format(self.gitter_api_token)
-
- self.headers = {
- 'Authorization': authorization_header,
- 'Content-Type': 'application/json',
- 'Accept': 'application/json'
- }
-
- # Join the Gitter room
- room_data = self.join_room(self.gitter_room)
- self.room_id = room_data.get('id')
-
- user_data = self.get_user_data()
- self.user_id = user_data[0].get('id')
- self.username = user_data[0].get('username')
-
- def _validate_status_code(self, response):
- code = response.status_code
- if code not in [200, 201]:
- raise self.HTTPStatusException('{} status code recieved'.format(code))
-
- def join_room(self, room_name):
- """
- Join the specified Gitter room.
- """
- import requests
-
- endpoint = '{}rooms'.format(self.gitter_host)
- response = requests.post(
- endpoint,
- headers=self.headers,
- json={'uri': room_name}
- )
- self.logger.info('{} joining room {}'.format(
- response.status_code, endpoint
- ))
- self._validate_status_code(response)
- return response.json()
-
- def get_user_data(self):
- import requests
-
- endpoint = '{}user'.format(self.gitter_host)
- response = requests.get(
- endpoint,
- headers=self.headers
- )
- self.logger.info('{} retrieving user data {}'.format(
- response.status_code, endpoint
- ))
- self._validate_status_code(response)
- return response.json()
-
- def mark_messages_as_read(self, message_ids):
- """
- Mark the specified message ids as read.
- """
- import requests
-
- endpoint = '{}user/{}/rooms/{}/unreadItems'.format(
- self.gitter_host, self.user_id, self.room_id
- )
- response = requests.post(
- endpoint,
- headers=self.headers,
- json={'chat': message_ids}
- )
- self.logger.info('{} marking messages as read {}'.format(
- response.status_code, endpoint
- ))
- self._validate_status_code(response)
- return response.json()
-
- def get_most_recent_message(self):
- """
- Get the most recent message from the Gitter room.
- """
- import requests
-
- endpoint = '{}rooms/{}/chatMessages?limit=1'.format(self.gitter_host, self.room_id)
- response = requests.get(
- endpoint,
- headers=self.headers
- )
- self.logger.info('{} getting most recent message'.format(
- response.status_code
- ))
- self._validate_status_code(response)
- data = response.json()
- if data:
- return data[0]
- return None
-
- def _contains_mention(self, mentions):
- for mention in mentions:
- if self.username == mention.get('screenName'):
- return True
- return False
-
- def should_respond(self, data):
- """
- Takes the API response data from a single message.
- Returns true if the chat bot should respond.
- """
- if data:
- unread = data.get('unread', False)
-
- if self.only_respond_to_mentions:
- if unread and self._contains_mention(data['mentions']):
- return True
- else:
- return False
- elif unread:
- return True
-
- return False
-
- def remove_mentions(self, text):
- """
- Return a string that has no leading mentions.
- """
- import re
- text_without_mentions = re.sub(r'@\S+', '', text)
-
- # Remove consecutive spaces
- text_without_mentions = re.sub(' +', ' ', text_without_mentions.strip())
-
- return text_without_mentions
-
- def process_input(self, statement):
- new_message = False
-
- while not new_message:
- data = self.get_most_recent_message()
- if self.should_respond(data):
- self.mark_messages_as_read([data['id']])
- new_message = True
- sleep(self.sleep_time)
-
- text = self.remove_mentions(data['text'])
- statement = Statement(text)
-
- return statement
-
- class HTTPStatusException(Exception):
- """
- Exception raised when unexpected non-success HTTP
- status codes are returned in a response.
- """
-
- def __init__(self, value):
- self.value = value
-
- def __str__(self):
- return repr(self.value)
diff --git a/chatter/chatterbot/input/hipchat.py b/chatter/chatterbot/input/hipchat.py
deleted file mode 100644
index b5da731..0000000
--- a/chatter/chatterbot/input/hipchat.py
+++ /dev/null
@@ -1,115 +0,0 @@
-from __future__ import unicode_literals
-
-from time import sleep
-
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
-
-
-class HipChat(InputAdapter):
- """
- An input adapter that allows a ChatterBot instance to get
- input statements from a HipChat room.
- """
-
- def __init__(self, **kwargs):
- super(HipChat, self).__init__(**kwargs)
-
- self.hipchat_host = kwargs.get('hipchat_host')
- self.hipchat_access_token = kwargs.get('hipchat_access_token')
- self.hipchat_room = kwargs.get('hipchat_room')
- self.session_id = str(self.chatbot.default_session.uuid)
-
- import requests
- self.session = requests.Session()
- self.session.verify = kwargs.get('ssl_verify', True)
-
- authorization_header = 'Bearer {}'.format(self.hipchat_access_token)
-
- self.headers = {
- 'Authorization': authorization_header,
- 'Content-Type': 'application/json'
- }
-
- # This is a list of the messages that have been responded to
- self.recent_message_ids = self.get_initial_ids()
-
- def get_initial_ids(self):
- """
- Returns a list of the most recent message ids.
- """
- data = self.view_recent_room_history(
- self.hipchat_room,
- max_results=75
- )
-
- results = set()
-
- for item in data['items']:
- results.add(item['id'])
-
- return results
-
- def view_recent_room_history(self, room_id_or_name, max_results=1):
- """
- https://www.hipchat.com/docs/apiv2/method/view_recent_room_history
- """
-
- recent_histroy_url = '{}/v2/room/{}/history?max-results={}'.format(
- self.hipchat_host,
- room_id_or_name,
- max_results
- )
-
- response = self.session.get(
- recent_histroy_url,
- headers=self.headers
- )
-
- return response.json()
-
- def get_most_recent_message(self, room_id_or_name):
- """
- Return the most recent message from the HipChat room.
- """
- data = self.view_recent_room_history(room_id_or_name)
-
- items = data['items']
-
- if not items:
- return None
- return items[-1]
-
- def process_input(self, statement):
- """
- Process input from the HipChat room.
- """
- new_message = False
-
- response_statement = self.chatbot.storage.get_latest_response(
- self.session_id
- )
-
- if response_statement:
- last_message_id = response_statement.extra_data.get(
- 'hipchat_message_id', None
- )
- if last_message_id:
- self.recent_message_ids.add(last_message_id)
-
- while not new_message:
- data = self.get_most_recent_message(self.hipchat_room)
-
- if data and data['id'] not in self.recent_message_ids:
- self.recent_message_ids.add(data['id'])
- new_message = True
- else:
- pass
- sleep(3.5)
-
- text = data['message']
-
- statement = Statement(text)
- statement.add_extra_data('hipchat_message_id', data['id'])
-
- return statement
diff --git a/chatter/chatterbot/input/input_adapter.py b/chatter/chatterbot/input/input_adapter.py
deleted file mode 100644
index 49c63db..0000000
--- a/chatter/chatterbot/input/input_adapter.py
+++ /dev/null
@@ -1,34 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.adapters import Adapter
-
-
-class InputAdapter(Adapter):
- """
- This is an abstract class that represents the
- interface that all input adapters should implement.
- """
-
- def process_input(self, *args, **kwargs):
- """
- Returns a statement object based on the input source.
- """
- raise self.AdapterMethodNotImplementedError()
-
- def process_input_statement(self, *args, **kwargs):
- """
- Return an existing statement object (if one exists).
- """
- input_statement = self.process_input(*args, **kwargs)
-
- self.logger.info('Received input statement: {}'.format(input_statement.text))
-
- existing_statement = self.chatbot.storage.find(input_statement.text)
-
- if existing_statement:
- self.logger.info('"{}" is a known statement'.format(input_statement.text))
- input_statement = existing_statement
- else:
- self.logger.info('"{}" is not a known statement'.format(input_statement.text))
-
- return input_statement
diff --git a/chatter/chatterbot/input/mailgun.py b/chatter/chatterbot/input/mailgun.py
deleted file mode 100644
index 6fb78a8..0000000
--- a/chatter/chatterbot/input/mailgun.py
+++ /dev/null
@@ -1,63 +0,0 @@
-from __future__ import unicode_literals
-
-import datetime
-
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
-
-
-class Mailgun(InputAdapter):
- """
- Get input from Mailgun.
- """
-
- def __init__(self, **kwargs):
- super(Mailgun, self).__init__(**kwargs)
-
- # Use the bot's name for the name of the sender
- self.name = kwargs.get('name')
- self.from_address = kwargs.get('mailgun_from_address')
- self.api_key = kwargs.get('mailgun_api_key')
- self.endpoint = kwargs.get('mailgun_api_endpoint')
-
- def get_email_stored_events(self):
- import requests
-
- yesterday = datetime.datetime.now() - datetime.timedelta(1)
- return requests.get(
- '{}/events'.format(self.endpoint),
- auth=('api', self.api_key),
- params={
- 'begin': yesterday.isoformat(),
- 'ascending': 'yes',
- 'limit': 1
- }
- )
-
- def get_stored_email_urls(self):
- response = self.get_email_stored_events()
- data = response.json()
-
- for item in data.get('items', []):
- if 'storage' in item:
- if 'url' in item['storage']:
- yield item['storage']['url']
-
- def get_message(self, url):
- import requests
-
- return requests.get(
- url,
- auth=('api', self.api_key)
- )
-
- def process_input(self, statement):
- urls = self.get_stored_email_urls()
- url = list(urls)[0]
-
- response = self.get_message(url)
- message = response.json()
-
- text = message.get('stripped-text')
-
- return Statement(text)
diff --git a/chatter/chatterbot/input/microsoft.py b/chatter/chatterbot/input/microsoft.py
deleted file mode 100644
index 3a255bf..0000000
--- a/chatter/chatterbot/input/microsoft.py
+++ /dev/null
@@ -1,117 +0,0 @@
-from __future__ import unicode_literals
-
-from time import sleep
-
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
-
-
-class Microsoft(InputAdapter):
- """
- An input adapter that allows a ChatterBot instance to get
- input statements from a Microsoft Bot using *Directline client protocol*.
- https://docs.botframework.com/en-us/restapi/directline/#navtitle
- """
-
- def __init__(self, **kwargs):
- super(Microsoft, self).__init__(**kwargs)
- import requests
- from requests.packages.urllib3.exceptions import InsecureRequestWarning
- requests.packages.urllib3.disable_warnings(InsecureRequestWarning)
-
- self.directline_host = kwargs.get('directline_host', 'https://directline.botframework.com')
-
- # NOTE: Direct Line client credentials are different from your bot's
- # credentials
- self.direct_line_token_or_secret = kwargs. \
- get('direct_line_token_or_secret')
-
- authorization_header = 'BotConnector {}'. \
- format(self.direct_line_token_or_secret)
-
- self.headers = {
- 'Authorization': authorization_header,
- 'Content-Type': 'application/json',
- 'Accept': 'application/json',
- 'charset': 'utf-8'
- }
-
- conversation_data = self.start_conversation()
- self.conversation_id = conversation_data.get('conversationId')
- self.conversation_token = conversation_data.get('token')
-
- def _validate_status_code(self, response):
- code = response.status_code
- if not code == 200:
- raise self.HTTPStatusException('{} status code recieved'.
- format(code))
-
- def start_conversation(self):
- import requests
-
- endpoint = '{host}/api/conversations'.format(host=self.directline_host)
- response = requests.post(
- endpoint,
- headers=self.headers,
- verify=False
- )
- self.logger.info('{} starting conversation {}'.format(
- response.status_code, endpoint
- ))
- self._validate_status_code(response)
- return response.json()
-
- def get_most_recent_message(self):
- import requests
-
- endpoint = '{host}/api/conversations/{id}/messages' \
- .format(host=self.directline_host,
- id=self.conversation_id)
-
- response = requests.get(
- endpoint,
- headers=self.headers,
- verify=False
- )
-
- self.logger.info('{} retrieving most recent messages {}'.format(
- response.status_code, endpoint
- ))
-
- self._validate_status_code(response)
-
- data = response.json()
-
- if data['messages']:
- last_msg = int(data['watermark'])
- return data['messages'][last_msg - 1]
- return None
-
- def process_input(self, statement):
- new_message = False
- data = None
- while not new_message:
- data = self.get_most_recent_message()
- if data and data['id']:
- new_message = True
- else:
- pass
- sleep(3.5)
-
- text = data['text']
- statement = Statement(text)
- self.logger.info('processing user statement {}'.format(statement))
-
- return statement
-
- class HTTPStatusException(Exception):
- """
- Exception raised when unexpected non-success HTTP
- status codes are returned in a response.
- """
-
- def __init__(self, value):
- self.value = value
-
- def __str__(self):
- return repr(self.value)
diff --git a/chatter/chatterbot/input/terminal.py b/chatter/chatterbot/input/terminal.py
deleted file mode 100644
index 20cb3c2..0000000
--- a/chatter/chatterbot/input/terminal.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
-from chatter.chatterbot.utils import input_function
-
-
-class TerminalAdapter(InputAdapter):
- """
- A simple adapter that allows ChatterBot to
- communicate through the terminal.
- """
-
- def process_input(self, *args, **kwargs):
- """
- Read the user's input from the terminal.
- """
- user_input = input_function()
- return Statement(user_input)
diff --git a/chatter/chatterbot/input/variable_input_type_adapter.py b/chatter/chatterbot/input/variable_input_type_adapter.py
deleted file mode 100644
index d2d598c..0000000
--- a/chatter/chatterbot/input/variable_input_type_adapter.py
+++ /dev/null
@@ -1,61 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.input import InputAdapter
-
-
-class VariableInputTypeAdapter(InputAdapter):
- JSON = 'json'
- TEXT = 'text'
- OBJECT = 'object'
- VALID_FORMATS = (JSON, TEXT, OBJECT,)
-
- def detect_type(self, statement):
-
- string_types = str
-
- if hasattr(statement, 'text'):
- return self.OBJECT
- if isinstance(statement, string_types):
- return self.TEXT
- if isinstance(statement, dict):
- return self.JSON
-
- input_type = type(statement)
-
- raise self.UnrecognizedInputFormatException(
- 'The type {} is not recognized as a valid input type.'.format(
- input_type
- )
- )
-
- def process_input(self, statement):
- input_type = self.detect_type(statement)
-
- # Return the statement object without modification
- if input_type == self.OBJECT:
- return statement
-
- # Convert the input string into a statement object
- if input_type == self.TEXT:
- return Statement(statement)
-
- # Convert input dictionary into a statement object
- if input_type == self.JSON:
- input_json = dict(statement)
- text = input_json['text']
- del input_json['text']
-
- return Statement(text, **input_json)
-
- class UnrecognizedInputFormatException(Exception):
- """
- Exception raised when an input format is specified that is
- not in the VariableInputTypeAdapter.VALID_FORMATS variable.
- """
-
- def __init__(self, value='The input format was not recognized.'):
- self.value = value
-
- def __str__(self):
- return repr(self.value)
diff --git a/chatter/chatterbot/logic/__init__.py b/chatter/chatterbot/logic/__init__.py
deleted file mode 100644
index 8a6cc97..0000000
--- a/chatter/chatterbot/logic/__init__.py
+++ /dev/null
@@ -1,19 +0,0 @@
-from .logic_adapter import LogicAdapter
-from .best_match import BestMatch
-from .low_confidence import LowConfidenceAdapter
-from .mathematical_evaluation import MathematicalEvaluation
-from .multi_adapter import MultiLogicAdapter
-from .no_knowledge_adapter import NoKnowledgeAdapter
-from .specific_response import SpecificResponseAdapter
-from .time_adapter import TimeLogicAdapter
-
-__all__ = (
- 'LogicAdapter',
- 'BestMatch',
- 'LowConfidenceAdapter',
- 'MathematicalEvaluation',
- 'MultiLogicAdapter',
- 'NoKnowledgeAdapter',
- 'SpecificResponseAdapter',
- 'TimeLogicAdapter',
-)
diff --git a/chatter/chatterbot/logic/best_match.py b/chatter/chatterbot/logic/best_match.py
deleted file mode 100644
index f19fc99..0000000
--- a/chatter/chatterbot/logic/best_match.py
+++ /dev/null
@@ -1,85 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.logic import LogicAdapter
-
-
-class BestMatch(LogicAdapter):
- """
- A logic adapter that returns a response based on known responses to
- the closest matches to the input statement.
- """
-
- def get(self, input_statement):
- """
- Takes a statement string and a list of statement strings.
- Returns the closest matching statement from the list.
- """
- statement_list = self.chatbot.storage.get_response_statements()
-
- if not statement_list:
- if self.chatbot.storage.count():
- # Use a randomly picked statement
- self.logger.info(
- 'No statements have known responses. ' +
- 'Choosing a random response to return.'
- )
- random_response = self.chatbot.storage.get_random()
- random_response.confidence = 0
- return random_response
- else:
- raise self.EmptyDatasetException()
-
- closest_match = input_statement
- closest_match.confidence = 0
-
- # Find the closest matching known statement
- for statement in statement_list:
- confidence = self.compare_statements(input_statement, statement)
-
- if confidence > closest_match.confidence:
- statement.confidence = confidence
- closest_match = statement
-
- return closest_match
-
- def can_process(self, statement):
- """
- Check that the chatbot's storage adapter is available to the logic
- adapter and there is at least one statement in the database.
- """
- return self.chatbot.storage.count()
-
- def process(self, input_statement):
-
- # Select the closest match to the input statement
- closest_match = self.get(input_statement)
- self.logger.info('Using "{}" as a close match to "{}"'.format(
- input_statement.text, closest_match.text
- ))
-
- # Get all statements that are in response to the closest match
- response_list = self.chatbot.storage.filter(
- in_response_to__contains=closest_match.text
- )
-
- if response_list:
- self.logger.info(
- 'Selecting response from {} optimal responses.'.format(
- len(response_list)
- )
- )
- response = self.select_response(input_statement, response_list)
- response.confidence = closest_match.confidence
- self.logger.info('Response selected. Using "{}"'.format(response.text))
- else:
- response = self.chatbot.storage.get_random()
- self.logger.info(
- 'No response to "{}" found. Selecting a random response.'.format(
- closest_match.text
- )
- )
-
- # Set confidence to zero because a random response is selected
- response.confidence = 0
-
- return response
diff --git a/chatter/chatterbot/logic/logic_adapter.py b/chatter/chatterbot/logic/logic_adapter.py
deleted file mode 100644
index 1239cca..0000000
--- a/chatter/chatterbot/logic/logic_adapter.py
+++ /dev/null
@@ -1,101 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.adapters import Adapter
-from chatter.chatterbot.utils import import_module
-
-
-class LogicAdapter(Adapter):
- """
- This is an abstract class that represents the interface
- that all logic adapters should implement.
-
- :param statement_comparison_function: The dot-notated import path to a statement comparison function.
- Defaults to ``levenshtein_distance``.
-
- :param response_selection_method: The a response selection method.
- Defaults to ``get_first_response``.
- """
-
- def __init__(self, **kwargs):
- super(LogicAdapter, self).__init__(**kwargs)
- from chatter.chatterbot.comparisons import levenshtein_distance
- from chatter.chatterbot.response_selection import get_first_response
-
- # Import string module parameters
- if 'statement_comparison_function' in kwargs:
- import_path = kwargs.get('statement_comparison_function')
- if isinstance(import_path, str):
- kwargs['statement_comparison_function'] = import_module(import_path)
-
- if 'response_selection_method' in kwargs:
- import_path = kwargs.get('response_selection_method')
- if isinstance(import_path, str):
- kwargs['response_selection_method'] = import_module(import_path)
-
- # By default, compare statements using Levenshtein distance
- self.compare_statements = kwargs.get(
- 'statement_comparison_function',
- levenshtein_distance
- )
-
- # By default, select the first available response
- self.select_response = kwargs.get(
- 'response_selection_method',
- get_first_response
- )
-
- def get_initialization_functions(self):
- """
- Return a dictionary of functions to be run once when the chat bot is instantiated.
- """
- return self.compare_statements.get_initialization_functions()
-
- def initialize(self):
- for function in self.get_initialization_functions().values():
- function()
-
- def can_process(self, statement):
- """
- A preliminary check that is called to determine if a
- logic adapter can process a given statement. By default,
- this method returns true but it can be overridden in
- child classes as needed.
-
- :rtype: bool
- """
- return True
-
- def process(self, statement):
- """
- Override this method and implement your logic for selecting a response to an input statement.
-
- A confidence value and the selected response statement should be returned.
- The confidence value represents a rating of how accurate the logic adapter
- expects the selected response to be. Confidence scores are used to select
- the best response from multiple logic adapters.
-
- The confidence value should be a number between 0 and 1 where 0 is the
- lowest confidence level and 1 is the highest.
-
- :param statement: An input statement to be processed by the logic adapter.
- :type statement: Statement
-
- :rtype: Statement
- """
- raise self.AdapterMethodNotImplementedError()
-
- @property
- def class_name(self):
- """
- Return the name of the current logic adapter class.
- This is typically used for logging and debugging.
- """
- return str(self.__class__.__name__)
-
- class EmptyDatasetException(Exception):
-
- def __init__(self, value='An empty set was received when at least one statement was expected.'):
- self.value = value
-
- def __str__(self):
- return repr(self.value)
diff --git a/chatter/chatterbot/logic/low_confidence.py b/chatter/chatterbot/logic/low_confidence.py
deleted file mode 100644
index 2d33bba..0000000
--- a/chatter/chatterbot/logic/low_confidence.py
+++ /dev/null
@@ -1,59 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.logic import BestMatch
-
-
-class LowConfidenceAdapter(BestMatch):
- """
- Returns a default response with a high confidence
- when a high confidence response is not known.
-
- :kwargs:
- * *threshold* (``float``) --
- The low confidence value that triggers this adapter.
- Defaults to 0.65.
- * *default_response* (``str``) or (``iterable``)--
- The response returned by this logic adaper.
- * *response_selection_method* (``str``) or (``callable``)
- The a response selection method.
- Defaults to ``get_first_response``.
- """
-
- def __init__(self, **kwargs):
- super(LowConfidenceAdapter, self).__init__(**kwargs)
-
- self.confidence_threshold = kwargs.get('threshold', 0.65)
-
- default_responses = kwargs.get(
- 'default_response', "I'm sorry, I do not understand."
- )
-
- # Convert a single string into a list
- if isinstance(default_responses, str):
- default_responses = [
- default_responses
- ]
-
- self.default_responses = [
- Statement(text=default) for default in default_responses
- ]
-
- def process(self, input_statement):
- """
- Return a default response with a high confidence if
- a high confidence response is not known.
- """
- # Select the closest match to the input statement
- closest_match = self.get(input_statement)
-
- # Choose a response from the list of options
- response = self.select_response(input_statement, self.default_responses)
-
- # Confidence should be high only if it is less than the threshold
- if closest_match.confidence < self.confidence_threshold:
- response.confidence = 1
- else:
- response.confidence = 0
-
- return response
diff --git a/chatter/chatterbot/logic/mathematical_evaluation.py b/chatter/chatterbot/logic/mathematical_evaluation.py
deleted file mode 100644
index af27548..0000000
--- a/chatter/chatterbot/logic/mathematical_evaluation.py
+++ /dev/null
@@ -1,68 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.conversation import Statement
-from chatter.chatterbot.logic import LogicAdapter
-
-
-class MathematicalEvaluation(LogicAdapter):
- """
- The MathematicalEvaluation logic adapter parses input to determine
- whether the user is asking a question that requires math to be done.
- If so, the equation is extracted from the input and returned with
- the evaluated result.
-
- For example:
- User: 'What is three plus five?'
- Bot: 'Three plus five equals eight'
-
- :kwargs:
- * *language* (``str``) --
- The language is set to 'ENG' for English by default.
- """
-
- def __init__(self, **kwargs):
- super(MathematicalEvaluation, self).__init__(**kwargs)
-
- self.language = kwargs.get('language', 'ENG')
- self.cache = {}
-
- def can_process(self, statement):
- """
- Determines whether it is appropriate for this
- adapter to respond to the user input.
- """
- response = self.process(statement)
- self.cache[statement.text] = response
- return response.confidence == 1
-
- def process(self, statement):
- """
- Takes a statement string.
- Returns the equation from the statement with the mathematical terms solved.
- """
- from mathparse import mathparse
-
- input_text = statement.text
-
- # Use the result cached by the process method if it exists
- if input_text in self.cache:
- cached_result = self.cache[input_text]
- self.cache = {}
- return cached_result
-
- # Getting the mathematical terms within the input statement
- expression = mathparse.extract_expression(input_text, language=self.language)
-
- response = Statement(text=expression)
-
- try:
- response.text += ' = ' + str(
- mathparse.parse(expression, language=self.language)
- )
-
- # The confidence is 1 if the expression could be evaluated
- response.confidence = 1
- except mathparse.PostfixTokenEvaluationException:
- response.confidence = 0
-
- return response
diff --git a/chatter/chatterbot/logic/multi_adapter.py b/chatter/chatterbot/logic/multi_adapter.py
deleted file mode 100644
index 5ae79f4..0000000
--- a/chatter/chatterbot/logic/multi_adapter.py
+++ /dev/null
@@ -1,155 +0,0 @@
-from __future__ import unicode_literals
-
-from collections import Counter
-
-from chatter.chatterbot import utils
-from chatter.chatterbot.logic import LogicAdapter
-
-
-class MultiLogicAdapter(LogicAdapter):
- """
- MultiLogicAdapter allows ChatterBot to use multiple logic
- adapters. It has methods that allow ChatterBot to add an
- adapter, set the chat bot, and process an input statement
- to get a response.
- """
-
- def __init__(self, **kwargs):
- super(MultiLogicAdapter, self).__init__(**kwargs)
-
- # Logic adapters added by the chat bot
- self.adapters = []
-
- # Required logic adapters that must always be present
- self.system_adapters = []
-
- def get_initialization_functions(self):
- """
- Get the initialization functions for each logic adapter.
- """
- functions_dict = {}
-
- # Iterate over each adapter and get its initialization functions
- for logic_adapter in self.get_adapters():
- functions = logic_adapter.get_initialization_functions()
- functions_dict.update(functions)
-
- return functions_dict
-
- def process(self, statement):
- """
- Returns the output of a selection of logic adapters
- for a given input statement.
-
- :param statement: The input statement to be processed.
- """
- results = []
- result = None
- max_confidence = -1
-
- for adapter in self.get_adapters():
- if adapter.can_process(statement):
-
- output = adapter.process(statement)
- results.append((output.confidence, output,))
-
- self.logger.info(
- '{} selected "{}" as a response with a confidence of {}'.format(
- adapter.class_name, output.text, output.confidence
- )
- )
-
- if output.confidence > max_confidence:
- result = output
- max_confidence = output.confidence
- else:
- self.logger.info(
- 'Not processing the statement using {}'.format(adapter.class_name)
- )
-
- # If multiple adapters agree on the same statement,
- # then that statement is more likely to be the correct response
- if len(results) >= 3:
- statements = [s[1] for s in results]
- count = Counter(statements)
- most_common = count.most_common()
- if most_common[0][1] > 1:
- result = most_common[0][0]
- max_confidence = self.get_greatest_confidence(result, results)
-
- result.confidence = max_confidence
- return result
-
- def get_greatest_confidence(self, statement, options):
- """
- Returns the greatest confidence value for a statement that occurs
- multiple times in the set of options.
-
- :param statement: A statement object.
- :param options: A tuple in the format of (confidence, statement).
- """
- values = []
- for option in options:
- if option[1] == statement:
- values.append(option[0])
-
- return max(values)
-
- def get_adapters(self):
- """
- Return a list of all logic adapters being used, including system logic adapters.
- """
- adapters = []
- adapters.extend(self.adapters)
- adapters.extend(self.system_adapters)
- return adapters
-
- def add_adapter(self, adapter, **kwargs):
- """
- Appends a logic adapter to the list of logic adapters being used.
-
- :param adapter: The logic adapter to be added.
- :type adapter: `LogicAdapter`
- """
- utils.validate_adapter_class(adapter, LogicAdapter)
- adapter = utils.initialize_class(adapter, **kwargs)
- self.adapters.append(adapter)
-
- def insert_logic_adapter(self, logic_adapter, insert_index, **kwargs):
- """
- Adds a logic adapter at a specified index.
-
- :param logic_adapter: The string path to the logic adapter to add.
- :type logic_adapter: str
-
- :param insert_index: The index to insert the logic adapter into the list at.
- :type insert_index: int
- """
- utils.validate_adapter_class(logic_adapter, LogicAdapter)
-
- NewAdapter = utils.import_module(logic_adapter)
- adapter = NewAdapter(**kwargs)
-
- self.adapters.insert(insert_index, adapter)
-
- def remove_logic_adapter(self, adapter_name):
- """
- Removes a logic adapter from the chat bot.
-
- :param adapter_name: The class name of the adapter to remove.
- :type adapter_name: str
- """
- for index, adapter in enumerate(self.adapters):
- if adapter_name == type(adapter).__name__:
- del self.adapters[index]
- return True
- return False
-
- def set_chatbot(self, chatbot):
- """
- Set the chatbot for each of the contained logic adapters.
- """
- super(MultiLogicAdapter, self).set_chatbot(chatbot)
-
- for adapter in self.get_adapters():
- adapter.set_chatbot(chatbot)
diff --git a/chatter/chatterbot/logic/no_knowledge_adapter.py b/chatter/chatterbot/logic/no_knowledge_adapter.py
deleted file mode 100644
index 848b23e..0000000
--- a/chatter/chatterbot/logic/no_knowledge_adapter.py
+++ /dev/null
@@ -1,27 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.logic import LogicAdapter
-
-
-class NoKnowledgeAdapter(LogicAdapter):
- """
- This is a system adapter that is automatically added
- to the list of logic adapters during initialization.
- This adapter is placed at the beginning of the list
- to be given the highest priority.
- """
-
- def process(self, statement):
- """
- If there are no known responses in the database,
- then a confidence of 1 should be returned with
- the input statement.
- Otherwise, a confidence of 0 should be returned.
- """
-
- if self.chatbot.storage.count():
- statement.confidence = 0
- else:
- statement.confidence = 1
-
- return statement
diff --git a/chatter/chatterbot/logic/specific_response.py b/chatter/chatterbot/logic/specific_response.py
deleted file mode 100644
index ef7a630..0000000
--- a/chatter/chatterbot/logic/specific_response.py
+++ /dev/null
@@ -1,39 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.logic import LogicAdapter
-
-
-class SpecificResponseAdapter(LogicAdapter):
- """
- Return a specific response to a specific input.
-
- :kwargs:
- * *input_text* (``str``) --
- The input text that triggers this logic adapter.
- * *output_text* (``str``) --
- The output text returned by this logic adapter.
- """
-
- def __init__(self, **kwargs):
- super(SpecificResponseAdapter, self).__init__(**kwargs)
- from chatter.chatterbot.conversation import Statement
-
- self.input_text = kwargs.get('input_text')
-
- output_text = kwargs.get('output_text')
- self.response_statement = Statement(output_text)
-
- def can_process(self, statement):
- if statement == self.input_text:
- return True
-
- return False
-
- def process(self, statement):
-
- if statement == self.input_text:
- self.response_statement.confidence = 1
- else:
- self.response_statement.confidence = 0
-
- return self.response_statement
diff --git a/chatter/chatterbot/logic/time_adapter.py b/chatter/chatterbot/logic/time_adapter.py
deleted file mode 100644
index d4bbd15..0000000
--- a/chatter/chatterbot/logic/time_adapter.py
+++ /dev/null
@@ -1,93 +0,0 @@
-from __future__ import unicode_literals
-
-from datetime import datetime
-
-from chatter.chatterbot.logic import LogicAdapter
-
-
-class TimeLogicAdapter(LogicAdapter):
- """
- The TimeLogicAdapter returns the current time.
-
- :kwargs:
- * *positive* (``list``) --
- The time-related questions used to identify time questions.
- Defaults to a list of English sentences.
- * *negative* (``list``) --
- The non-time-related questions used to identify time questions.
- Defaults to a list of English sentences.
- """
-
- def __init__(self, **kwargs):
- super(TimeLogicAdapter, self).__init__(**kwargs)
- from nltk import NaiveBayesClassifier
-
- self.positive = kwargs.get('positive', [
- 'what time is it',
- 'hey what time is it',
- 'do you have the time',
- 'do you know the time',
- 'do you know what time it is',
- 'what is the time'
- ])
-
- self.negative = kwargs.get('negative', [
- 'it is time to go to sleep',
- 'what is your favorite color',
- 'i had a great time',
- 'thyme is my favorite herb',
- 'do you have time to look at my essay',
- 'how do you have the time to do all this'
- 'what is it'
- ])
-
- labeled_data = (
- [(name, 0) for name in self.negative] +
- [(name, 1) for name in self.positive]
- )
-
- train_set = [
- (self.time_question_features(text), n) for (text, n) in labeled_data
- ]
-
- self.classifier = NaiveBayesClassifier.train(train_set)
-
- def time_question_features(self, text):
- """
- Provide an analysis of significant features in the string.
- """
- features = {}
-
- # A list of all words from the known sentences
- all_words = " ".join(self.positive + self.negative).split()
-
- # A list of the first word in each of the known sentence
- all_first_words = []
- for sentence in self.positive + self.negative:
- all_first_words.append(
- sentence.split(' ', 1)[0]
- )
-
- for word in text.split():
- features['first_word({})'.format(word)] = (word in all_first_words)
-
- for word in text.split():
- features['contains({})'.format(word)] = (word in all_words)
-
- for letter in 'abcdefghijklmnopqrstuvwxyz':
- features['count({})'.format(letter)] = text.lower().count(letter)
- features['has({})'.format(letter)] = (letter in text.lower())
-
- return features
-
- def process(self, statement):
- from chatter.chatterbot.conversation import Statement
-
- now = datetime.now()
-
- time_features = self.time_question_features(statement.text.lower())
- confidence = self.classifier.classify(time_features)
- response = Statement('The current time is ' + now.strftime('%I:%M %p'))
-
- response.confidence = confidence
- return response
diff --git a/chatter/chatterbot/output/__init__.py b/chatter/chatterbot/output/__init__.py
deleted file mode 100644
index 52c3534..0000000
--- a/chatter/chatterbot/output/__init__.py
+++ /dev/null
@@ -1,15 +0,0 @@
-from .output_adapter import OutputAdapter
-from .gitter import Gitter
-from .hipchat import HipChat
-from .mailgun import Mailgun
-from .microsoft import Microsoft
-from .terminal import TerminalAdapter
-
-__all__ = (
- 'OutputAdapter',
- 'Microsoft',
- 'TerminalAdapter',
- 'Mailgun',
- 'Gitter',
- 'HipChat',
-)
diff --git a/chatter/chatterbot/output/gitter.py b/chatter/chatterbot/output/gitter.py
deleted file mode 100644
index 664d341..0000000
--- a/chatter/chatterbot/output/gitter.py
+++ /dev/null
@@ -1,86 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.output import OutputAdapter
-
-
-class Gitter(OutputAdapter):
- """
- An output adapter that allows a ChatterBot instance to send
- responses to a Gitter room.
- """
-
- def __init__(self, **kwargs):
- super(Gitter, self).__init__(**kwargs)
-
- self.gitter_host = kwargs.get('gitter_host', 'https://api.gitter.im/v1/')
- self.gitter_room = kwargs.get('gitter_room')
- self.gitter_api_token = kwargs.get('gitter_api_token')
-
- authorization_header = 'Bearer {}'.format(self.gitter_api_token)
-
- self.headers = {
- 'Authorization': authorization_header,
- 'Content-Type': 'application/json; charset=utf-8',
- 'Accept': 'application/json'
- }
-
- # Join the Gitter room
- room_data = self.join_room(self.gitter_room)
- self.room_id = room_data.get('id')
-
- def _validate_status_code(self, response):
- code = response.status_code
- if code not in [200, 201]:
- raise self.HTTPStatusException('{} status code recieved'.format(code))
-
- def join_room(self, room_name):
- """
- Join the specified Gitter room.
- """
- import requests
-
- endpoint = '{}rooms'.format(self.gitter_host)
- response = requests.post(
- endpoint,
- headers=self.headers,
- json={'uri': room_name}
- )
- self.logger.info('{} status joining room {}'.format(
- response.status_code, endpoint
- ))
- self._validate_status_code(response)
- return response.json()
-
- def send_message(self, text):
- """
- Send a message to a Gitter room.
- """
- import requests
-
- endpoint = '{}rooms/{}/chatMessages'.format(self.gitter_host, self.room_id)
- response = requests.post(
- endpoint,
- headers=self.headers,
- json={'text': text}
- )
- self.logger.info('{} sending message to {}'.format(
- response.status_code, endpoint
- ))
- self._validate_status_code(response)
- return response.json()
-
- def process_response(self, statement, session_id=None):
- self.send_message(statement.text)
- return statement
-
- class HTTPStatusException(Exception):
- """
- Exception raised when unexpected non-success HTTP
- status codes are returned in a response.
- """
-
- def __init__(self, value):
- self.value = value
-
- def __str__(self):
- return repr(self.value)
diff --git a/chatter/chatterbot/output/hipchat.py b/chatter/chatterbot/output/hipchat.py
deleted file mode 100644
index 20029fa..0000000
--- a/chatter/chatterbot/output/hipchat.py
+++ /dev/null
@@ -1,69 +0,0 @@
-from __future__ import unicode_literals
-
-import json
-
-from chatter.chatterbot.output import OutputAdapter
-
-
-class HipChat(OutputAdapter):
- """
- An output adapter that allows a ChatterBot instance to send
- responses to a HipChat room.
- """
-
- def __init__(self, **kwargs):
- super(HipChat, self).__init__(**kwargs)
-
- self.hipchat_host = kwargs.get("hipchat_host")
- self.hipchat_access_token = kwargs.get("hipchat_access_token")
- self.hipchat_room = kwargs.get("hipchat_room")
-
- authorization_header = "Bearer {}".format(self.hipchat_access_token)
-
- self.headers = {
- 'Authorization': authorization_header,
- 'Content-Type': 'application/json'
- }
-
- import requests
- self.session = requests.Session()
- self.session.verify = kwargs.get('ssl_verify', True)
-
- def send_message(self, room_id_or_name, message):
- """
- Send a message to a HipChat room.
- https://www.hipchat.com/docs/apiv2/method/send_message
- """
- message_url = "{}/v2/room/{}/message".format(
- self.hipchat_host,
- room_id_or_name
- )
-
- response = self.session.post(
- message_url,
- headers=self.headers,
- data=json.dumps({
- 'message': message
- })
- )
-
- return response.json()
-
- def reply_to_message(self):
- """
- The HipChat api supports responding to a given message.
- This may be a good feature to implement in the future to
- help with multi-user conversations.
- https://www.hipchat.com/docs/apiv2/method/reply_to_message
- """
- raise self.AdapterMethodNotImplementedError()
-
- def process_response(self, statement, session_id=None):
- data = self.send_message(self.hipchat_room, statement.text)
-
- # Update the output statement with the message id
- self.chatbot.storage.update(
- statement.add_extra_data('hipchat_message_id', data['id'])
- )
-
- return statement
diff --git a/chatter/chatterbot/output/mailgun.py b/chatter/chatterbot/output/mailgun.py
deleted file mode 100644
index d022a51..0000000
--- a/chatter/chatterbot/output/mailgun.py
+++ /dev/null
@@ -1,50 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.output import OutputAdapter
-
-
-class Mailgun(OutputAdapter):
-
- def __init__(self, **kwargs):
- super(Mailgun, self).__init__(**kwargs)
-
- # Use the bot's name for the name of the sender
- self.name = kwargs.get('name')
- self.from_address = kwargs.get('mailgun_from_address')
- self.api_key = kwargs.get('mailgun_api_key')
- self.endpoint = kwargs.get('mailgun_api_endpoint')
- self.recipients = kwargs.get('mailgun_recipients')
-
- def send_message(self, subject, text, from_address, recipients):
- """
- * subject: Subject of the email.
- * text: Text body of the email.
- * from_email: The email address that the message will be sent from.
- * recipients: A list of recipient email addresses.
- """
- import requests
-
- return requests.post(
- self.endpoint,
- auth=('api', self.api_key),
- data={
- 'from': '%s <%s>' % (self.name, from_address),
- 'to': recipients,
- 'subject': subject,
- 'text': text
- })
-
- def process_response(self, statement, session_id=None):
- """
- Send the response statement as an email.
- """
- subject = 'Message from %s' % (self.name)
-
- self.send_message(
- subject,
- statement.text,
- self.from_address,
- self.recipients
- )
-
- return statement
diff --git a/chatter/chatterbot/output/microsoft.py b/chatter/chatterbot/output/microsoft.py
deleted file mode 100644
index 4f2426a..0000000
--- a/chatter/chatterbot/output/microsoft.py
+++ /dev/null
@@ -1,111 +0,0 @@
-from __future__ import unicode_literals
-
-import json
-
-from chatter.chatterbot.output import OutputAdapter
-
-
-class Microsoft(OutputAdapter):
- """
- An output adapter that allows a ChatterBot instance to send
- responses to a Microsoft bot using *Direct Line client protocol*.
- """
-
- def __init__(self, **kwargs):
- super(Microsoft, self).__init__(**kwargs)
-
- self.directline_host = kwargs.get(
- 'directline_host',
- 'https://directline.botframework.com'
- )
- self.direct_line_token_or_secret = kwargs.get(
- 'direct_line_token_or_secret'
- )
- self.conversation_id = kwargs.get('conversation_id')
-
- authorization_header = 'BotConnector {}'.format(
- self.direct_line_token_or_secret
- )
-
- self.headers = {
- 'Authorization': authorization_header,
- 'Content-Type': 'application/json'
- }
-
- def _validate_status_code(self, response):
- status_code = response.status_code
- if status_code not in [200, 204]:
- raise self.HTTPStatusException('{} status code recieved'.format(status_code))
-
- def get_most_recent_message(self):
- """
- Return the most recently sent message.
- """
- import requests
- endpoint = '{host}/api/conversations/{id}/messages'.format(
- host=self.directline_host,
- id=self.conversation_id
- )
-
- response = requests.get(
- endpoint,
- headers=self.headers,
- verify=False
- )
-
- self.logger.info('{} retrieving most recent messages {}'.format(
- response.status_code, endpoint
- ))
-
- self._validate_status_code(response)
-
- data = response.json()
-
- if data['messages']:
- last_msg = int(data['watermark'])
- return data['messages'][last_msg - 1]
- return None
-
- def send_message(self, conversation_id, message):
- """
- Send a message to a HipChat room.
- https://www.hipchat.com/docs/apiv2/method/send_message
- """
- import requests
-
- message_url = "{host}/api/conversations/{conversationId}/messages".format(
- host=self.directline_host,
- conversationId=conversation_id
- )
-
- response = requests.post(
- message_url,
- headers=self.headers,
- data=json.dumps({
- 'message': message
- })
- )
-
- self.logger.info('{} sending message {}'.format(
- response.status_code, message_url
- ))
- self._validate_status_code(response)
- # Microsoft return 204 on operation succeeded and no content was returned.
- return self.get_most_recent_message()
-
- def process_response(self, statement, session_id=None):
- data = self.send_message(self.conversation_id, statement.text)
- self.logger.info('processing user response {}'.format(data))
- return statement
-
- class HTTPStatusException(Exception):
- """
- Exception raised when unexpected non-success HTTP
- status codes are returned in a response.
- """
-
- def __init__(self, value):
- self.value = value
-
- def __str__(self):
- return repr(self.value)
diff --git a/chatter/chatterbot/output/output_adapter.py b/chatter/chatterbot/output/output_adapter.py
deleted file mode 100644
index 5d13dd7..0000000
--- a/chatter/chatterbot/output/output_adapter.py
+++ /dev/null
@@ -1,20 +0,0 @@
-from chatter.chatterbot.adapters import Adapter
-
-
-class OutputAdapter(Adapter):
- """
- A generic class that can be overridden by a subclass to provide extended
- functionality, such as delivering a response to an API endpoint.
- """
-
- def process_response(self, statement, session_id=None):
- """
- Override this method in a subclass to implement customized functionality.
-
- :param statement: The statement that the chat bot has produced in response to some input.
-
- :param session_id: The unique id of the current chat session.
-
- :returns: The response statement.
- """
- return statement
diff --git a/chatter/chatterbot/output/terminal.py b/chatter/chatterbot/output/terminal.py
deleted file mode 100644
index 005d0ae..0000000
--- a/chatter/chatterbot/output/terminal.py
+++ /dev/null
@@ -1,17 +0,0 @@
-from __future__ import unicode_literals
-
-from chatter.chatterbot.output import OutputAdapter
-
-
-class TerminalAdapter(OutputAdapter):
- """
- A simple adapter that allows ChatterBot to
- communicate through the terminal.
- """
-
- def process_response(self, statement, session_id=None):
- """
- Print the response to the user's input.
- """
- print(statement.text)
- return statement.text
diff --git a/chatter/chatterbot/parsing.py b/chatter/chatterbot/parsing.py
deleted file mode 100644
index 5aafa75..0000000
--- a/chatter/chatterbot/parsing.py
+++ /dev/null
@@ -1,752 +0,0 @@
-# -*- coding: utf-8 -*-
-import calendar
-import re
-from datetime import timedelta, datetime
-
-# Variations of dates that the parser can capture
-year_variations = ['year', 'years', 'yrs']
-day_variations = ['days', 'day']
-minute_variations = ['minute', 'minutes', 'mins']
-hour_variations = ['hrs', 'hours', 'hour']
-week_variations = ['weeks', 'week', 'wks']
-month_variations = ['month', 'months']
-
-# Variables used for RegEx Matching
-day_names = 'monday|tuesday|wednesday|thursday|friday|saturday|sunday'
-month_names_long = (
- 'january|february|march|april|may|june|july|august|september|october|november|december'
-)
-month_names = month_names_long + '|jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec'
-day_nearest_names = 'today|yesterday|tomorrow|tonight|tonite'
-numbers = (
- '(^a(?=\s)|one|two|three|four|five|six|seven|eight|nine|ten|'
- 'eleven|twelve|thirteen|fourteen|fifteen|sixteen|seventeen|'
- 'eighteen|nineteen|twenty|thirty|forty|fifty|sixty|seventy|'
- 'eighty|ninety|hundred|thousand)'
-)
-re_dmy = '(' + '|'.join(day_variations + minute_variations + year_variations + week_variations + month_variations) + ')'
-re_duration = '(before|after|earlier|later|ago|from\snow)'
-re_year = '(19|20)\d{2}|^(19|20)\d{2}'
-re_timeframe = 'this|coming|next|following|previous|last|end\sof\sthe'
-re_ordinal = 'st|nd|rd|th|first|second|third|fourth|fourth|' + re_timeframe
-re_time = r'(?P\d{1,2})(\:(?P\d{1,2})|(?Pam|pm))'
-re_separator = 'of|at|on'
-
-# A list tuple of regular expressions / parser fn to match
-# Start with the widest match and narrow it down because the order of the match in this list matters
-regex = [
- (
- re.compile(
- r'''
- (
- ((?P%s)[,\s]\s*)? #Matches Monday, 12 Jan 2012, 12 Jan 2012 etc
- (?P\d{1,2}) # Matches a digit
- (%s)?
- [-\s] # One or more space
- (?P%s) # Matches any month name
- [-\s] # Space
- (?P%s) # Year
- ((\s|,\s|\s(%s))?\s*(%s))?
- )
- ''' % (day_names, re_ordinal, month_names, re_year, re_separator, re_time),
- (re.VERBOSE | re.IGNORECASE)
- ),
- lambda m, base_date: datetime(
- int(m.group('year') if m.group('year') else base_date.year),
- HASHMONTHS[m.group('month').strip().lower()],
- int(m.group('day') if m.group('day') else 1),
- ) + timedelta(**convert_time_to_hour_minute(
- m.group('hour'),
- m.group('minute'),
- m.group('convention')
- ))
- ),
- (
- re.compile(
- r'''
- (
- ((?P%s)[,\s][-\s]*)? #Matches Monday, Jan 12 2012, Jan 12 2012 etc
- (?P%s) # Matches any month name
- [-\s] # Space
- ((?P\d{1,2})) # Matches a digit
- (%s)?
- ([-\s](?P%s))? # Year
- ((\s|,\s|\s(%s))?\s*(%s))?
- )
- ''' % (day_names, month_names, re_ordinal, re_year, re_separator, re_time),
- (re.VERBOSE | re.IGNORECASE)
- ),
- lambda m, base_date: datetime(
- int(m.group('year') if m.group('year') else base_date.year),
- HASHMONTHS[m.group('month').strip().lower()],
- int(m.group('day') if m.group('day') else 1)
- ) + timedelta(**convert_time_to_hour_minute(
- m.group('hour'),
- m.group('minute'),
- m.group('convention')
- ))
- ),
- (
- re.compile(
- r'''
- (
- (?P%s) # Matches any month name
- [-\s] # One or more space
- (?P\d{1,2}) # Matches a digit
- (%s)?
- [-\s]\s*?
- (?P%s) # Year
- ((\s|,\s|\s(%s))?\s*(%s))?
- )
- ''' % (month_names, re_ordinal, re_year, re_separator, re_time),
- (re.VERBOSE | re.IGNORECASE)
- ),
- lambda m, base_date: datetime(
- int(m.group('year') if m.group('year') else base_date.year),
- HASHMONTHS[m.group('month').strip().lower()],
- int(m.group('day') if m.group('day') else 1),
- ) + timedelta(**convert_time_to_hour_minute(
- m.group('hour'),
- m.group('minute'),
- m.group('convention')
- ))
- ),
- (
- re.compile(
- r'''
- (
- ((?P\d+|(%s[-\s]?)+)\s)? # Matches any number or string 25 or twenty five
- (?P%s)s?\s # Matches days, months, years, weeks, minutes
- (?P%s) # before, after, earlier, later, ago, from now
- (\s*(?P(%s)))?
- ((\s|,\s|\s(%s))?\s*(%s))?
- )
- ''' % (numbers, re_dmy, re_duration, day_nearest_names, re_separator, re_time),
- (re.VERBOSE | re.IGNORECASE)
- ),
- lambda m, base_date: date_from_duration(
- base_date,
- m.group('number'),
- m.group('unit').lower(),
- m.group('duration').lower(),
- m.group('base_time')
- ) + timedelta(**convert_time_to_hour_minute(
- m.group('hour'),
- m.group('minute'),
- m.group('convention')
- ))
- ),
- (
- re.compile(
- r'''
- (
- (?P%s) # First quarter of 2014
- \s+
- quarter\sof
- \s+
- (?P%s)
- )
- ''' % (re_ordinal, re_year),
- (re.VERBOSE | re.IGNORECASE)
- ),
- lambda m, base_date: date_from_quarter(
- base_date,
- HASHORDINALS[m.group('ordinal').lower()],
- int(m.group('year') if m.group('year') else base_date.year)
- )
- ),
- (
- re.compile(
- r'''
- (
- (?P\d+)
- (?P%s) # 1st January 2012
- ((\s|,\s|\s(%s))?\s*)?
- (?P%s)
- ([,\s]\s*(?P%s))?
- )
- ''' % (re_ordinal, re_separator, month_names, re_year),
- (re.VERBOSE | re.IGNORECASE)
- ),
- lambda m, base_date: datetime(
- int(m.group('year') if m.group('year') else base_date.year),
- int(HASHMONTHS[m.group('month').lower()] if m.group('month') else 1),
- int(m.group('ordinal_value') if m.group('ordinal_value') else 1),
- )
- ),
- (
- re.compile(
- r'''
- (
- (?P%s)
- \s+
- (?P\d+)
- (?P%s) # January 1st 2012
- ([,\s]\s*(?P%s))?
- )
- ''' % (month_names, re_ordinal, re_year),
- (re.VERBOSE | re.IGNORECASE)
- ),
- lambda m, base_date: datetime(
- int(m.group('year') if m.group('year') else base_date.year),
- int(HASHMONTHS[m.group('month').lower()] if m.group('month') else 1),
- int(m.group('ordinal_value') if m.group('ordinal_value') else 1),
- )
- ),
- (
- re.compile(
- r'''
- (?P