diff --git a/apps/.env b/apps/.env index feb00ac..16ad2c2 100644 --- a/apps/.env +++ b/apps/.env @@ -110,6 +110,7 @@ CLOUDFLARE_API_TOKEN= ADDON_MANAGER_HOSTNAME=addon-manager.${DOMAIN?} AIOSTREAMS_HOSTNAME=aiostreams.${DOMAIN} AIOSTREMIO_HOSTNAME=aiostremio.${DOMAIN} +ANIME_KITSU_HOSTNAME=kitsu.${DOMAIN} AUTHELIA_HOSTNAME=auth.${DOMAIN} AUTOSYNC_HOSTNAME=autosync.${DOMAIN} BAZARR_HOSTNAME=bazarr.${DOMAIN} @@ -162,7 +163,7 @@ ZIPLINE_HOSTNAME=zipline.${DOMAIN} ZURG_HOSTNAME=zurg.${DOMAIN} # This is the list of all the domains for which Cloudflare DDNS will create A/AAAA records for. -DOMAINS=${ADDON_MANAGER_HOSTNAME},${AIOSTREAMS_HOSTNAME},${AIOSTREMIO_HOSTNAME},${AUTHELIA_HOSTNAME},${AUTOSYNC_HOSTNAME},${BAZARR_HOSTNAME},${BAZARR4K_HOSTNAME},${BESZEL_HOSTNAME},${COMET_HOSTNAME},${DASHDOT_HOSTNAME},${DOCKGE_HOSTNAME},${DOZZLE_HOSTNAME},${EASYNEWS_PLUS_HOSTNAME},${HONEY_HOSTNAME},${JACKETT_HOSTNAME},${JACKETTIO_HOSTNAME},${JELLYFIN_HOSTNAME},${JELLYSEER_HOSTNAME},${LIBRESPEED_HOSTNAME},${MEDIAFLOW_PROXY_HOSTNAME},${MEDIAFUSION_HOSTNAME},${MINECRAFT_HOSTNAME},${NZBHYDRA2_HOSTNAME},${OMG_TV_STREMIO_ADDON_HOSTNAME},${OVERSEERR_HOSTNAME},${PLAUSIBLE_HOSTNAME},${PLEX_HOSTNAME},${PORTAINER_HOSTNAME},${PROWLARR_HOSTNAME},${RADARR_HOSTNAME},${RADARR4K_HOSTNAME},${RADARRANIME_HOSTNAME},${SEANIME_HOSTNAME},${SEARXNG_HOSTNAME},${SONARR_HOSTNAME},${SONARR4K_HOSTNAME},${SONARRANIME_HOSTNAME},${SPEEDTEST_TRACKER_HOSTNAME},${STREAMYSTATS_HOSTNAME},${STREMIO_CATALOG_PROVIDERS_HOSTNAME},${STREMIO_JACKETT_HOSTNAME},${STREMIO_SERVER_HOSTNAME},${STREMIO_TRAKT_ADDON_HOSTNAME},${STREMTHRU_HOSTNAME},${TAUTULLI_HOSTNAME},${TMDB_ADDON_HOSTNAME},${TORBOX_MANAGER_HOSTNAME},${TRAEFIK_HOSTNAME},${UPTIME_KUMA_HOSTNAME},${VAULTWARDEN_HOSTNAME},${ZILEAN_HOSTNAME},${ZIPLINE_HOSTNAME},${ZURG_HOSTNAME} +DOMAINS=${ADDON_MANAGER_HOSTNAME},${AIOSTREAMS_HOSTNAME},${AIOSTREMIO_HOSTNAME},${ANIME_KITSU_HOSTNAME},${AUTHELIA_HOSTNAME},${AUTOSYNC_HOSTNAME},${BAZARR_HOSTNAME},${BAZARR4K_HOSTNAME},${BESZEL_HOSTNAME},${COMET_HOSTNAME},${DASHDOT_HOSTNAME},${DOCKGE_HOSTNAME},${DOZZLE_HOSTNAME},${EASYNEWS_PLUS_HOSTNAME},${HONEY_HOSTNAME},${JACKETT_HOSTNAME},${JACKETTIO_HOSTNAME},${JELLYFIN_HOSTNAME},${JELLYSEER_HOSTNAME},${LIBRESPEED_HOSTNAME},${MEDIAFLOW_PROXY_HOSTNAME},${MEDIAFUSION_HOSTNAME},${MINECRAFT_HOSTNAME},${NZBHYDRA2_HOSTNAME},${OMG_TV_STREMIO_ADDON_HOSTNAME},${OVERSEERR_HOSTNAME},${PLAUSIBLE_HOSTNAME},${PLEX_HOSTNAME},${PORTAINER_HOSTNAME},${PROWLARR_HOSTNAME},${RADARR_HOSTNAME},${RADARR4K_HOSTNAME},${RADARRANIME_HOSTNAME},${SEANIME_HOSTNAME},${SEARXNG_HOSTNAME},${SONARR_HOSTNAME},${SONARR4K_HOSTNAME},${SONARRANIME_HOSTNAME},${SPEEDTEST_TRACKER_HOSTNAME},${STREAMYSTATS_HOSTNAME},${STREMIO_CATALOG_PROVIDERS_HOSTNAME},${STREMIO_JACKETT_HOSTNAME},${STREMIO_SERVER_HOSTNAME},${STREMIO_TRAKT_ADDON_HOSTNAME},${STREMTHRU_HOSTNAME},${TAUTULLI_HOSTNAME},${TMDB_ADDON_HOSTNAME},${TORBOX_MANAGER_HOSTNAME},${TRAEFIK_HOSTNAME},${UPTIME_KUMA_HOSTNAME},${VAULTWARDEN_HOSTNAME},${ZILEAN_HOSTNAME},${ZIPLINE_HOSTNAME},${ZURG_HOSTNAME} # ==================================================== # DOCKER COMPOSE CONFIGURATION diff --git a/apps/anime-kitsu/.env b/apps/anime-kitsu/.env new file mode 100644 index 0000000..9e94f80 --- /dev/null +++ b/apps/anime-kitsu/.env @@ -0,0 +1 @@ +FANART_APIKEY= \ No newline at end of file diff --git a/apps/anime-kitsu/compose.yaml b/apps/anime-kitsu/compose.yaml new file mode 100644 index 0000000..f022149 --- /dev/null +++ b/apps/anime-kitsu/compose.yaml @@ -0,0 +1,50 @@ +services: + anime-kitsu: + build: + context: https://github.com/TheBeastLT/stremio-kitsu-anime.git + dockerfile: Dockerfile + image: anime-kitsu:latest + container_name: anime-kitsu + expose: + - 7000 + environment: + - PORT=7000 + - ADDON_URL=https://${ANIME_KITSU_HOSTNAME} + - FANART_APIKEY=${FANART_APIKEY} + - META_TTL=86400 + - CATALOG_TTL=86400 + - CACHE_MAX_AGE=43200 + - MONGO_URI=mongodb://anime-kitsu_mongo:27017/anime-kitsu + labels: + - "traefik.enable=true" + - "traefik.http.routers.anime-kitsu.rule=Host(`${ANIME_KITSU_HOSTNAME}`)" + - "traefik.http.services.anime-kitsu.loadbalancer.server.port=7000" + - "traefik.http.routers.anime-kitsu.entrypoints=websecure" + - "traefik.http.routers.anime-kitsu.tls=true" + - "traefik.http.routers.anime-kitsu.tls.certresolver=letsencrypt" + - "traefik.http.routers.anime-kitsu.middlewares=authelia@docker" + volumes: + - ${DOCKER_DATA_DIR}/anime-kitsu/imdb_mapping.json:/home/node/app/static/data/imdb_mapping.json + profiles: + - anime-kitsu + - stremio + - all + + anime-kitsu_mongo: + image: mongo:latest + container_name: anime-kitsu_mongo + restart: unless-stopped + volumes: + - ${DOCKER_DATA_DIR}/anime-kitsu/db:/data/db + healthcheck: + test: echo 'db.runCommand("ping").ok' | mongosh localhost:27017/test --quiet + interval: 10s + timeout: 10s + retries: 5 + start_period: 40s + profiles: + - anime-kitsu + - stremio + - all + + diff --git a/apps/authelia/.env b/apps/authelia/.env index 9bac48c..69b72b2 100644 --- a/apps/authelia/.env +++ b/apps/authelia/.env @@ -35,4 +35,4 @@ AUTHELIA_WEBAUTHN_DISPLAY_NAME="Authelia" # Although we can't fully protect Stremio addons, we can still add authentication to specific pages like the configuration pages. # All the domains within this comma separated list will have specific pages protected with Authelia. # Do NOT include non-stremio addon domains here. It would mean that those services would not be fully protected, or in most cases not protected at all. -STREMIO_ADDON_HOSTNAMES=${AIOSTREAMS_HOSTNAME},${AIOSTREMIO_HOSTNAME},${COMET_HOSTNAME},${EASYNEWS_PLUS_HOSTNAME},${MEDIAFUSION_HOSTNAME},${JACKETTIO_HOSTNAME},${STREMIO_JACKETT_HOSTNAME},${STREMTHRU_HOSTNAME},${OMG_TV_STREMIO_ADDON_HOSTNAME},${STREMIO_CATALOG_PROVIDERS_HOSTNAME},${STREMIO_TRAKT_ADDON_HOSTNAME},${TMDB_ADDON_HOSTNAME} \ No newline at end of file +STREMIO_ADDON_HOSTNAMES=${AIOSTREAMS_HOSTNAME},${AIOSTREMIO_HOSTNAME},${ANIME_KITSU_HOSTNAME},${COMET_HOSTNAME},${EASYNEWS_PLUS_HOSTNAME},${MEDIAFUSION_HOSTNAME},${JACKETTIO_HOSTNAME},${STREMIO_JACKETT_HOSTNAME},${STREMTHRU_HOSTNAME},${OMG_TV_STREMIO_ADDON_HOSTNAME},${STREMIO_CATALOG_PROVIDERS_HOSTNAME},${STREMIO_TRAKT_ADDON_HOSTNAME},${TMDB_ADDON_HOSTNAME} \ No newline at end of file diff --git a/apps/compose.yaml b/apps/compose.yaml index a20490e..c15d81c 100644 --- a/apps/compose.yaml +++ b/apps/compose.yaml @@ -3,6 +3,7 @@ include: - addon-manager/compose.yaml - aiostreams/compose.yaml - aiostremio/compose.yaml + - anime-kitsu/compose.yaml - autosync/compose.yaml - bazarr/compose.yaml - beszel/compose.yaml diff --git a/data/anime-kitsu/imdb_mapping.json b/data/anime-kitsu/imdb_mapping.json new file mode 100644 index 0000000..2203480 --- /dev/null +++ b/data/anime-kitsu/imdb_mapping.json @@ -0,0 +1,30660 @@ +{ + "1": { + "imdb_id": "tt0213338", + "title": "Cowboy Bebop" + }, + "2": { + "imdb_id": "tt0275277", + "title": "Cowboy Bebop: The Movie" + }, + "3": { + "imdb_id": "tt0251439", + "title": "Trigun" + }, + "4": { + "imdb_id": "tt0402716", + "title": "Witch Hunter Robin" + }, + "5": { + "imdb_id": "tt3123886", + "title": "Beet the Vandel Buster", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1007": { + "imdb_id": "tt3123886", + "title": "Beet the Vandel Buster", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6": { + "imdb_id": "tt0996695", + "title": "Eyeshield 21" + }, + "7": { + "imdb_id": "tt0478838", + "title": "Honey and Clover" + }, + "8": { + "imdb_id": "tt2074708", + "title": "Hungry Heart: Wild Striker" + }, + "10": { + "imdb_id": "tt0434706", + "title": "Monster" + }, + "11": { + "imdb_id": "tt0409591", + "title": "Naruto" + }, + "12": { + "imdb_id": "tt0388629", + "title": "One Piece", + "nonImdbEpisodes": [ 590 ], + "fromSeason": 1, + "fromEpisode": 1 + }, + "49229": { + "imdb_id": "tt0388629", + "title": "One Piece", + "fromSeason": 0, + "fromEpisode": 56 + }, + "49259": { + "imdb_id": "tt0388629", + "title": "One Piece", + "fromSeason": 0, + "fromEpisode": 57 + }, + "13": { + "imdb_id": "tt0466352", + "title": "The Prince of Tennis", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14": { + "imdb_id": "tt0413600", + "title": "Ring ni kakero" + }, + "15": { + "imdb_id": "tt0878037", + "fanartLogoId": "43651", + "title": "School Rumble", + "fromSeason": 1, + "fromEpisode": 1 + }, + "750": { + "imdb_id": "tt0878037", + "fanartLogoId": "91074", + "title": "School Rumble", + "fromSeason": 2, + "fromEpisode": 1 + }, + "476": { + "imdb_id": "tt0878037", + "fanartLogoId": "90880", + "title": "School Rumble", + "fromSeason": 0, + "fromEpisode": 1 + }, + "3413": { + "imdb_id": "tt0878037", + "fanartLogoId": "90881", + "title": "School Rumble", + "fromSeason": 0, + "fromEpisode": 3 + }, + "16": { + "imdb_id": "tt0440988", + "title": "Desert Punk" + }, + "17": { + "imdb_id": "tt0409630", + "title": "Texhnolyze" + }, + "18": { + "imdb_id": "tt0791163", + "title": "Trinity Blood" + }, + "19": { + "imdb_id": "tt0479783", + "title": "Yakitate!! Japan" + }, + "20": { + "imdb_id": "tt0963150", + "title": "Zipang" + }, + "21": { + "imdb_id": "tt0112159", + "title": "Neon Genesis Evangelion" + }, + "22": { + "imdb_id": "tt0169880", + "title": "Neon Genesis Evangelion: Death & Rebirth" + }, + "23": { + "imdb_id": "tt0169858", + "title": "Neon Genesis Evangelion: The End of Evangelion" + }, + "24": { + "imdb_id": "tt0318871", + "title": "Berserk" + }, + "25": { + "imdb_id": "tt0113568", + "title": "Ghost in the Shell" + }, + "26": { + "imdb_id": "tt0203082", + "title": "Samurai X: Trust and Betrayal" + }, + "27": { + "imdb_id": "tt0182629", + "title": "Rurouni Kenshin: Wandering Samurai" + }, + "28": { + "imdb_id": "tt0184872", + "title": "Rurouni Kenshin: Requiem for the Ishin Patriots" + }, + "29": { + "imdb_id": "tt0094625", + "title": "Akira" + }, + "30": { + "imdb_id": "tt0361140", + "fanartLogoId": "127950", + "title": ".hack//SIGN", + "fromSeason": 1, + "fromEpisode": 1 + }, + "273": { + "imdb_id": "tt0361140", + "fanartLogoId": "127951", + "title": ".hack//SIGN", + "fromSeason": 2, + "fromEpisode": 1 + }, + "773": { + "imdb_id": "tt0361140", + "fanartLogoId": "127952", + "title": ".hack//SIGN", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1024": { + "imdb_id": "tt0361140", + "title": ".hack//SIGN", + "fromSeason": 0, + "fromEpisode": 1 + }, + "274": { + "imdb_id": "tt0361140", + "title": ".hack//SIGN", + "fromSeason": 0, + "fromEpisode": 2 + }, + "1333": { + "imdb_id": "tt0361140", + "title": ".hack//SIGN", + "fromSeason": 0, + "fromEpisode": 6 + }, + "416": { + "imdb_id": "tt0361140", + "title": ".hack//SIGN", + "fromSeason": 0, + "fromEpisode": 8 + }, + "31": { + "imdb_id": "tt0872301", + "fanartLogoId": "28138", + "title": "Ah! My Goddess", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7775": { + "imdb_id": "tt0872301", + "fanartLogoId": "116243", + "title": "Ah! My Goddess", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7780": { + "imdb_id": "tt0872301", + "title": "Ah! My Goddess", + "fromSeason": 0, + "fromEpisode": 1 + }, + "893": { + "imdb_id": "tt0872301", + "title": "Ah! My Goddess", + "fromSeason": 0, + "fromEpisode": 7 + }, + "2786": { + "imdb_id": "tt0872301", + "fanartLogoId": "133333", + "title": "Ah! My Goddess: Fighting Wings", + "fromSeason": 0, + "fromEpisode": 8 + }, + "5808": { + "imdb_id": "tt0872301", + "title": "Ah! My Goddess", + "fromSeason": 0, + "fromEpisode": 10 + }, + "7784": { + "imdb_id": "tt0265018", + "title": "Ah! My Goddess: The Movie" + }, + "32": { + "imdb_id": "tt0308974", + "title": "Angel Sanctuary" + }, + "33": { + "imdb_id": "tt0343274", + "title": "Angelic Layer" + }, + "34": { + "imdb_id": "tt0339953", + "title": "Bluer Than Indigo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "35": { + "imdb_id": "tt0401233", + "title": "Appleseed" + }, + "36": { + "imdb_id": "tt0283891", + "title": "Arc the Lad" + }, + "37": { + "imdb_id": "tt0883021", + "title": "Avenger" + }, + "38": { + "imdb_id": "tt0434662", + "title": "Beck: Mongolian Chop Squad" + }, + "39": { + "imdb_id": "tt0387724", + "title": "Blue Gender" + }, + "40": { + "imdb_id": "tt0326672", + "title": "Chobits" + }, + "41": { + "imdb_id": "tt0434670", + "title": "Chrono Crusade" + }, + "42": { + "imdb_id": "tt0366004", + "title": "D.N. Angel" + }, + "43": { + "imdb_id": "tt0486952", + "title": "Da Capo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44": { + "imdb_id": "tt1019037", + "title": "DearS" + }, + "45": { + "imdb_id": "tt0861287", + "fanartLogoId": "92283", + "title": "Rozen Maiden", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46": { + "imdb_id": "tt0861287", + "fanartLogoId": "95609", + "title": "Rozen Maiden", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2028": { + "imdb_id": "tt0861287", + "title": "Rozen Maiden", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1540": { + "imdb_id": "tt0861287", + "fanartLogoId": "96463", + "title": "Rozen Maiden", + "fromSeason": 0, + "fromEpisode": 2 + }, + "47": { + "imdb_id": "tt0339955", + "title": "Azumanga Daioh" + }, + "48": { + "imdb_id": "tt0856348", + "title": "Basilisk: The Kouga Ninja Scrolls" + }, + "49": { + "imdb_id": "tt1085074", + "title": "Black Cat" + }, + "50": { + "imdb_id": "tt0791204", + "title": "Cluster Edge" + }, + "51": { + "imdb_id": "tt0328739", + "fanartLogoId": "124064", + "title": "Full Metal Panic!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "52": { + "imdb_id": "tt0328739", + "fanartLogoId": "123939", + "title": "Full Metal Panic!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "53": { + "imdb_id": "tt0328739", + "fanartLogoId": "102892", + "title": "Full Metal Panic!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11460": { + "imdb_id": "tt0328739", + "fanartLogoId": "87000", + "title": "Full Metal Panic!", + "fromSeason": 4, + "fromEpisode": 1 + }, + "905": { + "imdb_id": "tt1091866", + "title": "A Relatively Leisurely Day in the Life of a Fleet Captain" + }, + "54": { + "imdb_id": "tt1914829", + "title": "Gakuen Alice" + }, + "55": { + "imdb_id": "tt0440987", + "title": "Fafner in the Azure: Dead Aggressor" + }, + "56": { + "imdb_id": "tt0808082", + "fanartLogoId": "91170", + "title": "Magical Girl Lyrical Nanoha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "57": { + "imdb_id": "tt0808082", + "fanartLogoId": "144766", + "title": "Magical Girl Lyrical Nanoha", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1725": { + "imdb_id": "tt0808082", + "fanartLogoId": "144765", + "title": "Magical Girl Lyrical Nanoha", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8687": { + "imdb_id": "tt0808082", + "fanartLogoId": "91174", + "title": "Magical Girl Lyrical Nanoha", + "fromSeason": 4, + "fromEpisode": 1 + }, + "12304": { + "imdb_id": "tt6912372", + "title": "Magical Girl Lyrical Nanoha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "58": { + "imdb_id": "tt0865827", + "title": "Shuffle!" + }, + "59": { + "imdb_id": "tt0159172", + "title": "Mobile Suit Gundam" + }, + "975": { + "imdb_id": "tt0159509", + "title": "Mobile Suit Gundam I" + }, + "976": { + "imdb_id": "tt0159510", + "title": "Mobile Suit Gundam II: Soldiers of Sorrow" + }, + "977": { + "imdb_id": "tt0159511", + "title": "Mobile Suit Gundam III: Encounters in Space" + }, + "60": { + "imdb_id": "tt0159569", + "title": "Mobile Suit Gundam: The 08th MS Team" + }, + "61": { + "imdb_id": "tt0097661", + "title": "Gundam 0080: A War in the Pocket" + }, + "62": { + "imdb_id": "tt0945355", + "title": "Mobile Suit Gundam: The 08th MS Team - Miller's Report" + }, + "63": { + "imdb_id": "tt0159567", + "title": "Mobile Suit Gundam 0083: Stardust Memory" + }, + "64": { + "imdb_id": "tt0159186", + "title": "Mobile Suit Zeta Gundam" + }, + "1772": { + "imdb_id": "tt0435202", + "title": "Mobile Suit Z Gundam: A New Translation - Heirs to the Stars" + }, + "1773": { + "imdb_id": "tt0468812", + "title": "Mobile Suit Z Gundam 2: A New Translation - Lovers" + }, + "1774": { + "imdb_id": "tt0488584", + "title": "Mobile Suit Z Gundam 3: A New Translation - Love Is the Pulse of the Stars" + }, + "65": { + "imdb_id": "tt0159184", + "title": "Mobile Suit Gundam ZZ", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5831": { + "imdb_id": "tt0159184", + "title": "Mobile Suit Gundam ZZ", + "fromSeason": 0, + "fromEpisode": 1 + }, + "66": { + "imdb_id": "tt0095262", + "title": "Mobile Suit Gundam: Char's Counterattack" + }, + "67": { + "imdb_id": "tt0159568", + "title": "Mobile Suit Gundam F91" + }, + "68": { + "imdb_id": "tt0159185", + "title": "Mobile Suit Victory Gundam" + }, + "69": { + "imdb_id": "tt0159193", + "title": "Mobile Suit Gundam Wing", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3150": { + "imdb_id": "tt0159193", + "title": "Mobile Suit Gundam Wing", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7964": { + "imdb_id": "tt0159193", + "title": "Mobile Suit Gundam Wing", + "fromSeason": 0, + "fromEpisode": 5 + }, + "8603": { + "imdb_id": "tt0159193", + "title": "Mobile Suit Gundam Wing", + "fromSeason": 0, + "fromEpisode": 9 + }, + "70": { + "imdb_id": "tt0260191", + "title": "Gundam Wing: The Movie - Endless Waltz" + }, + "71": { + "imdb_id": "tt0159183", + "title": "After War Gundam X" + }, + "72": { + "imdb_id": "tt0374407", + "title": "Mobile Suit Gundam Seed", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2057": { + "imdb_id": "tt0374407", + "title": "Mobile Suit Gundam Seed", + "fromSeason": 0, + "fromEpisode": 1 + }, + "2080": { + "imdb_id": "tt0374407", + "title": "Mobile Suit Gundam Seed", + "fromSeason": 0, + "fromEpisode": 4 + }, + "765": { + "imdb_id": "tt0374407", + "title": "Mobile Suit Gundam Seed", + "fromSeason": 0, + "fromEpisode": 5 + }, + "73": { + "imdb_id": "tt0434694", + "title": "Mobile Suit Gundam Seed Destiny", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2079": { + "imdb_id": "tt0434694", + "title": "Mobile Suit Gundam Seed Destiny", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1092": { + "imdb_id": "tt0434694", + "title": "Mobile Suit Gundam Seed Destiny", + "fromSeason": 0, + "fromEpisode": 7 + }, + "1117": { + "imdb_id": "tt0434694", + "title": "Mobile Suit Gundam Seed Destiny", + "fromSeason": 0, + "fromEpisode": 8 + }, + "74": { + "imdb_id": "tt0189318", + "title": "Turn-A Gundam" + }, + "3381": { + "imdb_id": "tt4130762", + "title": "Turn A Gundam: Earth Light" + }, + "3382": { + "imdb_id": "tt4130788", + "title": "Turn A Gundam: Movie II: Moonlight Butterfly" + }, + "75": { + "imdb_id": "tt0159182", + "title": "Mobile Fighter G Gundam" + }, + "76": { + "imdb_id": "tt0390733", + "fanartLogoId": "45333", + "title": "Last Exile", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6134": { + "imdb_id": "tt0390733", + "fanartLogoId": "144770", + "title": "Last Exile", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6728": { + "imdb_id": "tt0390733", + "title": "Last Exile", + "fromSeason": 0, + "fromEpisode": 2 + }, + "11491": { + "tmdb_id": "372757", + "title": "Last Exile: Fam, the Silver Wing - Over the Wishes" + }, + "77": { + "imdb_id": "tt0824043", + "title": "Mai-HiME" + }, + "78": { + "imdb_id": "tt0978540", + "title": "Mai otome", + "fromSeason": 1, + "fromEpisode": 1 + }, + "79": { + "imdb_id": "tt0431562", + "title": "Pretear" + }, + "80": { + "imdb_id": "tt0807703", + "title": "Air: The Motion Picture" + }, + "81": { + "imdb_id": "tt0888676", + "title": "Aishiteruze baby" + }, + "82": { + "imdb_id": "tt0108689", + "title": "Akazukin Chacha" + }, + "83": { + "imdb_id": "tt0261463", + "title": "Ayashi no Ceres" + }, + "84": { + "imdb_id": "tt0257297", + "title": "Boys be..." + }, + "85": { + "imdb_id": "tt0482107", + "title": "Boys Over Flowers" + }, + "86": { + "imdb_id": "tt0380120", + "title": "King of Bandit Jing" + }, + "87": { + "imdb_id": "tt2325891", + "title": "Ou Dorobou Jing in Seventh Heaven" + }, + "88": { + "imdb_id": "tt0409536", + "title": "Burst Angel" + }, + "89": { + "imdb_id": "tt1171785", + "title": "Chuka ichiban", + "fromSeason": 1, + "fromEpisode": 1 + }, + "90": { + "imdb_id": "tt3620568", + "title": "Corrector Yui" + }, + "91": { + "imdb_id": "tt4146000", + "title": "The Cosmopolitan Prayers" + }, + "92": { + "imdb_id": "tt0434723", + "title": "Stellvia" + }, + "93": { + "imdb_id": "tt0387775", + "title": "Cromartie High School" + }, + "94": { + "imdb_id": "tt0213636", + "title": "El Hazard: The Alternative World" + }, + "95": { + "imdb_id": "tt0158406", + "title": "El Hazard: Wanderers" + }, + "96": { + "imdb_id": "tt0112940", + "title": "El Hazard: The Magnificent World" + }, + "97": { + "imdb_id": "tt0171263", + "title": "El Hazard: The Magnificent World 2" + }, + "98": { + "imdb_id": "tt2981730", + "title": "Final Approach" + }, + "99": { + "imdb_id": "tt0328738", + "title": "Fruits Basket" + }, + "100": { + "imdb_id": "tt0421357", + "title": "Fullmetal Alchemist" + }, + "101": { + "imdb_id": "tt0823967", + "title": "Finding Full Moon" + }, + "102": { + "imdb_id": "tt0111973", + "fanartLogoId": "94610", + "title": "Fushigi Yûgi - The Mysterious Play", + "fromSeason": 1, + "fromEpisode": 1 + }, + "347": { + "imdb_id": "tt0111973", + "fanartLogoId": "97658", + "title": "Fushigi Yugi - The Mysterious Play", + "fromSeason": 0, + "fromEpisode": 1 + }, + "348": { + "imdb_id": "tt0111973", + "fanartLogoId": "96777", + "title": "Fushigi Yugi - The Mysterious Play", + "fromSeason": 0, + "fromEpisode": 4 + }, + "103": { + "imdb_id": "tt0111973", + "fanartLogoId": "91306", + "title": "Fushigi Yûgi - The Mysterious Play", + "fromSeason": 0, + "fromEpisode": 10 + }, + "104": { + "imdb_id": "tt0988817", + "title": "Futakoi" + }, + "105": { + "imdb_id": "tt0988816", + "title": "Futakoi Alternative" + }, + "106": { + "imdb_id": "tt0305596", + "title": "Gate Keepers" + }, + "107": { + "imdb_id": "tt3488994", + "title": "Gate Keepers 21" + }, + "108": { + "imdb_id": "tt0111056", + "title": "Gensomaden Saiyuki" + }, + "109": { + "imdb_id": "tt6840424", + "title": "Saiyuuki Reload" + }, + "110": { + "imdb_id": "tt6998248", + "title": "Saiyuki Reload Gunlock" + }, + "111": { + "imdb_id": "tt0429363", + "title": "Get Backers" + }, + "112": { + "imdb_id": "tt1170225", + "title": "Green Green" + }, + "113": { + "imdb_id": "tt0476042", + "title": "Gunslinger Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2874": { + "imdb_id": "tt0476042", + "title": "Gunslinger Girl", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3777": { + "imdb_id": "tt0476042", + "title": "Gunslinger Girl", + "fromSeason": 0, + "fromEpisode": 1 + }, + "114": { + "imdb_id": "tt0426711", + "title": "Hikaru no go" + }, + "115": { + "imdb_id": "tt0426719", + "title": "Hunter x Hunter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "116": { + "imdb_id": "tt0426719", + "title": "Hunter x Hunter", + "fromSeason": 2, + "fromEpisode": 1 + }, + "117": { + "imdb_id": "tt0426719", + "title": "Hunter x Hunter", + "fromSeason": 3, + "fromEpisode": 1 + }, + "118": { + "imdb_id": "tt0426719", + "title": "Hunter x Hunter", + "fromSeason": 4, + "fromEpisode": 1 + }, + "120": { + "imdb_id": "tt0272988", + "title": "Kamikaze Kaito Jeanne" + }, + "121": { + "imdb_id": "tt0890871", + "title": "Destiny of the Shrine Maiden" + }, + "122": { + "imdb_id": "tt0928093", + "title": "Kanon" + }, + "123": { + "imdb_id": "tt0202430", + "title": "His and Her Circumstances" + }, + "124": { + "imdb_id": "tt0834730", + "title": "This Ugly Yet Beautiful World" + }, + "125": { + "imdb_id": "tt0411002", + "title": "Rumbling Hearts" + }, + "126": { + "imdb_id": "tt0818349", + "title": "Diamond Daydreams" + }, + "127": { + "imdb_id": "tt0816393", + "title": "Loveless " + }, + "128": { + "imdb_id": "tt0482855", + "title": "Blood+" + }, + "129": { + "imdb_id": "tt0423041", + "title": "Re: Cutie Honey" + }, + "130": { + "imdb_id": "tt0972735", + "title": "SoltyRei" + }, + "131": { + "imdb_id": "tt0327386", + "title": "The Twelve Kingdoms" + }, + "132": { + "imdb_id": "tt0367409", + "title": "Shaman King", + "fromSeason": 1, + "fromEpisode": 1 + }, + "133": { + "imdb_id": "tt0118200", + "title": "X" + }, + "134": { + "imdb_id": "tt0312258", + "title": "X" + }, + "135": { + "imdb_id": "tt0480493", + "title": "Negima!" + }, + "136": { + "imdb_id": "tt1163560", + "title": "Maria Watches Over Us", + "fromSeason": 1, + "fromEpisode": 1 + }, + "137": { + "imdb_id": "tt0872302", + "title": "Melody of Oblivion" + }, + "138": { + "imdb_id": "tt0318898", + "title": "Now and Then, Here and There" + }, + "139": { + "imdb_id": "tt0796142", + "title": "Peace Maker Kurogane" + }, + "140": { + "imdb_id": "tt0857298", + "title": "Pita ten" + }, + "141": { + "imdb_id": "tt0328788", + "title": "Power Stone" + }, + "142": { + "imdb_id": "tt0119698", + "title": "Princess Mononoke" + }, + "143": { + "imdb_id": "tt0364863", + "title": "RahXephon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "516": { + "imdb_id": "tt0364863", + "title": "RahXephon", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4035": { + "imdb_id": "tt0364863", + "title": "RahXephon", + "fromSeason": 0, + "fromEpisode": 2 + }, + "680": { + "imdb_id": "tt1047518", + "title": "RahXephon: Pluralitas Concentio" + }, + "144": { + "imdb_id": "tt0482424", + "title": "Samurai 7" + }, + "145": { + "imdb_id": "tt0409612", + "title": "Scrapped Princess" + }, + "146": { + "imdb_id": "tt0307427", + "title": "s-CRY-ed" + }, + "147": { + "imdb_id": "tt0791098", + "title": "Lunar Legend Tsukihime" + }, + "148": { + "imdb_id": "tt0965547", + "title": "Slam Dunk" + }, + "149": { + "imdb_id": "tt0315071", + "title": "Strange Dawn" + }, + "150": { + "imdb_id": "tt1186591", + "title": "Tactics" + }, + "151": { + "imdb_id": "tt0809815", + "title": "Tenjho tenge" + }, + "152": { + "imdb_id": "tt1547413", + "title": "Tokyo Underground" + }, + "153": { + "imdb_id": "tt0498584", + "title": "Triangle Heart: Sweet Songs Forever" + }, + "154": { + "imdb_id": "tt0477543", + "title": "Reservoir Chronicle: Tsubasa", + "fromSeason": 1, + "fromEpisode": 1 + }, + "859": { + "imdb_id": "tt0477543", + "title": "Reservoir Chronicle: Tsubasa", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2447": { + "imdb_id": "tt0477543", + "title": "Reservoir Chronicle: Tsubasa", + "fromSeason": 3, + "fromEpisode": 1 + }, + "3859": { + "imdb_id": "tt0477543", + "fanartLogoId": "102786", + "title": "Reservoir Chronicle: Tsubasa", + "fromSeason": 4, + "fromEpisode": 1 + }, + "716": { + "imdb_id": "tt0466551", + "title": "Tsubasa Chronicle The Movie: The Princess in the Birdcage Kingdom" + }, + "155": { + "imdb_id": "tt2107575", + "title": "Ultra Maniac" + }, + "156": {}, + "157": { + "imdb_id": "tt0309226", + "fanartLogoId": "93732", + "title": "Vandread", + "fromSeason": 1, + "fromEpisode": 1 + }, + "158": { + "imdb_id": "tt0309226", + "fanartLogoId": "102893", + "title": "Vandread", + "fromSeason": 2, + "fromEpisode": 1 + }, + "159": { + "imdb_id": "tt0138919", + "title": "Escaflowne" + }, + "160": { + "imdb_id": "tt3389064", + "title": "Whistle!: Dream Team" + }, + "161": { + "imdb_id": "tt1133486", + "title": "Xenosaga: The Animation" + }, + "162": { + "imdb_id": "tt0385426", + "fanartLogoId": "144772", + "title": "Initial D", + "fromSeason": 1, + "fromEpisode": 1 + }, + "163": { + "imdb_id": "tt0385426", + "fanartLogoId": "138767", + "title": "Initial D", + "fromSeason": 2, + "fromEpisode": 1 + }, + "164": { + "imdb_id": "tt0385426", + "fanartLogoId": "138770", + "title": "Initial D", + "fromSeason": 3, + "fromEpisode": 1 + }, + "9": { + "imdb_id": "tt0385426", + "fanartLogoId": "144771", + "title": "Initial D", + "fromSeason": 4, + "fromEpisode": 1 + }, + "7204": { + "imdb_id": "tt0385426", + "fanartLogoId": "138768", + "title": "Initial D", + "fromSeason": 5, + "fromEpisode": 1 + }, + "8482": { + "imdb_id": "tt0385426", + "fanartLogoId": "138769", + "title": "Initial D", + "fromSeason": 6, + "fromEpisode": 1 + }, + "728": { + "imdb_id": "tt7941838", + "title": "Initial D: Battle Stage" + }, + "3358": { + "imdb_id": "tt11294636", + "title": "Initial D: Battle Stage 2" + }, + "44506": { + "imdb_id": "tt15411068", + "title": "Initial D: Battle Stage 3" + }, + "729": { + "imdb_id": "tt0400537", + "title": "Initial D: Extra Stage", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3999": { + "imdb_id": "tt3382648", + "title": "Initial D: Extra Stage 2" + }, + "7906": { + "imdb_id": "tt3971764", + "title": "New Initial D the Movie: Legend 1 - Awakening" + }, + "10073": { + "imdb_id": "tt4971484", + "title": "New Initial D the Movie: Legend 2 - Racer" + }, + "11053": { + "imdb_id": "tt5463088", + "title": "New Initial D the Movie: Legend 3 - Dream" + }, + "165": { + "imdb_id": "tt2404235", + "title": "Gosenzosama Banbanzai!" + }, + "166": { + "imdb_id": "tt0279570", + "title": "Love Hina", + "fromSeason": 1, + "fromEpisode": 1 + }, + "167": { + "imdb_id": "tt0279570", + "title": "Love Hina", + "fromSeason": 0, + "fromEpisode": 5 + }, + "168": { + "imdb_id": "tt0279570", + "title": "Love Hina Christmas Special: Silent Eve", + "fromSeason": 0, + "fromEpisode": 1 + }, + "169": { + "imdb_id": "tt0279570", + "title": "Love Hina Spring Special", + "fromSeason": 0, + "fromEpisode": 2 + }, + "170": { + "imdb_id": "tt0399990", + "title": "Maburaho" + }, + "171": { + "imdb_id": "tt0353685", + "title": "Macross Zero" + }, + "172": { + "imdb_id": "tt0366848", + "title": "Please Teacher!" + }, + "173": { + "imdb_id": "tt0398533", + "title": "Onegai Twins" + }, + "174": { + "imdb_id": "tt0328338", + "title": "Rizerumain" + }, + "175": { + "imdb_id": "tt0805960", + "title": "Speed Grapher" + }, + "176": { + "imdb_id": "tt0245429", + "title": "Spirited Away" + }, + "177": { + "imdb_id": "tt0346414", + "title": "Tenshi na konamaiki" + }, + "178": { + "imdb_id": "tt0105748", + "title": "Video Girl Ai" + }, + "180": { + "imdb_id": "tt2119365", + "title": "Yumeria" + }, + "181": { + "imdb_id": "tt0423731", + "title": "Samurai Champloo" + }, + "183": { + "imdb_id": "tt0100044", + "title": "Record of the Lodoss War", + "fromSeason": 1, + "fromEpisode": 1 + }, + "182": { + "imdb_id": "tt0100044", + "title": "Record of the Lodoss War", + "fromSeason": 2, + "fromEpisode": 1 + }, + "184": { + "imdb_id": "tt0368197", + "title": "Read or Die" + }, + "185": { + "imdb_id": "tt0425710", + "title": "R.O.D the TV" + }, + "186": { + "imdb_id": "tt0096686", + "title": "Ranma ½", + "fromSeason": 1, + "fromEpisode": 1 + }, + "897": { + "imdb_id": "tt0096686", + "title": "Ranma ½", + "fromSeason": 0, + "fromEpisode": 3 + }, + "898": { + "imdb_id": "tt0096686", + "title": "Ranma ½", + "fromSeason": 0, + "fromEpisode": 9 + }, + "901": { + "imdb_id": "tt0096686", + "fanartLogoId": "98004", + "title": "Ranma ½", + "fromSeason": 0, + "fromEpisode": 12 + }, + "4123": { + "imdb_id": "tt0096686", + "title": "Ranma ½", + "fromSeason": 0, + "fromEpisode": 15 + }, + "188": { + "imdb_id": "tt0091794", + "title": "Project A-Ko" + }, + "189": { + "imdb_id": "tt0251936", + "title": "Welcome to Pia Carrot " + }, + "190": { + "imdb_id": "tt3898672", + "title": "Welcome to Pia Carrot 2" + }, + "191": { + "imdb_id": "tt3898720", + "title": "Pia Carrot e Yokoso! 2 DX" + }, + "192": { + "imdb_id": "tt1178592", + "title": "Pia Carrot Movie" + }, + "194": { + "imdb_id": "tt0115263", + "title": "Martian Successor Nadesico" + }, + "195": { + "imdb_id": "tt0407924", + "title": "Martian Successor Nadesico: Prince of Darkness" + }, + "198": { + "imdb_id": "tt0461879", + "title": "Mezzo DSA" + }, + "199": { + "imdb_id": "tt0280249", + "title": "Dragon Ball" + }, + "200": { + "imdb_id": "tt0139774", + "title": "Dragon Ball GT" + }, + "4394": { + "imdb_id": "tt1409055", + "fanartLogoId": "31906", + "title": "Dragon Ball Z Kai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6500": { + "imdb_id": "tt1409055", + "fanartLogoId": "31906", + "title": "Dragon Ball Z Kai", + "fromSeason": 1, + "fromEpisode": 98 + }, + "8351": { + "imdb_id": "tt1409055", + "fanartLogoId": "100410", + "title": "Dragon Ball Z Kai", + "fromSeason": 2, + "fromEpisode": 1 + }, + "201": { + "imdb_id": "tt0480489", + "title": "Elfen Lied", + "fromSeason": 1, + "fromEpisode": 1 + }, + "343": { + "imdb_id": "tt0480489", + "title": "Elfen Lied", + "fromSeason": 0, + "fromEpisode": 1 + }, + "202": { + "imdb_id": "tt0279077", + "fanartLogoId": "31113", + "title": "FLCL", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11961": { + "imdb_id": "tt0279077", + "fanartLogoId": "123700", + "title": "FLCL", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11962": { + "imdb_id": "tt0279077", + "fanartLogoId": "123701", + "title": "FLCL", + "fromSeason": 3, + "fromEpisode": 1 + }, + "45975": { + "imdb_id": "tt0279077", + "fanartLogoId": "155121", + "title": "FLCL", + "fromSeason": 4, + "fromEpisode": 1 + }, + "45976": { + "imdb_id": "tt0279077", + "fanartLogoId": "155081", + "title": "FLCL", + "fromSeason": 5, + "fromEpisode": 1 + }, + "203": { + "imdb_id": "tt0962740", + "fanartLogoId": "35987", + "title": "Hell Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1434": { + "imdb_id": "tt0962740", + "fanartLogoId": "35988", + "title": "Hell Girl", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3210": { + "imdb_id": "tt0962740", + "fanartLogoId": "35989", + "title": "Hell Girl", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13249": { + "imdb_id": "tt0962740", + "fanartLogoId": "145155", + "title": "Hell Girl", + "fromSeason": 4, + "fromEpisode": 1 + }, + "204": { + "imdb_id": "tt0441824", + "title": "Ninja Nonsense" + }, + "205": { + "imdb_id": "tt0463281", + "title": "Air Master" + }, + "206": { + "imdb_id": "tt1071154", + "title": "Shrine of the Morning Mist" + }, + "207": { + "imdb_id": "tt0221735", + "title": "Cardcaptor Sakura" + }, + "208": { + "imdb_id": "tt2180201", + "title": "UFO Baby" + }, + "209": { + "imdb_id": "tt2629690", + "title": "Dan Doh!!" + }, + "210": { + "imdb_id": "tt0131179", + "title": "Detective Conan" + }, + "211": { + "imdb_id": "tt0450911", + "title": "E's Otherwise" + }, + "212": { + "imdb_id": "tt0765491", + "fanartLogoId": "122995", + "title": "Eureka Seven", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6741": { + "imdb_id": "tt0765491", + "fanartLogoId": "122994", + "title": "Eureka Seven", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3537": { + "imdb_id": "tt1414518", + "title": "Psalms of Planets Eureka Seven: Good Night, Sleep Tight, Young Lovers" + }, + "13238": { + "imdb_id": "tt7480958", + "title": "Eureka Seven Hi-Evolution 1" + }, + "13239": { + "imdb_id": "tt9266078", + "title": "Eureka Seven Hi-Evolution 2: Anemone" + }, + "13240": { + "imdb_id": "tt11951334", + "title": "Eureka Seven Hi-Evolution 3: Eureka" + }, + "213": { + "imdb_id": "tt2160200", + "title": "Flame of Recca" + }, + "214": { + "imdb_id": "tt0437719", + "title": "The Count of Monte Cristo" + }, + "215": { + "imdb_id": "tt0473578", + "title": "Genshiken", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2275": { + "imdb_id": "tt0473578", + "title": "Genshiken", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7677": { + "imdb_id": "tt0473578", + "title": "Genshiken", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1631": { + "imdb_id": "tt0473578", + "title": "Genshiken", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7820": { + "imdb_id": "tt0473578", + "title": "Genshiken", + "fromSeason": 0, + "fromEpisode": 5 + }, + "216": { + "imdb_id": "tt0807675", + "title": "Girls Bravo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "217": { + "imdb_id": "tt0450430", + "title": "Gokusen" + }, + "218": { + "imdb_id": "tt0331743", + "title": "Gravitation" + }, + "219": { + "imdb_id": "tt2298577", + "title": "Agatha Christie's Great Detectives Poirot and Marple" + }, + "220": { + "imdb_id": "tt0315008", + "title": "GTO" + }, + "221": { + "imdb_id": "tt0414763", + "title": "Rave Master" + }, + "222": { + "imdb_id": "tt0988819", + "title": "Haruka: Beyond the Stream of Time - A Tale of the Eight Guardians" + }, + "224": { + "imdb_id": "tt0290223", + "fanartLogoId": "35397", + "title": "Inuyasha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4726": { + "imdb_id": "tt0290223", + "fanartLogoId": "134405", + "title": "InuYasha: The Final Act", + "fromSeason": 8, + "fromEpisode": 1 + }, + "225": { + "imdb_id": "tt0455295", + "title": "Zatch Bell!" + }, + "226": { + "imdb_id": "tt0816387", + "title": "God, Save Our King!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3452": { + "imdb_id": "tt0816387", + "title": "God, Save Our King!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "227": { + "imdb_id": "tt0465339", + "title": "Madlax" + }, + "228": { + "imdb_id": "tt0498436", + "title": "Hare+Guu" + }, + "229": { + "imdb_id": "tt1874570", + "title": "Hare+Guu Deluxe" + }, + "230": { + "imdb_id": "tt1451392", + "title": "Hare+Guu Final" + }, + "231": { + "imdb_id": "tt0370754", + "title": "Voices of a Distant Star" + }, + "232": { + "imdb_id": "tt0486171", + "fanartLogoId": "48791", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1762": { + "imdb_id": "tt0486171", + "fanartLogoId": "93177", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3516": { + "imdb_id": "tt0486171", + "fanartLogoId": "144859", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 3, + "fromEpisode": 1 + }, + "5037": { + "imdb_id": "tt0486171", + "fanartLogoId": "96247", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 4, + "fromEpisode": 1 + }, + "2635": { + "imdb_id": "tt0486171", + "fanartLogoId": "93177", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4061": { + "imdb_id": "tt0486171", + "fanartLogoId": "96065", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 0, + "fromEpisode": 7 + }, + "5365": { + "imdb_id": "tt0486171", + "fanartLogoId": "96247", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 0, + "fromEpisode": 13 + }, + "6483": { + "imdb_id": "tt0486171", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 0, + "fromEpisode": 19 + }, + "13220": { + "imdb_id": "tt0486171", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 0, + "fromEpisode": 20 + }, + "42005": { + "imdb_id": "tt0486171", + "fanartLogoId": "42005", + "title": "Ikki tosen: Dragon Destiny", + "fromSeason": 0, + "fromEpisode": 22 + }, + "233": { + "imdb_id": "tt0488556", + "title": "Hitsuji no uta" + }, + "234": { + "imdb_id": "tt1820943", + "title": "Happy Lesson OVA Series" + }, + "235": { + "imdb_id": "tt0433710", + "title": "Happy Lesson" + }, + "236": { + "imdb_id": "tt1234591", + "title": "Happy Lesson: Advance" + }, + "237": {}, + "238": { + "imdb_id": "tt0481256", + "fanartLogoId": "131847", + "title": "Hajime no Ippo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4016": { + "imdb_id": "tt0481256", + "fanartLogoId": "55113", + "title": "Hajime no Ippo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7855": { + "imdb_id": "tt0481256", + "fanartLogoId": "55114", + "title": "Hajime no Ippo", + "fromSeason": 3, + "fromEpisode": 1 + }, + "6660": { + "imdb_id": "tt0481256", + "fanartLogoId": "131847", + "title": "Hajime no Ippo", + "fromSeason": 0, + "fromEpisode": 1 + }, + "239": { + "imdb_id": "tt0805540", + "title": "Hajime no Ippo - Champion road" + }, + "240": { + "imdb_id": "tt3354378", + "title": "Hajime no Ippo: Mashiba vs. Kimura" + }, + "241": { + "imdb_id": "tt0376397", + "title": "Ganparedo machi: Aratanaru kogun uta" + }, + "242": { + "imdb_id": "tt0435961", + "title": "Gungrave" + }, + "243": { + "imdb_id": "tt0159145", + "title": "Golden Boy" + }, + "244": { + "imdb_id": "tt0434665", + "fanartLogoId": "28356", + "title": "Bleach", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43078": { + "imdb_id": "tt14986406", + "tvdb_id": "74796", + "fanartLogoId": "157743", + "title": "Bleach: Thousand Year Blood War", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46903": { + "imdb_id": "tt14986406", + "tvdb_id": "74796", + "fanartLogoId": "157743", + "title": "Bleach: Thousand Year Blood War", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48015": { + "imdb_id": "tt14986406", + "tvdb_id": "74796", + "fanartLogoId": "157743", + "title": "Bleach: Thousand Year Blood War", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1515": { + "imdb_id": "tt1105263", + "title": "Bleach: Memories of Nobody" + }, + "2623": { + "imdb_id": "tt1148261", + "title": "Bleach the Movie 2: The Diamond Dust Rebellion" + }, + "3817": { + "imdb_id": "tt1339302", + "title": "Bleach: Fade to Black, I Call Your Name" + }, + "5267": { + "imdb_id": "tt1785394", + "title": "Bleach the Movie: Hell Verse" + }, + "245": { + "imdb_id": "tt0325547", + "title": "Hellsing" + }, + "246": { + "imdb_id": "tt0813706", + "title": "Gad Guard" + }, + "247": { + "imdb_id": "tt0294154", + "title": "Noir" + }, + "248": { + "imdb_id": "tt0433717", + "title": "Someday's Dreamers" + }, + "249": { + "imdb_id": "tt0377210", + "title": "Kiddy Grade" + }, + "250": { + "imdb_id": "tt3355356", + "title": "Love Love?" + }, + "251": { + "imdb_id": "tt0337769", + "fanartLogoId": "91593", + "title": "Mahoromatic", + "fromSeason": 1, + "fromEpisode": 1 + }, + "252": { + "imdb_id": "tt0337769", + "fanartLogoId": "91592", + "title": "Mahoromatic", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3875": { + "imdb_id": "tt0337769", + "title": "Mahoromatic", + "fromSeason": 0, + "fromEpisode": 1 + }, + "585": { + "imdb_id": "tt0337769", + "title": "Mahoromatic", + "fromSeason": 0, + "fromEpisode": 3 + }, + "4857": { + "imdb_id": "tt0337769", + "fanartLogoId": "91591", + "title": "Mahoromatic", + "fromSeason": 0, + "fromEpisode": 4 + }, + "253": { + "imdb_id": "tt0464782", + "title": "Viewtiful Joe" + }, + "254": { + "imdb_id": "tt1290729", + "title": "Requiem from the Darkness" + }, + "255": { + "imdb_id": "tt0988811", + "title": "Animaru yokocho" + }, + "256": { + "imdb_id": "tt1464515", + "title": "Akane maniakkusu: Joji Hakuryo ni tatsu" + }, + "257": { + "imdb_id": "tt0965544", + "title": "Angel Heart" + }, + "258": { + "imdb_id": "tt0078560", + "title": "Anne of Green Gables" + }, + "259": { + "imdb_id": "tt1256124", + "title": "Area 88" + }, + "260": { + "imdb_id": "tt0353039", + "title": "Argentosoma" + }, + "261": { + "imdb_id": "tt0331863", + "title": "BB'T X" + }, + "262": { + "imdb_id": "tt0981456", + "title": "Baki the Grappler", + "fromSeason": 1, + "fromEpisode": 1 + }, + "508": { + "imdb_id": "tt0981456", + "title": "Baki the Grappler", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1676": { + "imdb_id": "tt0981456", + "title": "Baki the Grappler", + "fromSeason": 0, + "fromEpisode": 1 + }, + "263": { + "imdb_id": "tt0328733", + "fanartLogoId": "100620", + "title": "Beyblade", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1499": { + "imdb_id": "tt0328733", + "fanartLogoId": "115865", + "title": "Beyblade", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1498": { + "imdb_id": "tt0328733", + "fanartLogoId": "144642", + "title": "Beyblade", + "fromSeason": 3, + "fromEpisode": 1 + }, + "264": { + "imdb_id": "tt0447582", + "title": "Comic Party" + }, + "265": { + "imdb_id": "tt0286390", + "title": "Crest of the Stars" + }, + "266": { + "imdb_id": "tt0496193", + "title": "D.C.S.S: Da Capo Second Season", + "fromSeason": 1, + "fromEpisode": 1 + }, + "267": { + "imdb_id": "tt0892765", + "title": "Hoop Days" + }, + "268": { + "imdb_id": "tt4415404", + "title": "Di Gi Charat", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1574": { + "imdb_id": "tt4415404", + "title": "Di Gi Charat", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1577": { + "imdb_id": "tt4415404", + "title": "Di Gi Charat", + "fromSeason": 0, + "fromEpisode": 5 + }, + "1575": { + "imdb_id": "tt4415404", + "title": "Di Gi Charat", + "fromSeason": 0, + "fromEpisode": 6 + }, + "1576": { + "imdb_id": "tt4415404", + "title": "Di Gi Charat", + "fromSeason": 0, + "fromEpisode": 10 + }, + "1578": { + "imdb_id": "tt4415404", + "title": "Di Gi Charat", + "fromSeason": 0, + "fromEpisode": 14 + }, + "1539": { + "imdb_id": "tt4415404", + "title": "Di Gi Charat", + "fromSeason": 0, + "fromEpisode": 16 + }, + "1572": { + "imdb_id": "tt4146056", + "title": "Di Gi Charat: A Trip to the Planet" + }, + "269": { + "imdb_id": "tt0972633", + "title": "Divergence Eve" + }, + "270": { + "imdb_id": "tt4388130", + "title": "Divergence Eve: Misaki Chronicles" + }, + "271": { + "imdb_id": "tt0960287", + "title": "Dragon Drive" + }, + "272": { + "imdb_id": "tt0985984", + "title": "Grenadier: Hohoemi no senshi" + }, + "275": { + "imdb_id": "tt0834546", + "title": "Cinderella Boy" + }, + "276": { + "imdb_id": "tt0077013", + "title": "Future Boy Conan" + }, + "277": { + "imdb_id": "tt1862157", + "title": "Adventures of the Mini Goddesses", + "fromSeason": 1, + "fromEpisode": 1 + }, + "278": { + "imdb_id": "tt0122369", + "title": "The Abashiri Family" + }, + "279": { + "imdb_id": "tt1175172", + "title": "Zettai shonen" + }, + "280": {}, + "281": { + "imdb_id": "tt0296295", + "title": "Aim for the Ace", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8123": { + "imdb_id": "tt0296295", + "title": "Aim for the Ace", + "fromSeason": 2, + "fromEpisode": 1 + }, + "282": { + "imdb_id": "tt0296295", + "title": "Aim for the Ace", + "fromSeason": 3, + "fromEpisode": 1 + }, + "283": { + "imdb_id": "tt7523106", + "title": "Aim for the Ace!" + }, + "284": { + "imdb_id": "tt0125037", + "title": "A Chinese Ghost Story" + }, + "286": { + "imdb_id": "tt3508332", + "title": "Happy World!" + }, + "287": { + "imdb_id": "tt0246734", + "title": "Kite" + }, + "288": { + "imdb_id": "tt0425702", + "title": "Najica: Blitz Tactics" + }, + "289": { + "imdb_id": "tt0498443", + "title": "Paradise Kiss" + }, + "290": { + "imdb_id": "tt0433722", + "title": "Paranoia Agent" + }, + "291": { + "imdb_id": "tt0159883", + "title": "Patlabor: The Mobile Police" + }, + "292": { + "imdb_id": "tt1409913", + "title": "Peach Girl" + }, + "293": { + "imdb_id": "tt0291419", + "title": "Pet Shop of Horrors" + }, + "294": { + "imdb_id": "tt0434712", + "title": "Petite Princess Yucie" + }, + "295": { + "imdb_id": "tt1071676", + "title": "Piano: The Melody of a Young Girl's Heart" + }, + "296": { + "imdb_id": "tt0816398", + "title": "Planetes" + }, + "297": { + "imdb_id": "tt1244322", + "title": "Midori Days" + }, + "298": { + "imdb_id": "tt0330592", + "title": "Mahojin guru guru" + }, + "299": { + "imdb_id": "tt0330592", + "title": "Mahôjin guru guru" + }, + "300": { + "imdb_id": "tt0330600", + "title": "Mama wa shogaku yonensei" + }, + "301": { + "imdb_id": "tt0108850", + "title": "Marmalade Boy" + }, + "302": { + "imdb_id": "tt0839199", + "title": "Mythical Detective Loki Ragnarok" + }, + "303": { + "imdb_id": "tt1183586", + "title": "Meine Liebe" + }, + "304": { + "imdb_id": "tt2275406", + "title": "Psychic Academy" + }, + "305": { + "imdb_id": "tt0078570", + "title": "The Rose of Versailles" + }, + "306": { + "imdb_id": "tt0500092", + "title": "Serial Experiments Lain" + }, + "307": { + "imdb_id": "tt4773360", + "title": "Shura no Toki: Age of Chaos" + }, + "308": { + "imdb_id": "tt0369167", + "title": "Spiral: The Bonds of Reasoning" + }, + "309": { + "imdb_id": "tt0498448", + "title": "Starship Operators" + }, + "310": { + "imdb_id": "tt1230420", + "title": "Moon Phase" + }, + "311": { + "imdb_id": "tt1491857", + "title": "Futatsu no supika" + }, + "312": { + "imdb_id": "tt0466413", + "title": "Emma", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1834": { + "imdb_id": "tt0466413", + "title": "Emma", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2283": { + "imdb_id": "tt0466413", + "title": "Emma", + "fromSeason": 0, + "fromEpisode": 1 + }, + "313": { + "imdb_id": "tt4431126", + "title": "W Wish", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5969": { + "imdb_id": "tt4431126", + "title": "W Wish", + "fromSeason": 0, + "fromEpisode": 1 + }, + "314": { + "imdb_id": "tt0802914", + "title": "Wild ARMs: Twilight Venom" + }, + "315": { + "imdb_id": "tt0933425", + "title": "Bottle Fairy" + }, + "316": { + "imdb_id": "tt3396174", + "title": "Magical Kanan" + }, + "317": { + "imdb_id": "tt0303503", + "title": "Ojamajo Doremi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "318": { + "imdb_id": "tt0303503", + "title": "Ojamajo Doremi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "319": { + "imdb_id": "tt0303503", + "title": "Ojamajo Doremi", + "fromSeason": 3, + "fromEpisode": 1 + }, + "320": { + "imdb_id": "tt0303503", + "title": "Ojamajo Doremi", + "fromSeason": 4, + "fromEpisode": 1 + }, + "1230": { + "imdb_id": "tt0303503", + "title": "Ojamajo Doremi", + "fromSeason": 5, + "fromEpisode": 1 + }, + "2668": { + "imdb_id": "tt0303503", + "title": "Ojamajo Doremi Sharp Movie", + "fromSeason": 0, + "fromEpisode": 1 + }, + "2669": { + "imdb_id": "tt0303503", + "title": "Ojamajo Doremi Sharp Movie", + "fromSeason": 0, + "fromEpisode": 2 + }, + "43221": { + "imdb_id": "tt11867418", + "title": "Looking for Magical DoReMi" + }, + "321": { + "imdb_id": "tt2657330", + "title": "Ultimate Girls" + }, + "322": { + "imdb_id": "tt0972713", + "title": "Shakugan No Shana", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2543": { + "imdb_id": "tt0972713", + "title": "Shakugan No Shana", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4709": { + "imdb_id": "tt0972713", + "title": "Shakugan No Shana", + "fromSeason": 3, + "fromEpisode": 1 + }, + "953": { + "imdb_id": "tt0972713", + "title": "Shakugan No Shana", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1372": { + "imdb_id": "tt0972713", + "title": "Shakugan No Shana", + "fromSeason": 0, + "fromEpisode": 9 + }, + "4616": { + "imdb_id": "tt0972713", + "title": "Shakugan No Shana", + "fromSeason": 0, + "fromEpisode": 11 + }, + "4523": { + "imdb_id": "tt0972713", + "title": "Shakugan No Shana", + "fromSeason": 0, + "fromEpisode": 21 + }, + "1632": { + "imdb_id": "tt0994794", + "title": "Shakugan No Shana: The Movie" + }, + "323": { + "imdb_id": "tt0774809", + "title": "Fate/stay night" + }, + "324": { + "imdb_id": "tt0464769", + "title": "Bludgeoning Angel Dokuro-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1928": { + "imdb_id": "tt0464769", + "title": "Bludgeoning Angel Dokuro-chan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "325": { + "imdb_id": "tt1485728", + "title": "Iriya no sora, UFO no natsu" + }, + "326": { + "imdb_id": "tt3099330", + "title": "I'll/CKBC" + }, + "327": { + "imdb_id": "tt2401248", + "title": "Legend of Himiko" + }, + "328": {}, + "329": {}, + "330": {}, + "331": { + "imdb_id": "tt1441408", + "title": "Gallery Fake" + }, + "332": { + "imdb_id": "tt0311108", + "title": "Fake" + }, + "333": { + "imdb_id": "tt0270758", + "title": "Agent Aika" + }, + "334": { + "imdb_id": "tt0108689", + "title": "Akazukin Chacha" + }, + "335": { + "imdb_id": "tt0369277", + "title": "Bible Black" + }, + "336": { + "imdb_id": "tt0324700", + "title": "Boogiepop Never Laughs: Boogiepop Phantom" + }, + "337": { + "imdb_id": "tt0346220", + "title": "Burn-Up Excess" + }, + "338": { + "imdb_id": "tt0301082", + "title": "Cardcaptor Sakura: The Movie" + }, + "339": { + "imdb_id": "tt0301083", + "title": "Cardcaptor Sakura: The Sealed Card" + }, + "340": { + "imdb_id": "tt0103766", + "title": "All Purpose Cultural Cat Girl Nuku Nuku" + }, + "341": { + "imdb_id": "tt0388700", + "title": "All Purpose Cultural Cat Girl Nuku Nuku DASH!" + }, + "342": { + "imdb_id": "tt0414813", + "title": "All Purpose Cultural Cat Girl Nuku Nuku" + }, + "344": { + "imdb_id": "tt1000946", + "title": "eX-Driver" + }, + "345": { + "imdb_id": "tt1086280", + "title": "EX-Driver the Movie" + }, + "346": { + "imdb_id": "tt0240493", + "title": "Excel Saga" + }, + "349": { + "imdb_id": "tt0929753", + "title": "Step Up Love Story" + }, + "350": { + "imdb_id": "tt0833572", + "title": "Galaxy Angel", + "fromSeason": 1, + "fromEpisode": 1 + }, + "600": { + "imdb_id": "tt0833572", + "title": "Galaxy Angel", + "fromSeason": 2, + "fromEpisode": 1 + }, + "601": { + "imdb_id": "tt0833572", + "title": "Galaxy Angel", + "fromSeason": 3, + "fromEpisode": 1 + }, + "603": { + "imdb_id": "tt0833572", + "title": "Galaxy Angel", + "fromSeason": 4, + "fromEpisode": 1 + }, + "6690": { + "imdb_id": "tt0833572", + "title": "Galaxy Angel", + "fromSeason": 0, + "fromEpisode": 4 + }, + "351": { + "imdb_id": "tt0434685", + "title": "Gantz", + "fromSeason": 1, + "fromEpisode": 1 + }, + "352": { + "imdb_id": "tt0813709", + "title": "Gilgamesh" + }, + "353": {}, + "354": { + "imdb_id": "tt0380113", + "title": "Haibane renmei" + }, + "355": { + "imdb_id": "tt3488064", + "title": "Kapeta" + }, + "356": { + "imdb_id": "tt6545722", + "title": "Karas" + }, + "357": { + "imdb_id": "tt0978205", + "title": "Suzuka" + }, + "358": { + "imdb_id": "tt8280864", + "title": "The Tales of Phantasia: The Animation" + }, + "359": { + "imdb_id": "tt0185133", + "title": "Yu Yu Hakusho" + }, + "360": { + "imdb_id": "tt0270933", + "title": "Escaflowne: The Movie" + }, + "361": { + "imdb_id": "tt0398413", + "title": "Bluer Than Indigo: Fate" + }, + "362": { + "imdb_id": "tt0434685", + "title": "Gantz", + "fromSeason": 2, + "fromEpisode": 1 + }, + "363": { + "imdb_id": "tt0387776", + "title": "Banner of the Stars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "364": { + "imdb_id": "tt0387776", + "title": "Banner of the Stars", + "fromSeason": 2, + "fromEpisode": 1 + }, + "365": { + "imdb_id": "tt0387776", + "title": "Banner of the Stars", + "fromSeason": 3, + "fromEpisode": 1 + }, + "366": {}, + "367": { + "imdb_id": "tt0266171", + "title": "Outlaw Star", + "fromSeason": 1, + "fromEpisode": 0 + }, + "368": { + "imdb_id": "tt0294885", + "title": "Samurai X: Reflection" + }, + "369": { + "imdb_id": "tt1000142", + "title": "Otogi jushi Akazukin" + }, + "370": { + "imdb_id": "tt0493328", + "title": "Hanaukyo Maid Team" + }, + "371": { + "imdb_id": "tt0103775", + "title": "Bastard!!" + }, + "372": { + "imdb_id": "tt0275230", + "title": "Blood: The Last Vampire" + }, + "373": { + "imdb_id": "tt1190618", + "title": "Buzzer Beater" + }, + "374": { + "imdb_id": "tt0434725", + "title": "Detective School Q" + }, + "375": { + "imdb_id": "tt0489134", + "title": "Last Order: Final Fantasy VII" + }, + "376": { + "imdb_id": "tt0991047", + "title": "Gun x Sword" + }, + "377": { + "imdb_id": "tt0991051", + "title": "He Is My Master" + }, + "378": { + "imdb_id": "tt2137684", + "title": "Mars of Destruction" + }, + "379": { + "imdb_id": "tt0206013", + "title": "My Neighbours the Yamadas" + }, + "380": { + "imdb_id": "tt0104652", + "title": "Porco Rosso" + }, + "381": { + "imdb_id": "tt1877179", + "title": "Ragnarok: The Animation" + }, + "382": { + "imdb_id": "tt0101583", + "title": "Ranma ½: The Movie, Big Trouble in Nekonron, China" + }, + "707": { + "imdb_id": "tt0104604", + "title": "Ranma ½: The Movie 2, Nihao My Concubine" + }, + "383": { + "imdb_id": "tt0852880", + "title": "Samurai Deeper Kyo" + }, + "384": { + "imdb_id": "tt0164917", + "title": "Spriggan" + }, + "385": { + "imdb_id": "tt0429439", + "title": "Stratos 4" + }, + "386": { + "imdb_id": "tt2331083", + "title": "Stratos 4" + }, + "387": { + "imdb_id": "tt2331085", + "title": "Stratos 4 Advance" + }, + "388": { + "imdb_id": "tt0088507", + "title": "Dirty Pair", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3520": { + "imdb_id": "tt0088507", + "title": "Dirty Pair", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1621": { + "imdb_id": "tt0109633", + "title": "Dirty Pair Flash", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6708": { + "imdb_id": "tt0109633", + "title": "Dirty Pair Flash", + "fromSeason": 1, + "fromEpisode": 7 + }, + "6709": { + "imdb_id": "tt0109633", + "title": "Dirty Pair Flash", + "fromSeason": 1, + "fromEpisode": 12 + }, + "389": { + "imdb_id": "tt4145978", + "title": "Araiso Private High School Student Council Executive Committee" + }, + "390": { + "imdb_id": "tt0196692", + "title": "Final Fantasy" + }, + "391": { + "imdb_id": "tt0444953", + "title": "Kaleido Star", + "fromSeason": 1, + "fromEpisode": 1 + }, + "392": { + "imdb_id": "tt0444953", + "title": "Kaleido Star", + "fromSeason": 0, + "fromEpisode": 1 + }, + "393": { + "imdb_id": "tt0444953", + "title": "Kaleido Star", + "fromSeason": 0, + "fromEpisode": 2 + }, + "1347": { + "imdb_id": "tt0444953", + "title": "Kaleido Star", + "fromSeason": 0, + "fromEpisode": 3 + }, + "394": { + "imdb_id": "tt0485323", + "title": "Fullmetal Alchemist the Movie: Conqueror of Shamballa" + }, + "395": { + "imdb_id": "tt0347149", + "title": "Howl's Moving Castle" + }, + "396": { + "imdb_id": "tt0107228", + "title": "Iria: Zeiram the Animation" + }, + "397": { + "imdb_id": "tt0381348", + "title": "The Place Promised in Our Early Days" + }, + "398": { + "imdb_id": "tt0123150", + "title": "Legend of Lemnear" + }, + "399": { + "imdb_id": "tt0112057", + "title": "Magic Knight Rayearth", + "fromSeason": 1, + "fromEpisode": 1 + }, + "400": { + "imdb_id": "tt0156887", + "title": "Perfect Blue" + }, + "401": { + "imdb_id": "tt1345472", + "title": "Phantom - The Animation" + }, + "402": { + "imdb_id": "tt0158931", + "title": "Seiden RG Veda" + }, + "403": { + "imdb_id": "tt0205410", + "title": "Revolutionary Girl Utena" + }, + "404": { + "imdb_id": "tt0243558", + "title": "Revolutionary Girl Utena: The Movie" + }, + "405": { + "imdb_id": "tt0476680", + "title": "Naruto the Movie: Ninja Clash in the Land of Snow" + }, + "833": { + "imdb_id": "tt0791188", + "title": "Naruto the Movie 2: Legend of the Stone of Gelel" + }, + "1941": { + "imdb_id": "tt1071815", + "title": "Naruto the Movie 3: Guardians of the Crescent Moon Kingdom" + }, + "406": { + "imdb_id": "tt0983133", + "title": "MPlease Teacher!", + "fromSeason": 1, + "fromEpisode": 13 + }, + "407": {}, + "408": { + "imdb_id": "tt1920505", + "title": "Tales of Eternia" + }, + "409": {}, + "410": { + "imdb_id": "tt0192943", + "title": "Knight Hunters" + }, + "411": { + "imdb_id": "tt4126926", + "title": "Tenjho Tenge: Ultimate Fight" + }, + "412": { + "imdb_id": "tt0473658", + "title": "Inuyasha the Movie 4: Fire on the Mystic Island" + }, + "413": { + "imdb_id": "tt0366621", + "title": "InuYasha the Movie 2: The Castle Beyond the Looking Glass" + }, + "414": { + "imdb_id": "tt0396659", + "title": "InuYasha the Movie 3: Swords of an Honorable Ruler" + }, + "415": { + "imdb_id": "tt0322645", + "title": "Inuyasha the Movie: Affections Touching Across Time" + }, + "417": { + "imdb_id": "tt0774065", + "title": "Fantastic Children" + }, + "418": { + "imdb_id": "tt0991046", + "title": "Best Student Council" + }, + "419": { + "imdb_id": "tt0807832", + "title": "Mushi-Shi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8204": { + "imdb_id": "tt0807832", + "title": "Mushi-Shi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8581": { + "imdb_id": "tt0807832", + "title": "Mushi-Shi", + "fromSeason": 2, + "fromEpisode": 11 + }, + "8112": { + "imdb_id": "tt0807832", + "title": "Mushishi: Zoku-Sho", + "fromSeason": 0, + "fromEpisode": 2 + }, + "8519": { + "imdb_id": "tt0807832", + "title": "Mushishi: Zoku-Sho", + "fromSeason": 0, + "fromEpisode": 3 + }, + "10084": { + "imdb_id": "tt5575408", + "title": "Mushi-Shi Zoku Shou: Suzu no Shizuku" + }, + "420": { + "imdb_id": "tt0444994", + "title": "I Dream of Mimi" + }, + "421": { + "imdb_id": "tt0814243", + "title": "One Piece: The Movie" + }, + "422": { + "imdb_id": "tt0832449", + "title": "One Piece: Adventures on Clockwork Island" + }, + "423": { + "imdb_id": "tt0997084", + "title": "One piece: Chopper's Kingdom in the Strange Animal Island" + }, + "424": { + "imdb_id": "tt1006926", + "title": "One piece: The Adventure of Dead End" + }, + "425": { + "imdb_id": "tt1010435", + "title": "One piece: The Curse of the Sacred Sword" + }, + "426": { + "imdb_id": "tt1018764", + "title": "One Piece: Baron Omatsuri and the Secret Island" + }, + "427": { + "imdb_id": "tt1059950", + "title": "One Piece: Karakuri Castle's Mecha Giant Soldier" + }, + "1906": { + "imdb_id": "tt1037116", + "title": "One Piece: Episode of Alabasta - The Desert Princess and the Pirates" + }, + "3300": { + "imdb_id": "tt1206326", + "title": "One Piece: Episode of Chopper Plus - Bloom in the Winter, Miracle Sakura" + }, + "3492": { + "imdb_id": "tt1485763", + "title": "One Piece: Strong World" + }, + "5987": { + "imdb_id": "tt1865467", + "title": "One Piece 3D: Straw Hat Chase" + }, + "6827": { + "imdb_id": "tt2375379", + "title": "One Piece Film Z" + }, + "11351": { + "imdb_id": "tt5251328", + "title": "One Piece Film: Gold" + }, + "42061": { + "imdb_id": "tt9430698", + "title": "One Piece: Stampede" + }, + "45513": { + "imdb_id": "tt16183464", + "title": "One Piece Film: Red" + }, + "428": { + "imdb_id": "tt1012788", + "title": "One Piece: Defeat the Pirate Ganzak!" + }, + "429": { + "imdb_id": "tt0346314", + "title": "Ghost in the Shell: Stand Alone Complex", + "fromSeason": 1, + "fromEpisode": 1 + }, + "715": { + "imdb_id": "tt0346314", + "title": "Ghost in the Shell: Stand Alone Complex", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8115": { + "imdb_id": "tt0346314", + "title": "Ghost in the Shell: Stand Alone Complex", + "fromSeason": 0, + "fromEpisode": 7 + }, + "3045": { + "imdb_id": "tt0346314", + "title": "Ghost in the Shell: Stand Alone Complex", + "fromSeason": 0, + "fromEpisode": 34 + }, + "430": { + "imdb_id": "tt0347246", + "title": "Ghost in the Shell 2: Innocence" + }, + "431": { + "imdb_id": "tt1127249", + "title": "Karin" + }, + "432": { + "imdb_id": "tt0991055", + "title": "My Wife Is a High School Girl" + }, + "433": { + "imdb_id": "tt0988930", + "title": "ToHeart 2" + }, + "434": { + "imdb_id": "tt0237985", + "title": "To Heart" + }, + "435": { + "imdb_id": "tt1234602", + "title": "Tide-Line Blue" + }, + "436": { + "imdb_id": "tt0110426", + "title": "Macross Plus" + }, + "1089": { + "imdb_id": "tt2330912", + "title": "Macross Plus Movie Edition" + }, + "437": { + "imdb_id": "tt6087358", + "title": "Hotori: Tada Saiwai wo Koinegau" + }, + "438": { + "imdb_id": "tt0989772", + "title": "Ginban Kaleidoscope" + }, + "439": { + "imdb_id": "tt0977907", + "title": "Aria: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "852": { + "imdb_id": "tt0977907", + "title": "Aria: The Animation", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2916": { + "imdb_id": "tt0977907", + "title": "Aria: The Animation", + "fromSeason": 3, + "fromEpisode": 1 + }, + "4009": { + "imdb_id": "tt0977907", + "title": "Aria: The Animation", + "fromSeason": 0, + "fromEpisode": 1 + }, + "2328": { + "imdb_id": "tt0977907", + "title": "Aria: The Animation", + "fromSeason": 0, + "fromEpisode": 2 + }, + "3778": { + "imdb_id": "tt0977907", + "title": "Aria: The Animation", + "fromSeason": 0, + "fromEpisode": 3 + }, + "10360": { + "imdb_id": "tt0977907", + "title": "Aria: The Animation", + "fromSeason": 0, + "fromEpisode": 11 + }, + "440": { + "imdb_id": "tt0872309", + "title": "Genesis of Aquarion", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6185": { + "imdb_id": "tt0872309", + "title": "Genesis of Aquarion", + "fromSeason": 2, + "fromEpisode": 1 + }, + "10764": { + "imdb_id": "tt0872309", + "title": "Genesis of Aquarion", + "fromSeason": 3, + "fromEpisode": 1 + }, + "47225": { + "imdb_id": "tt0872309", + "title": "Genesis of Aquarion", + "fromSeason": 4, + "fromEpisode": 1 + }, + "441": { + "imdb_id": "tt0988935", + "title": "The Law of Ueki" + }, + "442": { + "imdb_id": "tt0249327", + "title": "Yu-Gi-Oh!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "443": { + "imdb_id": "tt0493334", + "title": "Yu-Gi-Oh! GX", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5995": { + "imdb_id": "tt2363624", + "title": "Yu-Gi-Oh! Zexal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7263": { + "imdb_id": "tt2363624", + "title": "Yu-Gi-Oh! Zexal", + "fromSeason": 2, + "fromEpisode": 25 + }, + "444": { + "imdb_id": "tt0872306", + "title": "Kurau: Phantom Memory" + }, + "445": { + "imdb_id": "tt0877335", + "title": "Gensoumaden Saiyuki: Requiem" + }, + "446": { + "imdb_id": "tt0907604", + "title": "Damekko dôbutsu" + }, + "447": { + "imdb_id": "tt0433498", + "title": "Kino's Journey" + }, + "448": { + "imdb_id": "tt0807675", + "title": "Girls Bravo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "449": { + "imdb_id": "tt0810056", + "title": "Strawberry Marshmallow", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3493": { + "imdb_id": "tt0810056", + "title": "Strawberry Marshmallow", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1698": { + "imdb_id": "tt0810056", + "title": "Strawberry Marshmallow", + "fromSeason": 0, + "fromEpisode": 2 + }, + "3800": { + "imdb_id": "tt0810056", + "title": "Strawberry Marshmallow", + "fromSeason": 0, + "fromEpisode": 5 + }, + "451": { + "imdb_id": "tt1094084", + "title": "Pani poni dasshu!" + }, + "452": {}, + "453": { + "imdb_id": "tt0303678", + "title": "Armitage III: Dual Matrix" + }, + "454": { + "imdb_id": "tt0109151", + "title": "Armitage III: Polymatrix" + }, + "456": { + "imdb_id": "tt0088983", + "title": "The Dagger of Kamui" + }, + "457": { + "imdb_id": "tt1172149", + "title": "Yami to bôshi to hon no tabibito" + }, + "458": { + "imdb_id": "tt0220381", + "title": "Hyper Combat Unit Dangaioh" + }, + "459": { + "imdb_id": "tt0094995", + "title": "Monster City" + }, + "460": { + "imdb_id": "tt0069576", + "title": "Doraemon" + }, + "461": { + "imdb_id": "tt0142251", + "title": "Dragon Ball: Curse of the Blood Rubies" + }, + "462": { + "imdb_id": "tt1171531", + "title": "Eien no Aseria: 'Motome' no koe" + }, + "463": { + "imdb_id": "tt0109872", + "title": "Fatal Fury: The Motion Picture" + }, + "464": { + "imdb_id": "tt0994187", + "title": "Fushigi boshi no futago hime: Gyu!" + }, + "465": { + "imdb_id": "tt0294091", + "title": "The Glass Mask" + }, + "466": { + "imdb_id": "tt0776778", + "title": "Gravitation: Lyrics of Love" + }, + "467": { + "imdb_id": "tt0318895", + "title": "Hamtaro" + }, + "468": { + "imdb_id": "tt0331135", + "title": "I My Me! Strawberry Eggs" + }, + "469": { + "imdb_id": "tt2263353", + "title": "Kakyûsei 2: Hitomi no naka no shôjo-tachi" + }, + "470": { + "imdb_id": "tt0989777", + "title": "Moeyo Ken TV" + }, + "471": { + "imdb_id": "tt0097814", + "title": "Kiki's Delivery Service" + }, + "472": { + "imdb_id": "tt0092067", + "title": "Laputa: Castle in the Sky" + }, + "473": { + "imdb_id": "tt0493227", + "title": "Le portrait de petite cossette" + }, + "474": { + "imdb_id": "tt0237400", + "title": "Legend of Crystania: The Motion Picture" + }, + "475": { + "imdb_id": "tt0434693", + "title": "Sgt. Frog" + }, + "477": { + "imdb_id": "tt0159890", + "title": "Mahô no purinsesu Minkî Momo" + }, + "478": { + "imdb_id": "tt0997406", + "title": "Mahoraba: Heartful Days" + }, + "479": { + "imdb_id": "tt3914084", + "title": "Marmalade Boy" + }, + "480": { + "imdb_id": "tt4415288", + "title": "Mermaid Melody Pichi Pichi Pitch", + "fromSeason": 1, + "fromEpisode": 1 + }, + "481": { + "imdb_id": "tt0293416", + "title": "Metropolis" + }, + "482": { + "imdb_id": "tt0096283", + "title": "My Neighbour Totoro" + }, + "483": { + "imdb_id": "tt0398533", + "title": "Please Twins!", + "fromSeason": 1, + "fromEpisode": 13 + }, + "484": { + "imdb_id": "tt0433504", + "title": "Otogi zôshi " + }, + "485": { + "imdb_id": "tt0256569", + "title": "Please Save My Earth" + }, + "486": { + "imdb_id": "tt0168366", + "fanartLogoId": "29231", + "title": "Pokémon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1404": { + "imdb_id": "tt0168366", + "fanartLogoId": "97807", + "title": "Pokémon", + "fromSeason": 6, + "fromEpisode": 1 + }, + "1405": { + "imdb_id": "tt0168366", + "fanartLogoId": "97913", + "title": "Pokémon", + "fromSeason": 10, + "fromEpisode": 1 + }, + "5605": { + "imdb_id": "tt0168366", + "fanartLogoId": "98223", + "title": "Pokémon", + "fromSeason": 14, + "fromEpisode": 1 + }, + "7080": { + "imdb_id": "tt0168366", + "fanartLogoId": "98303", + "title": "Pokémon", + "fromSeason": 15, + "fromEpisode": 1 + }, + "7586": { + "imdb_id": "tt0168366", + "fanartLogoId": "98314", + "title": "Pokémon", + "fromSeason": 15, + "fromEpisode": 25 + }, + "7895": { + "imdb_id": "tt0168366", + "fanartLogoId": "98315", + "title": "Pokémon", + "fromSeason": 15, + "fromEpisode": 39 + }, + "7850": { + "imdb_id": "tt0168366", + "fanartLogoId": "98365", + "title": "Pokémon", + "fromSeason": 16, + "fromEpisode": 1 + }, + "11367": { + "imdb_id": "tt0168366", + "fanartLogoId": "98367", + "title": "Pokémon", + "fromSeason": 17, + "fromEpisode": 1 + }, + "12533": { + "imdb_id": "tt0168366", + "fanartLogoId": "98377", + "title": "Pokémon", + "fromSeason": 18, + "fromEpisode": 1 + }, + "42534": { + "imdb_id": "tt0168366", + "fanartLogoId": "111448", + "title": "Pokémon", + "fromSeason": 19, + "fromEpisode": 1 + }, + "46857": { + "imdb_id": "tt0168366", + "fanartLogoId": "145118", + "title": "Pokémon", + "fromSeason": 19, + "fromEpisode": 137 + }, + "46859": { + "imdb_id": "tt0168366", + "fanartLogoId": "177186", + "title": "Pokémon", + "fromSeason": 20, + "fromEpisode": 1 + }, + "46858": { + "imdb_id": "tt0168366", + "title": "Pokémon", + "fromSeason": 0, + "fromEpisode": 83 + }, + "5334": { + "imdb_id": "tt8393838", + "title": "Pokémon Ranger: Guardian Signs", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7922": { + "imdb_id": "tt3218680", + "title": "Pokémon Origins", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8425": { + "imdb_id": "tt3657074", + "title": "Pokémon: Mega Evolution", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12531": { + "imdb_id": "tt6071336", + "title": "Pokémon Generations" + }, + "42869": { + "imdb_id": "tt11547516", + "title": "Pokémon: Twilight Wings", + "fromSeason": 1, + "fromEpisode": 1 + }, + "487": { + "imdb_id": "tt0190641", + "title": "Pokémon: The First Movie" + }, + "1001": { + "imdb_id": "tt0210234", + "title": "Pokémon the Movie 2000" + }, + "1002": { + "imdb_id": "tt0235679", + "title": "Pokémon 3: The Movie" + }, + "1003": { + "imdb_id": "tt0287635", + "title": "Pokémon 4Ever" + }, + "1004": { + "imdb_id": "tt0347791", + "title": "Pokémon Heroes" + }, + "1005": { + "imdb_id": "tt0420076", + "title": "Pokémon: Jirachi - Wish Maker" + }, + "1006": { + "imdb_id": "tt0435286", + "title": "Pokémon the Movie: Destiny Deoxys" + }, + "1367": { + "imdb_id": "tt3367860", + "title": "Pokemon: The Legend of Thunder" + }, + "1368": { + "imdb_id": "tt0875609", + "title": "Pokémon: Lucario and the Mystery of Mew" + }, + "1369": { + "imdb_id": "tt1371721", + "title": "The Mastermind of Mirage Pokémon" + }, + "1534": { + "imdb_id": "tt0304564", + "title": "Pokémon: Mewtwo Returns" + }, + "1992": { + "imdb_id": "tt1000095", + "title": "Pokémon Ranger and the Temple of the Sea" + }, + "2597": { + "imdb_id": "tt1226251", + "title": "Pokémon: The Rise of Darkrai" + }, + "3419": { + "imdb_id": "tt1160525", + "title": "Pokémon: Giratina and the Sky Warrior" + }, + "3787": { + "imdb_id": "tt0235680", + "title": "Pikachu & Pichu" + }, + "3788": { + "imdb_id": "tt0304562", + "title": "Pikachu's PikaBoo" + }, + "3789": { + "imdb_id": "tt3427954", + "title": "Pokémon: Camp Pikachu" + }, + "3846": { + "imdb_id": "tt1172967", + "title": "Pikachu's Island Adventure" + }, + "4136": { + "imdb_id": "tt0210233", + "title": "Pikachu's Vacation" + }, + "4137": { + "imdb_id": "tt0431991", + "title": "Pokémon: Gotta Dance!!" + }, + "4301": { + "imdb_id": "tt3433662", + "title": "Pikachû no obake kânibaru" + }, + "4302": { + "imdb_id": "tt3431452", + "title": "Pikachu's Summer Festival" + }, + "4460": { + "imdb_id": "tt1468843", + "title": "Pokémon: Arceus and the Jewel of Life" + }, + "4608": { + "imdb_id": "tt3457464", + "title": "Pikachû no kirakira daisôsaku!" + }, + "5083": { + "imdb_id": "tt1690470", + "title": "Pokémon: Zoroark: Master of Illusions" + }, + "5026": { + "imdb_id": "tt3449356", + "title": "Pikachû no tanken kurabu" + }, + "5452": { + "imdb_id": "tt3453822", + "title": "Pikachu's Ice Adventure" + }, + "5939": { + "imdb_id": "tt1739212", + "title": "Pokémon the Movie: White - Victini and Zekrom" + }, + "6327": { + "imdb_id": "tt1961324", + "title": "Pokémon the Movie: Black-Victini and Reshiram" + }, + "6404": { + }, + "6405": { + "imdb_id": "tt3457326", + "title": "Pikachu's Winter Vacation 2001" + }, + "6438": { + "imdb_id": "tt3435626", + "title": "Pikachu's Ocean Adventure" + }, + "6441": { + "imdb_id": "tt3433608", + "title": "Pokémon 3D Adventure: Myu o Sagase!" + }, + "6617": { + "imdb_id": "tt3486682", + "title": "Pikachu's Summer Bridge Story" + }, + "6786": { + "imdb_id": "tt2549540", + "title": "Pokémon the Movie: Kyurem vs. the Sword of Justice" + }, + "7032": { + "imdb_id": "tt3513820", + "title": "Meloetta's Moonlight Serenade" + }, + "7488": { + "imdb_id": "tt3707958", + "title": "Pikachu to Eievui Friends" + }, + "7489": { + "imdb_id": "tt3257582", + "title": "Pokémon the Movie: Genesect and the Legend Awakened" + }, + "8149": { + "imdb_id": "tt3918368", + "title": "Pokémon the Movie: Diancie and the Cocoon of Destruction" + }, + "8150": { + "imdb_id": "tt4422136", + "title": "Pikachu, What's This Key?" + }, + "8947": { + "imdb_id": "tt7784582", + "title": "Diancie - Princess of the Diamond Domain" + }, + "8903": { + "imdb_id": "tt4503906", + "title": "Pokémon the Movie: Hoopa and the Clash of Ages" + }, + "10305": { + "imdb_id": "tt6018104", + "title": "Pikachu and the Pokémon Music Squad" + }, + "11202": { + "imdb_id": "tt5889204", + "title": "Pokémon the Movie: Volcanion and the Mechanical Marvel" + }, + "12941": { + "imdb_id": "tt6595896", + "title": "Pokémon the Movie: I Choose You!" + }, + "41413": { + "imdb_id": "tt8108230", + "title": "Pokémon the Movie: The Power of Us" + }, + "41871": { + "imdb_id": "tt8856470", + "title": "Pokémon: Mewtwo Strikes Back - Evolution" + }, + "43025": { + "imdb_id": "tt11819890", + "title": "Pokémon the Movie: Coco" + }, + "488": { + "imdb_id": "tt0373605", + "title": "She, the Ultimate Weapon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "564": { + "imdb_id": "tt0373605", + "title": "She, the Ultimate Weapon", + "fromSeason": 0, + "fromEpisode": 1 + }, + "489": { + "imdb_id": "tt0103369", + "title": "Sailor Moon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "664": { + "imdb_id": "tt0103369", + "title": "Sailor Moon", + "fromSeason": 2, + "fromEpisode": 1 + }, + "491": { + "imdb_id": "tt0103369", + "title": "Sailor Moon", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1115": { + "imdb_id": "tt0103369", + "title": "Sailor Moon", + "fromSeason": 4, + "fromEpisode": 1 + }, + "886": { + "imdb_id": "tt0103369", + "title": "Sailor Moon", + "fromSeason": 5, + "fromEpisode": 1 + }, + "2774": { + "imdb_id": "tt0103369", + "title": "Sailor Moon", + "fromSeason": 0, + "fromEpisode": 3 + }, + "490": { + "imdb_id": "tt0106417", + "title": "Sailor Moon R: The Movie: The Promise of the Rose" + }, + "887": { + "imdb_id": "tt0109277", + "title": "Sailor Moon S: The Movie: Hearts in Ice" + }, + "1116": { + "imdb_id": "tt0112513", + "title": "Sailor Moon Super S: The Movie: Black Dream Hole" + }, + "492": { + "imdb_id": "tt0406463", + "title": "Doki Doki School Hours" + }, + "493": { + "imdb_id": "tt0112166", + "title": "The Slayers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "494": { + "imdb_id": "tt0112166", + "title": "The Slayers", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1053": { + "imdb_id": "tt0112166", + "title": "The Slayers", + "fromSeason": 3, + "fromEpisode": 1 + }, + "3421": { + "imdb_id": "tt0112166", + "title": "The Slayers", + "fromSeason": 4, + "fromEpisode": 1 + }, + "4002": { + "imdb_id": "tt0112166", + "title": "The Slayers", + "fromSeason": 5, + "fromEpisode": 1 + }, + "1051": { + "imdb_id": "tt0112166", + "title": "The Slayers", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1052": { + "imdb_id": "tt0112166", + "title": "The Slayers", + "fromSeason": 0, + "fromEpisode": 4 + }, + "495": { + "imdb_id": "tt0161981", + "title": "Slayers" + }, + "767": { + "imdb_id": "tt0462717", + "title": "Slayers Premium" + }, + "768": { + "imdb_id": "tt1796619", + "title": "Slayers Gorgeous" + }, + "769": { + "imdb_id": "tt0161978", + "title": "Slayers Great" + }, + "770": { + "imdb_id": "tt0161979", + "title": "Slayers Return" + }, + "496": { + "imdb_id": "tt0272880", + "title": "Tekken: The Motion Picture" + }, + "498": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1027": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 1, + "fromEpisode": 7 + }, + "499": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "500": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1028": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 3, + "fromEpisode": 7 + }, + "11451": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 4, + "fromEpisode": 1 + }, + "42491": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 5, + "fromEpisode": 1 + }, + "2485": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6142": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 0, + "fromEpisode": 5 + }, + "4274": { + "imdb_id": "tt6603172", + "title": "Tenchi Muyo! War on Geminar", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8580": { + "imdb_id": "tt4046242", + "title": "Ai Tenchi Muyo!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "501": { + "imdb_id": "tt0216651", + "title": "Vampire Hunter D: Bloodlust" + }, + "502": { + "imdb_id": "tt0135037", + "title": "Venus Wars" + }, + "503": { + "imdb_id": "tt1425020", + "title": "Mousou Kagaku Series Wandaba Style" + }, + "504": { + "imdb_id": "tt2637542", + "title": "Wind: A Breath of Heart" + }, + "505": {}, + "506": { + "imdb_id": "tt0353014", + "title": "Sky Blue" + }, + "507": { + "imdb_id": "tt4834194", + "title": "Yu-Gi-Oh!" + }, + "509": { + "imdb_id": "tt0210418", + "title": "Digimon: Digital Monsters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "510": { + "imdb_id": "tt0377290", + "title": "Descendants of Darkness", + "fromSeason": 1, + "fromEpisode": 1 + }, + "511": { + "imdb_id": "tt0247877", + "title": "Steel Angel Kurumi" + }, + "512": { + "imdb_id": "tt0991052", + "title": "Steel Angel Kurumi 2" + }, + "513": { + "imdb_id": "tt0991106", + "title": "Kôtetsu tenshi Kurumi: Zero" + }, + "514": {}, + "515": { + "imdb_id": "tt1693435", + "title": "Major", + "fromSeason": 2, + "fromEpisode": 1 + }, + "518": { + "imdb_id": "tt0397192", + "title": "Sakura Wars" + }, + "520": { + "imdb_id": "tt0108736", + "title": "DNA²" + }, + "521": { + "imdb_id": "tt0368185", + "title": "Puni Puni Poemy" + }, + "522": { + "imdb_id": "tt0348121", + "title": "Steamboy" + }, + "524": { + "imdb_id": "tt0280240", + "title": "The Big O" + }, + "525": { + "imdb_id": "tt0175385", + "title": "Bubblegum Crisis: Tokyo 2040" + }, + "526": { + "imdb_id": "tt0106076", + "title": "The Irresponsible Captain Tylor", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1049": { + "imdb_id": "tt0106076", + "title": "The Irresponsible Captain Tylor", + "fromSeason": 2, + "fromEpisode": 1 + }, + "527": { + "imdb_id": "tt0193253", + "title": "Jin-Roh: The Wolf Brigade" + }, + "529": { + "imdb_id": "tt0087544", + "title": "Nausicaä of the Valley of the Wind" + }, + "530": { + "imdb_id": "tt0211605", + "title": "Saber Marionette J" + }, + "533": { + "imdb_id": "tt1179368", + "title": "Key Princess Story Eternal Alice Rondo" + }, + "534": { + "imdb_id": "tt0095327", + "title": "Grave of the Fireflies" + }, + "535": { + "imdb_id": "tt1587391", + "title": "Battle Programmer Shirase" + }, + "539": { + "imdb_id": "tt0872308", + "title": "Noein: Mô hitori no kimi he" + }, + "540": { + "imdb_id": "tt0113824", + "title": "Whisper of the Heart" + }, + "541": { + "imdb_id": "tt0856346", + "title": "Ayakashi - Samurai Horror Tales" + }, + "542": { + "imdb_id": "tt1281341", + "title": "Looking Up at the Half-Moon" + }, + "543": { + "imdb_id": "tt1183366", + "title": "My Santa" + }, + "544": { + "imdb_id": "tt0362344", + "title": "Silver Fang" + }, + "545": { + "imdb_id": "tt0983969", + "title": "Guardian Ninja Mamoru!" + }, + "548": { + "imdb_id": "tt0272402", + "title": "Infinite Ryvius" + }, + "552": { + "imdb_id": "tt0347618", + "title": "The Cat Returns" + }, + "553": { + "imdb_id": "tt0305046", + "title": "Android Kikaider: The Animation" + }, + "557": { + "imdb_id": "tt0104582", + "title": "Beast Warriors" + }, + "558": { + "imdb_id": "tt1441577", + "title": "Pretty Cure" + }, + "559": { + "imdb_id": "tt0288985", + "title": "Magical Stage Fancy Lala" + }, + "561": { + "imdb_id": "tt2027434", + "title": "Carried by the Wind: Tsukikage Ran" + }, + "562": { + "imdb_id": "tt0880283", + "title": "Fairy Musketeers" + }, + "565": { + "imdb_id": "tt0983204", + "title": "Popotan" + }, + "568": { + "imdb_id": "tt0963017", + "title": "Onmyô taisenki" + }, + "569": { + "imdb_id": "tt10270808", + "title": "My Wife Is a Magical Girl: Bewitched Agnes", + "fromSeason": 1, + "fromEpisode": 1 + }, + "571": { + "imdb_id": "tt0112105", + "title": "Nurse Angel Ririka SOS" + }, + "572": { + "imdb_id": "tt0107692", + "title": "Ninja Scroll" + }, + "573": { + "imdb_id": "tt0400690", + "title": "Ninja Scroll: The Series" + }, + "575": { + "imdb_id": "tt0409625", + "title": "Rumic Theater: Mermaid Forest" + }, + "576": { + "imdb_id": "tt0282312", + "title": "Nightwalker: Midnight Detective" + }, + "579": { + "imdb_id": "tt0476623", + "title": "Mouse" + }, + "582": { + "imdb_id": "tt1693435", + "title": "Major", + "fromSeason": 1, + "fromEpisode": 1 + }, + "583": { + "imdb_id": "tt0292085", + "title": "Magic User's Club!" + }, + "588": { + "imdb_id": "tt0989778", + "title": "Koi kaze" + }, + "591": { + "imdb_id": "tt2799100", + "title": "The Accidental Couple (That Fool)" + }, + "594": { + "imdb_id": "tt0294614", + "title": "Haunted Junction" + }, + "596": { + "imdb_id": "tt0994633", + "title": "Tsuki wa higashi ni hi wa nishi ni: Operation Sanctuary", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6835": { + "imdb_id": "tt0994633", + "title": "Tsuki wa higashi ni hi wa nishi ni: Operation Sanctuary", + "fromSeason": 0, + "fromEpisode": 1 + }, + "597": { + "imdb_id": "tt2223998", + "title": "Hanaukyo Maid Team: La Verite" + }, + "598": { + "imdb_id": "tt0113236", + "title": "Gunsmith Cats", + "fromSeason": 1, + "fromEpisode": 1 + }, + "605": { + "imdb_id": "tt0910592", + "title": "Akagi" + }, + "610": { + "imdb_id": "tt0248119", + "title": "Jojo's Bizarre Adventure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7730": { + "imdb_id": "tt0248119", + "title": "Jojo's Bizarre Adventure", + "fromSeason": 2, + "fromEpisode": 1 + }, + "612": { + "imdb_id": "tt1311112", + "title": "Koi koi 7" + }, + "614": { + "imdb_id": "tt0991061", + "title": "Ramune" + }, + "615": { + "imdb_id": "tt0972665", + "title": "Lemon Angel Project" + }, + "620": { + "imdb_id": "tt0407446", + "title": "Shadow Skill - Eigi" + }, + "623": { + "imdb_id": "tt2673862", + "title": "Otogi sutôrî tenshi no shippo" + }, + "626": { + "imdb_id": "tt0996289", + "title": "ToHeart: Remember My Memories" + }, + "628": { + "imdb_id": "tt0469008", + "title": "Tokyo Mew Mew", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43098": { + "imdb_id": "tt12299696", + "title": "Tokyo Mew Mew New", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46521": { + "imdb_id": "tt12299696", + "title": "Tokyo Mew Mew New", + "fromSeason": 1, + "fromEpisode": 13 + }, + "629": { + "imdb_id": "tt0460384", + "title": "Uta kata", + "fromSeason": 1, + "fromEpisode": 1 + }, + "630": { + "imdb_id": "tt0460384", + "title": "Uta kata", + "fromSeason": 0, + "fromEpisode": 1 + }, + "631": { + "imdb_id": "tt0095474", + "title": "Vampire Princess Miyu" + }, + "640": { + "imdb_id": "tt0447582", + "title": "Comic Party" + }, + "637": { + "imdb_id": "tt0105559", + "title": "Tenchi Muyo!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "642": { + "imdb_id": "tt1576820", + "title": "Patapata hikousen no bouken", + "fromSeason": 1, + "fromEpisode": 1 + }, + "643": { + "imdb_id": "tt1561921", + "title": "Mujin wakusei Survive" + }, + "644": { + "imdb_id": "tt0807834", + "title": "Rec" + }, + "647": { + "imdb_id": "tt0294180", + "title": "High School! Kimengumi" + }, + "650": { + "imdb_id": "tt0444745", + "title": "Princess Tutu" + }, + "655": { + "imdb_id": "tt1305809", + "title": "Goldfish Warning!" + }, + "656": { + "imdb_id": "tt0294101", + "title": "Hiatari Ryôkô!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "657": { + "imdb_id": "tt6096708", + "title": "After School in the Teacher's Lounge" + }, + "659": { + "imdb_id": "tt0090248", + "title": "Vampire Hunter D" + }, + "666": { + "imdb_id": "tt0108432", + "title": "Ocean Waves" + }, + "667": { + "imdb_id": "tt1997205", + "title": "Trouble Chocolate" + }, + "668": { + "imdb_id": "tt9406726", + "title": "Papa to Kiss in the Dark" + }, + "681": { + "imdb_id": "tt0388473", + "title": "Tokyo Godfathers" + }, + "646": { + "imdb_id": "tt0994706", + "title": "Zoids Genesis" + }, + "685": { + "imdb_id": "tt0367443", + "title": "Zoids: Chaotic Century" + }, + "686": { + "imdb_id": "tt0214354", + "title": "Zoids" + }, + "1566": { + "imdb_id": "tt0398617", + "title": "Zoids Fuzors" + }, + "692": { + "imdb_id": "tt1183586", + "title": "Meine Liebe" + }, + "693": { + "imdb_id": "tt1499872", + "title": "Tenamon'ya Voyagers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "695": { + "imdb_id": "tt0495212", + "title": "Hellsing Ultimate", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6453": { + "imdb_id": "tt0495212", + "title": "Hellsing Ultimate", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4782": { + "imdb_id": "tt0495212", + "title": "Hellsing Ultimate", + "fromSeason": 0, + "fromEpisode": 4 + }, + "699": { + "imdb_id": "tt0250155", + "title": "Gasaraki" + }, + "700": { + "imdb_id": "tt0468607", + "title": "Miami Guns" + }, + "701": { + "imdb_id": "tt0089749", + "title": "Otaku no video" + }, + "704": { + "imdb_id": "tt3367698", + "title": "Shinigami no baraddo" + }, + "705": { + "imdb_id": "tt0791205", + "title": "Ergo Proxy" + }, + "706": { + "imdb_id": "tt0090658", + "title": "Arion" + }, + "714": { + "imdb_id": "tt0299357", + "title": "NieA under 7" + }, + "717": { + "imdb_id": "tt1874901", + "title": "Android Ana Maico 2010", + "fromSeason": 1, + "fromEpisode": 1 + }, + "719": { + "imdb_id": "tt0296324", + "title": "Arjuna" + }, + "720": { + "imdb_id": "tt0214341", + "title": "Dragon Ball Z" + }, + "723": { + "imdb_id": "tt0331581", + "title": "Amazing Nurse Nanako" + }, + "725": { + "imdb_id": "tt0364867", + "title": "Sakura Diaries" + }, + "727": { + "imdb_id": "tt0096633", + "title": "Legend of the Galactic Heroes", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2963": { + "imdb_id": "tt0096633", + "title": "Legend of the Galactic Heroes", + "fromSeason": 0, + "fromEpisode": 4 + }, + "3178": { + "imdb_id": "tt0096633", + "title": "Legend of the Galactic Heroes", + "fromSeason": 0, + "fromEpisode": 28 + }, + "732": { + "imdb_id": "tt5925320", + "title": "The King of Fighters: Another Day", + "fromSeason": 1, + "fromEpisode": 1 + }, + "736": { + "imdb_id": "tt1155605", + "title": "A Little Snow Fairy Sugar", + "fromSeason": 1, + "fromEpisode": 1 + }, + "904": { + "imdb_id": "tt1155605", + "title": "A Little Snow Fairy Sugar", + "fromSeason": 0, + "fromEpisode": 1 + }, + "741": { + "imdb_id": "tt1179815", + "title": "Shisutâ purinsesu" + }, + "743": { + "imdb_id": "tt1227046", + "title": "Shadow Star Narutaru" + }, + "745": { + "imdb_id": "tt0411041", + "title": "The World of Narue" + }, + "746": { + "imdb_id": "tt0844490", + "title": "Colorful" + }, + "749": { + "imdb_id": "tt0928095", + "title": "Kiba", + "fromSeason": 1, + "fromEpisode": 1 + }, + "751": { + "imdb_id": "tt0816407", + "fanartLogoId": "55556", + "title": "The Melancholy of Haruhi Suzumiya", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3579": { + "imdb_id": "tt0816407", + "fanartLogoId": "90919", + "title": "The Melancholy of Haruhi Suzumiya", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3939": { + "imdb_id": "tt1386581", + "title": "Suzumiya Haruhi-chan no Yuutsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "752": { + "imdb_id": "tt0978030", + "title": "Gakuen Heaven" + }, + "755": { + "imdb_id": "tt0816397", + "title": "Ouran High School Host Club" + }, + "757": { + "imdb_id": "tt0996275", + "title": "Strawberry Panic" + }, + "758": { + "imdb_id": "tt0978215", + "title": "Utawarerumono", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11021": { + "imdb_id": "tt0978215", + "tvdb_id": "331223", + "fanartLogoId": "95610", + "title": "Utawarerumono", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42641": { + "imdb_id": "tt0978215", + "tvdb_id": "412803", + "fanartLogoId": "144736", + "title": "Utawarerumono", + "fromSeason": 3, + "fromEpisode": 1 + }, + "3129": { + "imdb_id": "tt0978215", + "title": "Utawarerumono", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4695": { + "imdb_id": "tt0978215", + "title": "Utawarerumono", + "fromSeason": 0, + "fromEpisode": 4 + }, + "1647": { + "imdb_id": "tt0978215", + "title": "Utawarerumono", + "fromSeason": 0, + "fromEpisode": 7 + }, + "41429": { + "imdb_id": "tt0978215", + "title": "Utawarerumono", + "fromSeason": 0, + "fromEpisode": 11 + }, + "759": { + "imdb_id": "tt0953916", + "title": "Air Gear", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3254": { + "imdb_id": "tt0953916", + "title": "Air Gear", + "fromSeason": 0, + "fromEpisode": 1 + }, + "760": { + "imdb_id": "tt0978042", + "title": "Gunparade Orchestra" + }, + "761": { + "imdb_id": "tt0210418", + "title": "Digimon: Digital Monsters", + "fromSeason": 5, + "fromEpisode": 1 + }, + "762": { + "imdb_id": "tt0989781", + "title": "Makai senki disgaea" + }, + "763": { + "imdb_id": "tt0488477", + "title": "XXXHOLiC", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2787": { + "imdb_id": "tt0488477", + "title": "XXXHOLiC", + "fromSeason": 2, + "fromEpisode": 1 + }, + "708": { + "imdb_id": "tt0488477", + "title": "XXXHOLiC", + "fromSeason": 0, + "fromEpisode": 1 + }, + "3848": { + "imdb_id": "tt0488477", + "title": "XXXHOLiC", + "fromSeason": 0, + "fromEpisode": 2 + }, + "4759": { + "imdb_id": "tt0488477", + "title": "XXXHOLiC", + "fromSeason": 0, + "fromEpisode": 4 + }, + "771": { + "imdb_id": "tt0106769", + "title": "Dragon Half" + }, + "774": { + "imdb_id": "tt0210418", + "title": "Digimon: Digital Monsters", + "fromSeason": 3, + "fromEpisode": 1 + }, + "775": { + "imdb_id": "tt0452039", + "title": "Mind Game" + }, + "13951": { + "imdb_id": "tt0219458", + "title": "Street Fighter: The Animated Series", + "fromSeason": 1, + "fromEpisode": 1 + }, + "776": { + "imdb_id": "tt0144069", + "title": "Street Fighter II: V", + "fromSeason": 1, + "fromEpisode": 1 + }, + "777": { + "imdb_id": "tt0810705", + "title": "Nana", + "fromSeason": 1, + "fromEpisode": 1 + }, + "778": { + "imdb_id": "tt0972751", + "title": "Zegapain" + }, + "779": { + "imdb_id": "tt0991062", + "title": "Simoun" + }, + "782": { + "imdb_id": "tt1119171", + "title": "Yu Yu Hakusho: The Movie" + }, + "783": { + "imdb_id": "tt0203237", + "title": "Yu Yu Hakusho the Movie: Poltergeist Report" + }, + "785": { + "imdb_id": "tt0208502", + "title": "Angel's Egg" + }, + "788": { + "imdb_id": "tt0291343", + "title": "Pilot Candidate", + "fromSeason": 1, + "fromEpisode": 1 + }, + "789": { + "imdb_id": "tt0962826", + "title": "Black Lagoon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1363": { + "imdb_id": "tt0962826", + "title": "Black Lagoon", + "fromSeason": 1, + "fromEpisode": 13 + }, + "5335": { + "imdb_id": "tt0962826", + "title": "Black Lagoon", + "fromSeason": 0, + "fromEpisode": 1 + }, + "3841": { + "imdb_id": "tt0962826", + "title": "Black Lagoon", + "fromSeason": 0, + "fromEpisode": 8 + }, + "790": { + "imdb_id": "tt0143007", + "title": "King of the Braves GaoGaiGar", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1236": { + "imdb_id": "tt0143007", + "title": "King of the Braves GaoGaiGar", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3600": { + "imdb_id": "tt0143007", + "title": "King of the Braves GaoGaiGar", + "fromSeason": 3, + "fromEpisode": 1 + }, + "791": { + "imdb_id": "tt0142249", + "title": "Dragon Ball: Sleeping Princess in Devil's Castle" + }, + "792": { + "imdb_id": "tt0142248", + "title": "Dragon Ball: Mystical Adventure" + }, + "793": { + "imdb_id": "tt0142250", + "title": "Dragon Ball: The Path to Power" + }, + "794": { + "imdb_id": "tt0142235", + "title": "Dragon Ball Z - Movie 01 - The Dead Zone" + }, + "795": { + "imdb_id": "tt0142240", + "title": "Dragon Ball Z - Movie 02 - The World's Strongest" + }, + "796": { + "imdb_id": "tt0142233", + "title": "Dragon Ball Z - Movie 03 - Tree of Might" + }, + "797": { + "imdb_id": "tt0142244", + "title": "Dragon Ball Z - Movie 04 - Lord Slug" + }, + "798": { + "imdb_id": "tt1125254", + "title": "Dragon Ball Z - Movie 05 - Cooler's Revenge" + }, + "799": { + "imdb_id": "tt0142237", + "title": "Dragon Ball Z - Movie 06 - The Return of Cooler" + }, + "800": { + "imdb_id": "tt0142241", + "title": "Dragon Ball Z - Movie 07 - Super Android 13" + }, + "801": { + "imdb_id": "tt0142242", + "title": "Dragon Ball Z - Movie 08 - Broly The Legendary Super Saiyan" + }, + "802": { + "imdb_id": "tt0142238", + "title": "Dragon Ball Z - Movie 09 - Bojack Unbound" + }, + "803": { + "imdb_id": "tt0142239", + "title": "Dragon Ball Z - Movie 10 - Broly Second Coming" + }, + "804": { + "imdb_id": "tt0142234", + "title": "Dragon Ball Z - Movie 11 - Bio-Broly" + }, + "805": { + "imdb_id": "tt0142236", + "title": "Dragon Ball Z - Movie 12 - Fusion Reborn" + }, + "806": { + "imdb_id": "tt0142243", + "title": "Dragon Ball Z - Movie 13 - Wrath of the Dragon" + }, + "7176": { + "imdb_id": "tt2263944", + "title": "Dragon Ball Z - Movie 14 - Battle of Gods" + }, + "8676": { + "imdb_id": "tt3819668", + "title": "Dragon Ball Z - Movie 15 - Resurrection of F" + }, + "41046": { + "imdb_id": "tt7961060", + "title": "Dragon Ball Super - Movie 16 - Broly" + }, + "807": { + "imdb_id": "tt1188328", + "title": "Princess Princess" + }, + "809": { + "imdb_id": "tt0390708", + "title": "Geneshaft" + }, + "812": { + "imdb_id": "tt3755768", + "title": "Ninku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "814": { + "imdb_id": "tt0309163", + "title": "The Ping-Pong Club" + }, + "815": { + "imdb_id": "tt0997020", + "title": "Ginga Densetsu Weed" + }, + "816": { + "imdb_id": "tt1141604", + "title": "Tokko" + }, + "817": { + "imdb_id": "tt0098202", + "title": "Riding Bean" + }, + "818": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5971": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 5, + "fromEpisode": 1 + }, + "7253": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 6, + "fromEpisode": 1 + }, + "10083": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 7, + "fromEpisode": 1 + }, + "12553": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 8, + "fromEpisode": 1 + }, + "13726": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 9, + "fromEpisode": 1 + }, + "14095": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 10, + "fromEpisode": 1 + }, + "41079": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 10, + "fromEpisode": 13 + }, + "11545": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 0, + "fromEpisode": 8 + }, + "43829": { + "imdb_id": "tt0988818", + "title": "Gintama", + "fromSeason": 0, + "fromEpisode": 18 + }, + "819": { + "imdb_id": "tt2531918", + "title": "Ray the Animation" + }, + "823": { + "imdb_id": "tt0127402", + "title": "Transformers: The Headmasters" + }, + "826": { + "imdb_id": "tt0472252", + "title": "Transformers: Cybertron" + }, + "827": { + "imdb_id": "tt0084976", + "title": "Aura Battler Dunbine" + }, + "828": { + "imdb_id": "tt0476513", + "title": "Space Runaway Ideon" + }, + "831": { + "imdb_id": "tt0845738", + "title": "When They Cry", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1699": { + "imdb_id": "tt0845738", + "title": "When They Cry", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3170": { + "imdb_id": "tt0845738", + "title": "When They Cry", + "fromSeason": 3, + "fromEpisode": 1 + }, + "2631": { + "imdb_id": "tt0845738", + "title": "When They Cry", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6204": { + "imdb_id": "tt0845738", + "title": "When They Cry", + "fromSeason": 0, + "fromEpisode": 2 + }, + "7494": { + "imdb_id": "tt0845738", + "title": "When They Cry", + "fromSeason": 0, + "fromEpisode": 6 + }, + "832": { + "imdb_id": "tt0813971", + "title": "Witchblade" + }, + "836": { + "imdb_id": "tt0983967", + "title": "Inukami!" + }, + "837": { + "imdb_id": "tt0981248", + "title": "Renkin Sankyû Magical? Pokân" + }, + "838": { + "imdb_id": "tt0988925", + "title": "Nishi no yoki majo: Astraea testament" + }, + "839": { + "imdb_id": "tt1394148", + "title": "Yumetsukai" + }, + "841": { + "imdb_id": "tt0098492", + "fanartLogoId": "28145", + "title": "Gunbuster", + "fromSeason": 1, + "fromEpisode": 1 + }, + "892": { + "imdb_id": "tt0098492", + "fanartLogoId": "127311", + "title": "Gunbuster", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4108": { + "imdb_id": "tt0098492", + "title": "Gunbuster", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4911": { + "imdb_id": "tt0098492", + "title": "Gunbuster", + "fromSeason": 0, + "fromEpisode": 7 + }, + "8893": { + "imdb_id": "tt0098492", + "title": "Gunbuster", + "fromSeason": 0, + "fromEpisode": 10 + }, + "8897": { + "imdb_id": "tt0098492", + "title": "Gunbuster", + "fromSeason": 0, + "fromEpisode": 12 + }, + "1721": { + "imdb_id": "tt15739684", + "title": "Gunbuster vs Diebuster: Aim for the Top! The GATTAI!! Movie" + }, + "842": { + "imdb_id": "tt0495900", + "title": "Street Fighter Alpha: Generations" + }, + "843": { + "imdb_id": "tt0220204", + "title": "Chibi Maruko-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4445": { + "imdb_id": "tt0220204", + "title": "Chibi Maruko-chan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2855": { + "imdb_id": "tt2167725", + "title": "Chibi Maruko-chan" + }, + "5695": { + "imdb_id": "tt6882528", + "title": "Chibi Maruko-chan: Watashi no suki-na uta" + }, + "11198": { + "imdb_id": "tt5462882", + "title": "Chibi Maruko-chan: A Boy from Italy" + }, + "844": { + "imdb_id": "tt0430840", + "title": "Mahô shôjo neko Taruto" + }, + "845": { + "imdb_id": "tt0973423", + "title": "Jyu oh sei" + }, + "851": { + "imdb_id": "tt2012536", + "title": "Virtua Fighter" + }, + "854": { + "imdb_id": "tt3391638", + "title": "Hit Wo Nerae! Smash Hit!" + }, + "856": { + "imdb_id": "tt0245612", + "title": "Shin Chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "857": { + "imdb_id": "tt0091211", + "title": "Fist of the North Star", + "fromSeason": 1, + "fromEpisode": 1 + }, + "869": { + "imdb_id": "tt0185708", + "title": "Street Fighter Alpha" + }, + "1210": { + "imdb_id": "tt0091211", + "title": "Fist of the North Star", + "fromSeason": 4, + "fromEpisode": 1 + }, + "890": { + "imdb_id": "tt0182646", + "title": "Space Pirate Captain Harlock", + "fromSeason": 1, + "fromEpisode": 1 + }, + "896": { + "imdb_id": "tt0117876", + "title": "Tenchi Forever!: The Movie" + }, + "986": { + "imdb_id": "tt0152979", + "title": "Tenchi the Movie 2: The Daughter of Darkness" + }, + "1025": { + "imdb_id": "tt0205451", + "title": "Tenchi Forever!: The Movie" + }, + "1212": { + "imdb_id": "tt0142371", + "title": "Fist of the North Star" + }, + "1382": { + "imdb_id": "tt0884847", + "title": "Fist of the Blue Sky", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13983": { + "imdb_id": "tt8390536", + "title": "Fist of the Blue Sky: Re: Genesis ", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41953": { + "imdb_id": "tt8390536", + "title": "Fist of the Blue Sky: Re: Genesis", + "fromSeason": 2, + "fromEpisode": 1 + }, + "861": { + "imdb_id": "tt0387719", + "title": "Astro Boy" + }, + "863": { + "imdb_id": "tt0870976", + "title": "Glass Fleet - The Legend of the Wind of the Universe" + }, + "865": { + "imdb_id": "tt1160947", + "title": "Yokohama Kaidashi Kikou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "866": { + "imdb_id": "tt1160947", + "title": "Yokohama Kaidashi Kikou", + "fromSeason": 2, + "fromEpisode": 1 + }, + "868": { + "imdb_id": "tt0346226", + "title": "Getter Robo Armageddon" + }, + "872": { + "imdb_id": "tt4146020", + "title": "Cosplay Complex" + }, + "880": { + "imdb_id": "tt0994284", + "title": "Kamisama kazoku" + }, + "885": { + "imdb_id": "tt0466352", + "title": "Prince of Tennis: The National Tournament", + "fromSeason": 8, + "fromEpisode": 1 + }, + "888": { + "imdb_id": "tt0111897", + "title": "Blue Seed" + }, + "894": { + "imdb_id": "tt0798772", + "title": "She and He" + }, + "895": { + "imdb_id": "tt0366099", + "title": "Star Ocean EX" + }, + "900": { + "imdb_id": "tt0109422", + "title": "Ranma ½: One Grew Over the Kuno's Nest" + }, + "903": { + "imdb_id": "tt0965567", + "title": "Le Chevalier D'Eon" + }, + "908": { + "imdb_id": "tt3656742", + "title": "Sorcerous Stabber Orphen: Revenge" + }, + "911": { + "imdb_id": "tt0853200", + "title": "Sensual Phrase" + }, + "912": { + "imdb_id": "tt0284145", + "title": "Generator Gawl" + }, + "915": { + "imdb_id": "tt0282384", + "title": "Black Heaven" + }, + "917": { + "imdb_id": "tt2336252", + "title": "Psychic Force" + }, + "918": { + "imdb_id": "tt0306474", + "title": "Princess Arete" + }, + "919": { + "imdb_id": "tt0102587", + "title": "Only Yesterday" + }, + "920": { + "imdb_id": "tt0110008", + "title": "Pom Poko" + }, + "923": { + "imdb_id": "tt0291350", + "title": "Millennium Actress" + }, + "924": { + "imdb_id": "tt0093207", + "title": "Wings of Honneamise" + }, + "933": { + "imdb_id": "tt0105612", + "title": "Tokyo Babylon" + }, + "935": { + "imdb_id": "tt0204087", + "title": "Those Who Hunt Elves", + "fromSeason": 1, + "fromEpisode": 1 + }, + "936": { + "imdb_id": "tt0204087", + "title": "Those Who Hunt Elves", + "fromSeason": 2, + "fromEpisode": 1 + }, + "938": { + "imdb_id": "tt0374454", + "title": "The SoulTaker" + }, + "940": { + "imdb_id": "tt0450373", + "title": "Bobobo-bo Bo-bobo" + }, + "941": { + "imdb_id": "tt0278926", + "title": "Blue Submarine No. 6" + }, + "946": { + "imdb_id": "tt2317757", + "title": "Ippatsu Kiki Musume" + }, + "947": { + "imdb_id": "tt2382224", + "title": "Kidô shinsengumi: Moe yo ken" + }, + "952": { + "imdb_id": "tt0294208", + "title": "Tatchi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "964": { + "imdb_id": "tt0366186", + "title": "Armitage III" + }, + "965": { + "imdb_id": "tt0378730", + "title": "Yukikaze" + }, + "966": { + "imdb_id": "tt0338455", + "title": "Space Pirate Captain Herlock: Outside Legend - The Endless Odyssey" + }, + "970": { + "imdb_id": "tt2001705", + "title": "Interlude" + }, + "971": { + "imdb_id": "tt1386576", + "title": "Mars Daybreak" + }, + "972": { + "imdb_id": "tt0092386", + "title": "Kimagure Orange Road", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2232": { + "imdb_id": "tt0092386", + "title": "Kimagure Orange Road", + "fromSeason": 0, + "fromEpisode": 2 + }, + "1897": { + "imdb_id": "tt0160865", + "title": "New Kimagure Orange Road: Summer's Beginning" + }, + "2228": { + "imdb_id": "tt0095448", + "title": "Kimagure Orange Road: I Want to Return to That Day" + }, + "973": { + "imdb_id": "tt0142183", + "title": "Super Dimensional Fortress Macross" + }, + "974": { + "imdb_id": "tt0087660", + "title": "Macross: Do You Remember Love?" + }, + "980": { + "imdb_id": "tt0100339", + "title": "Patlabor: The Movie" + }, + "981": { + "imdb_id": "tt0124770", + "title": "Patlabor 2: The Movie" + }, + "1164": { + "imdb_id": "tt0318819", + "title": "WXIII: Patlabor the Movie 3" + }, + "982": { + "imdb_id": "tt0991059", + "title": "Lime-iro Senkitan" + }, + "983": { + "imdb_id": "tt0347854", + "title": "Samurai Girl: Real Bout High School" + }, + "988": { + "imdb_id": "tt1634548", + "title": "Marriage of God & Soul Godannar!! ", + "fromSeason": 1, + "fromEpisode": 1 + }, + "989": { + "imdb_id": "tt1634548", + "title": "Marriage of God & Soul Godannar!! ", + "fromSeason": 1, + "fromEpisode": 14 + }, + "992": { + "imdb_id": "tt0098692", + "title": "Wicked City" + }, + "993": { + "imdb_id": "tt0224528", + "title": "Soul Hunter" + }, + "1009": { + "imdb_id": "tt0475192", + "title": "Figyua 17 Tsubasa & Hikaru" + }, + "1014": { + "imdb_id": "tt0210418", + "title": "Digimon: Digital Monsters", + "fromSeason": 4, + "fromEpisode": 1 + }, + "1015": { + "imdb_id": "tt0331154", + "title": "Tenchi Muyô! GXP", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47499": { + "imdb_id": "tt0331154", + "title": "Tenchi Muyô! GXP", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1017": { + "imdb_id": "tt0257294", + "title": "Betterman" + }, + "1018": { + "imdb_id": "tt0293741", + "title": "Shinzo" + }, + "1021": { + "imdb_id": "tt0493247", + "title": "Origin: Spirits of the Past" + }, + "1022": { + "imdb_id": "tt0311618", + "title": "A Tree of Palme" + }, + "1023": { + "imdb_id": "tt0478838", + "title": "Honey and Clover", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1029": { + "imdb_id": "tt0337283", + "title": "Doomed Megalopolis" + }, + "1030": { + "imdb_id": "tt0425677", + "title": "Gravion Zwei" + }, + "1032": { + "imdb_id": "tt0158591", + "title": "Dominion Tank Police", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1033": { + "imdb_id": "tt0158590", + "title": "New Dominion Tank Police", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1041": { + "imdb_id": "tt0331508", + "title": "Gundress" + }, + "1145": { + "imdb_id": "tt0092664", + "title": "Black Magic M-66" + }, + "1877": { + "imdb_id": "tt0316156", + "title": "Landlock" + }, + "1975": { + "imdb_id": "tt11297340", + "title": "TANK S.W.A.T. 01" + }, + "1037": { + "imdb_id": "tt2321187", + "title": "Zaion: I Wish You Were Here" + }, + "1038": { + "imdb_id": "tt0304012", + "title": "Final Fantasy: Unlimited" + }, + "1042": { + "imdb_id": "tt0162467", + "title": "Maze" + }, + "1044": { + "imdb_id": "tt0791208", + "title": "Neo Ranga" + }, + "1045": { + "imdb_id": "tt0995014", + "title": "Rune Soldier" + }, + "1048": { + "imdb_id": "tt0477535", + "title": "Samurai Gun" + }, + "1055": { + "imdb_id": "tt0112071", + "title": "Metal Fighter Miku" + }, + "1057": { + "imdb_id": "tt1915535", + "title": "Alien Nine", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1058": { + "imdb_id": "tt0101718", + "title": "Detonator Orgun" + }, + "1059": { + "imdb_id": "tt1073234", + "title": "Shingu: Secret of the Stellar Wars" + }, + "1060": { + "imdb_id": "tt0278864", + "title": "Hyper Police" + }, + "1062": { + "imdb_id": "tt0387584", + "title": "Shamanic Princess" + }, + "1064": { + "imdb_id": "tt0236450", + "title": "Lost Universe" + }, + "1066": { + "imdb_id": "tt0195542", + "title": "Battle Athletes Victory" + }, + "1069": { + "imdb_id": "tt0866579", + "title": "Eden's Bowy" + }, + "1071": { + "imdb_id": "tt0290282", + "title": "Saber Marionette J Again" + }, + "1074": { + "imdb_id": "tt0965568", + "title": "Coyote Ragtime Show" + }, + "1075": { + "imdb_id": "tt0978553", + "title": "The Familiar of Zero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1657": { + "imdb_id": "tt0978553", + "title": "The Familiar of Zero", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3209": { + "imdb_id": "tt0978553", + "title": "The Familiar of Zero", + "fromSeason": 3, + "fromEpisode": 1 + }, + "6493": { + "imdb_id": "tt0978553", + "title": "The Familiar of Zero", + "fromSeason": 4, + "fromEpisode": 1 + }, + "4269": { + "imdb_id": "tt0978553", + "title": "The Familiar of Zero", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4579": { + "imdb_id": "tt0978553", + "title": "The Familiar of Zero", + "fromSeason": 0, + "fromEpisode": 2 + }, + "1077": { + "imdb_id": "tt0889540", + "title": "Tsuyokiss: Cool×Sweet" + }, + "1078": { + "imdb_id": "tt0306365", + "title": "Nintama Rantarou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1079": { + "imdb_id": "tt0846454", + "title": "Gun-dou Musashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1088": { + "imdb_id": "tt0857297", + "title": "Welcome to the NHK!" + }, + "1090": { + "imdb_id": "tt0813808", + "title": "Oban Star-Racers" + }, + "1095": { + "imdb_id": "tt0988931", + "title": "Tonagura!" + }, + "1096": { + "imdb_id": "tt2629076", + "title": "Chocotto Sister" + }, + "1098": { + "imdb_id": "tt0989771", + "title": "Powerpuff Girls Z" + }, + "1099": { + "imdb_id": "tt2147761", + "title": "Bokura ga ita" + }, + "1101": { + "imdb_id": "tt1202772", + "title": "Aquarian Age: Sign for Evolution" + }, + "1103": { + "imdb_id": "tt0224527", + "title": "Angel Links" + }, + "1118": { + "imdb_id": "tt0983974", + "title": "Night Head Genesis" + }, + "1119": { + "imdb_id": "tt0813396", + "title": "Takegami" + }, + "1121": { + "imdb_id": "tt5161512", + "title": "Yugo the Negotiator" + }, + "1122": { + "imdb_id": "tt0983982", + "title": "Project Blue Chikyû SOS" + }, + "1124": { + "imdb_id": "tt0446257", + "title": "Zone of the Enders: Dolores, i" + }, + "1125": { + "imdb_id": "tt0959544", + "title": "Elemental gelade" + }, + "1129": { + "imdb_id": "tt0161952", + "title": "Saint Seiya", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1132": { + "imdb_id": "tt0805448", + "fanartLogoId": "99169", + "title": "Saint Seiya: The Hades Chapter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1128": { + "imdb_id": "tt0805448", + "fanartLogoId": "99170", + "title": "Saint Seiya: The Hades Chapter", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3066": { + "imdb_id": "tt0805448", + "fanartLogoId": "99187", + "title": "Saint Seiya: The Hades Chapter", + "fromSeason": 4, + "fromEpisode": 1 + }, + "4458": { + "imdb_id": "tt2152368", + "title": "Saint Seiya: The Lost Canvas", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5612": { + "imdb_id": "tt2152368", + "title": "Saint Seiya: The Lost Canvas", + "fromSeason": 1, + "fromEpisode": 13 + }, + "6850": { + "imdb_id": "tt2230515", + "title": "Seinto Seiya: Omega", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10026": { + "imdb_id": "tt4670988", + "title": "Saint Seiya: Soul of Gold", + "fromSeason": 1, + "fromEpisode": 1 + }, + "40611": { + "imdb_id": "tt10240056", + "title": "Saint Seiya: Saintia Shô", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1136": { + "imdb_id": "tt0122834", + "title": "Samurai Pizza Cats" + }, + "1137": { + "imdb_id": "tt0113726", + "title": "Super Dimensional Fortress Macross II: Lovers Again" + }, + "1139": { + "imdb_id": "tt0159933", + "title": "Ronin Warriors", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1140": { + "imdb_id": "tt0159933", + "fanartLogoId": "103831", + "title": "Ronin Warriors", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1141": { + "imdb_id": "tt0159933", + "fanartLogoId": "102780", + "title": "Ronin Warriors", + "fromSeason": 0, + "fromEpisode": 3 + }, + "1142": { + "imdb_id": "tt0159933", + "title": "Ronin Warriors", + "fromSeason": 0, + "fromEpisode": 7 + }, + "1146": { + "imdb_id": "tt2304700", + "title": "Kyokasho ni nai!" + }, + "1154": { + "imdb_id": "tt0122356", + "title": "The Mysterious Cities of Gold", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10917": { + "imdb_id": "tt0122356", + "title": "The Mysterious Cities of Gold", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13295": { + "imdb_id": "tt0122356", + "title": "The Mysterious Cities of Gold", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44094": { + "imdb_id": "tt0122356", + "title": "The Mysterious Cities of Gold", + "fromSeason": 4, + "fromEpisode": 1 + }, + "1155": { + "imdb_id": "tt0100099", + "title": "Devil Hunter Yohko" + }, + "1156": { + "imdb_id": "tt0285368", + "title": "Ghost Stories", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1157": { + "imdb_id": "tt0286648", + "title": "Gestalt" + }, + "1162": { + "imdb_id": "tt0160423", + "title": "Patlabor: Early Days", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1163": { + "imdb_id": "tt0160424", + "title": "Patlabor: The New Files", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1165": { + "imdb_id": "tt0465316", + "title": "Afro Samurai" + }, + "1166": { + "imdb_id": "tt0081954", + "title": "Lum the Invader Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1729": { + "imdb_id": "tt0081954", + "title": "Lum the Invader Girl", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1167": { + "imdb_id": "tt0100421", + "title": "Project A-Ko Versus" + }, + "1172": { + "imdb_id": "tt0377235", + "title": "Omishi mahou gekijou Risky Safety" + }, + "1174": { + "imdb_id": "tt0184881", + "title": "Adieu, Galaxy Express 999: Last Stop Andromeda" + }, + "1177": { + "imdb_id": "tt0466200", + "title": "Dai-Guard" + }, + "1178": { + "imdb_id": "tt0210418", + "title": "Digimon: Digital Monsters", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1182": { + "imdb_id": "tt0159843", + "title": "Earthian" + }, + "1183": { + "imdb_id": "tt0375337", + "title": "Violinist of Hameln" + }, + "1189": { + "imdb_id": "tt0302211", + "title": "Noozles" + }, + "1191": { + "imdb_id": "tt0143353", + "fanartLogoId": "98829", + "title": "The Guyver: Bio-Booster Armor", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8124": { + "imdb_id": "tt0143353", + "fanartLogoId": "98973", + "title": "The Guyver: Bio-Booster Armor", + "fromSeason": 1, + "fromEpisode": 7 + }, + "1199": { + "imdb_id": "tt0124971", + "title": "8 Man After" + }, + "1201": { + "imdb_id": "tt0088655", + "title": "A.D. Police Files" + }, + "1202": { + "imdb_id": "tt0088863", + "title": "Bubblegum Crisis" + }, + "1203": { + "imdb_id": "tt0101514", + "title": "Bubblegum Crash" + }, + "1204": { + "imdb_id": "tt0189238", + "title": "A.D. Police: To Protect and Serve" + }, + "1205": { + "imdb_id": "tt0376058", + "title": "Parasite Dolls" + }, + "1206": { + "imdb_id": "tt0096816", + "title": "Angel Cop" + }, + "1207": { + "imdb_id": "tt0220218", + "title": "Cyber City Oedo 808" + }, + "1211": { + "imdb_id": "tt0367037", + "title": "New Fist of the North Star" + }, + "1593": { + "imdb_id": "tt0456980", + "title": "Fist of the North Star: New Saviour Legend" + }, + "2735": { + "imdb_id": "tt0456982", + "title": "Fist of the North Star: The Legend of Yuria" + }, + "1969": { + "imdb_id": "tt1135522", + "title": "Shin kyûseishu densetsu Hokuto no Ken: Raô den - Gekitô no shô" + }, + "3552": { + "imdb_id": "tt0456981", + "title": "Shin Kyûseishu densetsu Hokuto no Ken - Toki den" + }, + "4038": { + "imdb_id": "tt0456978", + "title": "Shin Kyûseishu densetsu Hokuto no Ken - Kenshirô den" + }, + "1216": { + "imdb_id": "tt0114563", + "title": "Street Fighter II: The Animated Movie" + }, + "1219": { + "imdb_id": "tt0990372", + "title": "Detective Conan: The Phantom of Baker Street" + }, + "1225": { + "imdb_id": "tt1324042", + "title": "Phoenix" + }, + "1417": { + "imdb_id": "tt0111351", + "title": "You're Under Arrest!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1226": { + "imdb_id": "tt0111351", + "title": "You're Under Arrest!", + "fromSeason": 1, + "fromEpisode": 5 + }, + "1813": { + "imdb_id": "tt0111351", + "title": "You're Under Arrest!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2711": { + "imdb_id": "tt0111351", + "title": "You're Under Arrest!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1810": { + "imdb_id": "tt4164662", + "title": "You're Under Arrest: Mini Specials", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1812": { + "imdb_id": "tt0377008", + "title": "You're Under Arrest: The Movie" + }, + "1126": { + "imdb_id": "tt0096591", + "title": "Nadia: Secret of Blue Water", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1228": { + "imdb_id": "tt0488266", + "title": "Guyver: The Bioboosted Armor" + }, + "1229": { + "imdb_id": "tt0168436", + "title": "Daddy Long-legs" + }, + "1244": { + "imdb_id": "tt0462654", + "title": "Shinseiki GPX saibâ fômyura" + }, + "1250": { + "imdb_id": "tt0156220", + "title": "Macross 7" + }, + "1264": { + "imdb_id": "tt0370220", + "title": "Knights of Ramune" + }, + "1265": { + "imdb_id": "tt0159175", + "title": "Lupin the 3rd", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1278": { + "imdb_id": "tt0159175", + "title": "Lupin the 3rd", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1279": { + "imdb_id": "tt0159175", + "title": "Lupin the 3rd", + "fromSeason": 3, + "fromEpisode": 1 + }, + "9958": { + "imdb_id": "tt0159175", + "title": "Lupin the 3rd", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13749": { + "imdb_id": "tt0159175", + "title": "Lupin the 3rd", + "fromSeason": 5, + "fromEpisode": 1 + }, + "44618": { + "imdb_id": "tt0159175", + "title": "Lupin the 3rd", + "fromSeason": 6, + "fromEpisode": 1 + }, + "6910": { + "imdb_id": "tt2298919", + "title": "Lupin the Third: Mine Fujiko to iu onna", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1283": { + "imdb_id": "tt0079833", + "title": "The Castle of Cagliostro" + }, + "1293": { + "imdb_id": "tt2312134", + "title": "Ninja Cadets!" + }, + "1294": { + "imdb_id": "tt0089206", + "title": "Kenji Miyazawa's Night on the Galactic Railroad" + }, + "1298": { + "imdb_id": "tt0061300", + "title": "Speed Racer" + }, + "1300": { + "imdb_id": "tt0256548", + "title": "Brigadoon: Marin to Melan" + }, + "1303": { + "imdb_id": "tt0090479", + "title": "Maison Ikkoku" + }, + "1304": { + "imdb_id": "tt0928094", + "title": "Kemonozume" + }, + "1305": { + "imdb_id": "tt0237500", + "title": "Ninja Resurrection" + }, + "1307": { + "imdb_id": "tt0122129", + "title": "Key: The Metal Idol" + }, + "1310": { + "imdb_id": "tt0121799", + "title": "Tekkaman Blade II" + }, + "1311": { + "imdb_id": "tt0113799", + "title": "Memories" + }, + "1312": { + "imdb_id": "tt2599758", + "title": "Sadamitsu the Destroyer" + }, + "1313": { + "imdb_id": "tt4060956", + "title": "Hakugei: Legend of the Moby Dick" + }, + "1315": { + "imdb_id": "tt0218775", + "title": "Monster Rancher", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1316": { + "imdb_id": "tt0159208", + "title": "City Hunter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1317": { + "imdb_id": "tt0159208", + "title": "City Hunter", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1318": { + "imdb_id": "tt0159208", + "title": "City Hunter", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1319": { + "imdb_id": "tt0159208", + "title": "City Hunter", + "fromSeason": 4, + "fromEpisode": 1 + }, + "1320": { + "imdb_id": "tt0097067", + "title": "City Hunter: .357 Magnum" + }, + "1321": { + "imdb_id": "tt0099272", + "title": "City Hunter: Bay City Wars" + }, + "1322": { + "imdb_id": "tt0159362", + "title": "City Hunter: Million Dollar Conspiracy" + }, + "1323": { + "imdb_id": "tt0154338", + "title": "City Hunter: Secret Service" + }, + "1324": { + "imdb_id": "tt0366310", + "title": "City Hunter: The Motion Picture" + }, + "1325": { + "imdb_id": "tt0211310", + "title": "City Hunter: Death Ot the Vicious Criminal Ryo Saeba" + }, + "1328": { + "imdb_id": "tt0899258", + "title": "D.Gray-man", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1330": { + "imdb_id": "tt0161113", + "title": "Blood Reign: Curse of the Yoma" + }, + "1332": { + "imdb_id": "tt0115234", + "title": "Kodocha" + }, + "1336": { + "imdb_id": "tt0389633", + "title": "The Galaxy Railways" + }, + "1337": { + "imdb_id": "tt0185066", + "title": "Ginga tetsudô Three-Nine" + }, + "1342": { + "imdb_id": "tt0113833", + "title": "Miyuki-chan in Wonderland" + }, + "1344": { + "imdb_id": "tt0878230", + "title": "Black Blood Brothers" + }, + "1348": { + "imdb_id": "tt0159198", + "title": "Magical Project S" + }, + "1353": { + "imdb_id": "tt3337196", + "title": "Sci-Fi Harry", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1354": { + "imdb_id": "tt0983973", + "title": "Mamotte! Lollipop" + }, + "1362": { + "imdb_id": "tt0250921", + "title": "Silent Möbius" + }, + "1373": { + "imdb_id": "tt0497548", + "title": "Sukisho" + }, + "1374": { + "imdb_id": "tt0112221", + "title": "Legend of the Angel of Love, Wedding Peach" + }, + "1375": { + "imdb_id": "tt1556080", + "title": "Futari wa purikyua: Splash Star" + }, + "1376": { + "imdb_id": "tt0877057", + "title": "Death Note" + }, + "1377": { + "imdb_id": "tt0877507", + "title": "Busô renkin" + }, + "1378": { + "imdb_id": "tt7062100", + "title": "Ryu the Primitive Boy" + }, + "1379": { + "imdb_id": "tt1132544", + "title": "Pumpkin Scissors" + }, + "1383": { + "imdb_id": "tt0249410", + "title": "Brain Powerd" + }, + "1384": { + "imdb_id": "tt0878633", + "title": "Brighter Than the Dawning Blue" + }, + "1387": { + "imdb_id": "tt0480493", + "title": "Negima!" + }, + "1389": { + "imdb_id": "tt0185110", + "title": "Queen Millennia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1391": { + "imdb_id": "tt0296304", + "title": "Attack No. 1" + }, + "1394": { + "imdb_id": "tt1429175", + "title": "Asatte no hôkô." + }, + "1396": { + "imdb_id": "tt8023846", + "title": "Demon Prince Enma" + }, + "1397": { + "imdb_id": "tt0876247", + "title": "Shonen onmyoji" + }, + "1399": { + "imdb_id": "tt1424037", + "title": "The Mightiest Disciple Kenichi" + }, + "1401": { + "imdb_id": "tt0978081", + "title": "Lovedol: Lovely Idol" + }, + "1402": { + "imdb_id": "tt0892861", + "title": "The Wallflower" + }, + "1406": { + "imdb_id": "tt0856797", + "title": "Ghost in the Shell: Stand Alone Complex - Solid State Society" + }, + "1408": { + "imdb_id": "tt0978204", + "title": "Sumomo mo momo mo: Chijô saikyô no yome" + }, + "1409": { + "imdb_id": "tt0978547", + "title": "Otome wa boku ni koishiteru" + }, + "1410": { + "imdb_id": "tt0876211", + "title": "Hapinesu!" + }, + "1411": { + "imdb_id": "tt0985285", + "title": "Ghost Hunt" + }, + "1412": { + "imdb_id": "tt0058817", + "title": "Kimba the White Lion" + }, + "1413": { + "imdb_id": "tt0112233", + "title": "Kishin dôji Zenki" + }, + "1415": { + "imdb_id": "tt0994314", + "fanartLogoId": "91248", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2634": { + "imdb_id": "tt0994314", + "fanartLogoId": "91247", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3700": { + "imdb_id": "tt0994314", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 0, + "fromEpisode": 5 + }, + "4705": { + "imdb_id": "tt0994314", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 0, + "fromEpisode": 6 + }, + "6791": { + "imdb_id": "tt0994314", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 0, + "fromEpisode": 12 + }, + "1921": { + "imdb_id": "tt0994314", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 0, + "fromEpisode": 14 + }, + "1759": { + "imdb_id": "tt0994314", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 0, + "fromEpisode": 16 + }, + "3960": { + "imdb_id": "tt0994314", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 0, + "fromEpisode": 25 + }, + "12976": { + "imdb_id": "tt0994314", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 0, + "fromEpisode": 34 + }, + "12906": { + "imdb_id": "tt0994314", + "title": "Code Geass: Lelouch of the Rebellion", + "fromSeason": 0, + "fromEpisode": 35 + }, + "1416": { + "imdb_id": "tt1359083", + "title": "Intrigue in the Bakumatsu: Irohanihoheto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1418": { + "imdb_id": "tt0881691", + "title": "Koisuru tenshi Angelique: Kokoro no mezameru toki" + }, + "1419": { + "imdb_id": "tt0988923", + "title": "Kin iro no koruda: Primo passo" + }, + "1420": { + "imdb_id": "tt0331285", + "title": "Madara" + }, + "1421": { + "imdb_id": "tt0972651", + "title": "Gift: Eternal Rainbow" + }, + "1423": { + "imdb_id": "tt1025104", + "title": "009-1", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1427": { + "imdb_id": "tt0881819", + "title": "Ghost Slayers Ayashi" + }, + "1429": { + "imdb_id": "tt0875778", + "title": "Bartender" + }, + "1431": { + "imdb_id": "tt0879090", + "title": "Kujibiki Unbalance" + }, + "1432": { + "imdb_id": "tt1118528", + "title": "Hatarakiman" + }, + "1440": { + "imdb_id": "tt0972644", + "title": "Galaxy Angel Rune" + }, + "1441": { + "imdb_id": "tt0891890", + "title": "Red Garden" + }, + "1442": { + "imdb_id": "tt1233538", + "title": "Strain: Strategic Armored Infantry" + }, + "1444": { + "imdb_id": "tt1224144", + "title": "Reborn!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1445": { + "imdb_id": "tt1608924", + "title": "Kekkaishi" + }, + "1446": { + "imdb_id": "tt1541531", + "title": "Venus Versus Virus" + }, + "1448": { + "imdb_id": "tt0978540", + "title": "Mai otome", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1451": { + "imdb_id": "tt0294023", + "title": "Kyaputen Tsubasa" + }, + "1455": { + "imdb_id": "tt0110464", + "title": "Maps", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1458": { + "imdb_id": "tt0872175", + "title": "G-on Riders" + }, + "1462": { + "imdb_id": "tt7676862", + "title": "Dangaizer 3" + }, + "1463": { + "imdb_id": "tt0421391", + "title": "Maô Dante" + }, + "1464": { + "imdb_id": "tt0409548", + "title": "Devilman Lady" + }, + "1473": { + "imdb_id": "tt0168361", + "title": "The Adventures of Peter Pan" + }, + "1477": { + "imdb_id": "tt0983985", + "title": "Sugar Sugar Rune" + }, + "1483": { + "imdb_id": "tt0078692", + "title": "Star Blazers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1484": { + "imdb_id": "tt0078692", + "title": "Star Blazers", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1485": { + "imdb_id": "tt0078692", + "title": "Star Blazers", + "fromSeason": 3, + "fromEpisode": 1 + }, + "645": { + "imdb_id": "tt0204704", + "title": "Space Battleship Yamato" + }, + "2766": { + "imdb_id": "tt0316540", + "title": "Farewell to Space Battleship Yamato: Warriors of Love" + }, + "2767": { + "imdb_id": "tt0140703", + "title": "Be Forever Yamato" + }, + "2769": { + "imdb_id": "tt0140647", + "title": "Space Battleship Yamato: The New Voyage" + }, + "2770": { + "imdb_id": "tt0140648", + "title": "Final Yamato" + }, + "4878": { + "imdb_id": "tt1442543", + "title": "Space Battleship Yamato Resurrection" + }, + "1486": { + "imdb_id": "tt0981247", + "title": "Oroshitate Musical Nerima Daikon Brothers" + }, + "1487": { + "imdb_id": "tt2296348", + "title": "The Pet Girl of Sakurasou" + }, + "1488": { + "imdb_id": "tt0377962", + "title": "Garzey's Wing" + }, + "1492": { + "imdb_id": "tt0288933", + "title": "Cutie Honey" + }, + "1494": { + "imdb_id": "tt0074002", + "title": "3000 Leagues in Search of Mother" + }, + "1495": { + "imdb_id": "tt4266894", + "title": "Babel II: Beyond Infinity", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1496": { + "imdb_id": "tt1933701", + "title": "Babel nisei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8930": { + "imdb_id": "tt0167014", + "title": "Babel nisei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1497": { + "imdb_id": "tt3427294", + "title": "Baromu wan" + }, + "1505": { + "imdb_id": "tt0329938", + "title": "Transformers: Armada" + }, + "1506": { + "imdb_id": "tt0297536", + "title": "Cosmo Warrior Zero" + }, + "1508": { + "imdb_id": "tt0372650", + "title": "Cyborg 009", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1514": { + "imdb_id": "tt0404597", + "title": "Duel Masters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3610": { + "imdb_id": "tt0404597", + "title": "Duel Masters", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1516": { + "imdb_id": "tt1132208", + "title": "Nanatsuiro Drops" + }, + "1517": { + "imdb_id": "tt0983213", + "title": "5 Centimetres Per Second" + }, + "1518": { + "imdb_id": "tt1132201", + "title": "Bokura no" + }, + "1519": { + "imdb_id": "tt1161669", + "title": "Stigma of the Wind" + }, + "1521": { + "imdb_id": "tt0989787", + "title": "Reideen" + }, + "1522": { + "imdb_id": "tt1345978", + "title": "IDOLM@STER: Xenoglossia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1523": { + "imdb_id": "tt1203269", + "title": "Les Miserables: Shoujo Cosette" + }, + "1525": { + "imdb_id": "tt0928099", + "title": "Nodame kantâbire", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3632": { + "imdb_id": "tt0928099", + "title": "Nodame kantâbire", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4248": { + "imdb_id": "tt0928099", + "title": "Nodame kantâbire", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1526": { + "imdb_id": "tt1081667", + "title": "Romeo x Juliet" + }, + "1530": { + "imdb_id": "tt0239361", + "title": "Eat-Man", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1439": { + "imdb_id": "tt0239361", + "title": "Eat-Man", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1531": { + "imdb_id": "tt0315011", + "title": "Gun Frontier" + }, + "1533": { + "imdb_id": "tt5914182", + "title": "Beast Fighter - The Apocalypse" + }, + "1535": { + "imdb_id": "tt0367369", + "tvdb_id": "71682", + "title": "MegaMan: NT Warrior", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1907": { + "imdb_id": "tt0367369", + "tvdb_id": "73820", + "title": "MegaMan: NT Warrior", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1908": { + "imdb_id": "tt0367369", + "tvdb_id": "75097", + "title": "MegaMan: NT Warrior", + "fromSeason": 3, + "fromEpisode": 1 + }, + "1909": { + "imdb_id": "tt0367369", + "tvdb_id": "248903", + "title": "MegaMan: NT Warrior", + "fromSeason": 4, + "fromEpisode": 1 + }, + "2474": { + "imdb_id": "tt0367369", + "tvdb_id": "373443", + "title": "MegaMan: NT Warrior", + "fromSeason": 5, + "fromEpisode": 1 + }, + "1537": { + "imdb_id": "tt3425836", + "title": "Shinseikiden Mâzu" + }, + "1538": { + "imdb_id": "tt0373625", + "title": "Submarine Super 99" + }, + "1542": { + "imdb_id": "tt0978046", + "title": "Hitohira" + }, + "1543": { + "imdb_id": "tt1234601", + "title": "Nagasarete Airantou" + }, + "1547": { + "imdb_id": "tt1048049", + "title": "Devil May Cry" + }, + "1548": { + "imdb_id": "tt1437044", + "title": "Polyphonica" + }, + "1549": { + "imdb_id": "tt0758422", + "title": "Super GALS!" + }, + "1555": { + "imdb_id": "tt0988824", + "title": "Naruto: Shippûden", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7975": { + "imdb_id": "tt0988824", + "title": "Naruto: Shippûden", + "fromSeason": 0, + "fromEpisode": 11 + }, + "1556": { + "imdb_id": "tt1916847", + "title": "B'T X Neo" + }, + "1557": { + "imdb_id": "tt0295667", + "title": "Space Warriors Baldios" + }, + "1558": { + "imdb_id": "tt1262009", + "title": "Ramen Fighter Miki" + }, + "1562": { + "imdb_id": "tt0292846", + "title": "The Legend of the 4 Kings" + }, + "1580": { + "imdb_id": "tt0086148", + "title": "Golgo 13: The Professional" + }, + "1582": { + "imdb_id": "tt0103720", + "title": "The Heroic Legend of Arislan" + }, + "1595": { + "imdb_id": "tt0264281", + "title": "Nazca" + }, + "1598": { + "imdb_id": "tt2224968", + "title": "Jang Geum ieui Kkum", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5627": { + "imdb_id": "tt2224968", + "title": "Jang Geum ieui Kkum", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1606": { + "imdb_id": "tt4110092", + "title": "Sprite: Between Two Worlds" + }, + "1612": { + "imdb_id": "tt0377237", + "title": "Overman King-Gainer" + }, + "1614": { + "imdb_id": "tt0434908", + "title": "Dirty Pair: Mystery of Norlandia" + }, + "1615": { + "imdb_id": "tt0099435", + "title": "Original Dirty Pair: Flight 005 Conspiracy" + }, + "1616": { + "imdb_id": "tt0385668", + "title": "Original Dirty Pair: Project Eden" + }, + "1626": { + "imdb_id": "tt1132210", + "title": "Prism Ark" + }, + "1628": { + "imdb_id": "tt0983972", + "title": "Shattered Angels" + }, + "1633": { + "imdb_id": "tt0367413", + "title": "Sonic X" + }, + "1635": { + "imdb_id": "tt0985344", + "title": "Claymore" + }, + "1641": { + "imdb_id": "tt0085218", + "title": "Barefoot Gen" + }, + "1643": { + "imdb_id": "tt0926230", + "title": "Deltora Quest" + }, + "1644": { + "imdb_id": "tt1029248", + "title": "Guardian of the Sacred Spirit" + }, + "1646": { + "imdb_id": "tt0495596", + "title": "Tales from Earthsea" + }, + "1649": { + "imdb_id": "tt0158772", + "title": "Zeoraima: Project Hades" + }, + "1653": { + "imdb_id": "tt0994557", + "title": "Shuffle! Memories" + }, + "1654": { + "imdb_id": "tt2238049", + "title": "Dokkoida!?" + }, + "1658": { + "imdb_id": "tt7741974", + "title": "Untouchable" + }, + "1659": { + "imdb_id": "tt1693435", + "title": "Major", + "fromSeason": 3, + "fromEpisode": 1 + }, + "2869": { + "imdb_id": "tt1693435", + "title": "Major", + "fromSeason": 4, + "fromEpisode": 1 + }, + "1661": { + "imdb_id": "tt0488448", + "title": "Clamp School" + }, + "1662": { + "imdb_id": "tt3425232", + "title": "Gaiking: Legend of Daikû Maryû" + }, + "1663": { + "imdb_id": "tt0302166", + "title": "Princess Nine" + }, + "1665": { + "imdb_id": "tt0982094", + "title": "Lord of Lords Ryu Knight" + }, + "1669": { + "imdb_id": "tt0972656", + "title": "Hidamari Sketch", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3137": { + "imdb_id": "tt0972656", + "title": "Hidamari Sketch", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4856": { + "imdb_id": "tt0972656", + "title": "Hidamari Sketch", + "fromSeason": 3, + "fromEpisode": 1 + }, + "6480": { + "imdb_id": "tt0972656", + "title": "Hidamari Sketch", + "fromSeason": 4, + "fromEpisode": 1 + }, + "1670": { + "imdb_id": "tt0189254", + "title": "Cutey Honey Flash" + }, + "1675": { + "imdb_id": "tt2505510", + "title": "Gakuen Utopia Manabi Straight!" + }, + "1684": { + "imdb_id": "tt0295495", + "title": "Mighty Space Miners", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1690": { + "imdb_id": "tt4084590", + "title": "Kaze no Shoujo Emily" + }, + "1691": { + "imdb_id": "tt0097445", + "title": "Goku Midnight Eye", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1692": { + "imdb_id": "tt0097445", + "title": "Goku Midnight Eye", + "fromSeason": 1, + "fromEpisode": 2 + }, + "1696": { + "imdb_id": "tt1161678", + "title": "Master of Epic: The Animation Age" + }, + "1697": { + "imdb_id": "tt1086236", + "title": "Lucky Star", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3628": { + "imdb_id": "tt1086236", + "title": "Lucky Star", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1723": { + "imdb_id": "tt3143922", + "title": "Shonan Junai Gumi" + }, + "1724": { + "imdb_id": "tt1687093", + "title": "The Story of Saiunkoku", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1726": { + "imdb_id": "tt7127518", + "title": "Mobile Suit Gundam MS IGLOO: Apocalypse 0079" + }, + "1727": { + "imdb_id": "tt2328145", + "title": "Mobile Suit Gundam MS IGLOO: The Hidden One Year War" + }, + "3533": { + "imdb_id": "tt7127562", + "title": "Mobile Suit Gundam MS IGLOO: Gravity Front" + }, + "1744": { + "imdb_id": "tt0160521", + "title": "Megazone 23" + }, + "1745": { + "imdb_id": "tt0294147", + "title": "Misutenaide Daisy" + }, + "1751": { + "imdb_id": "tt1112799", + "title": "Rocket Girls" + }, + "1752": { + "imdb_id": "tt0851578", + "title": "Paprika" + }, + "1754": { + "imdb_id": "tt0447579", + "title": "Ashita no Nadja" + }, + "1760": { + "imdb_id": "tt0168143", + "title": "Rayearth", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1765": { + "imdb_id": "tt3638066", + "title": "Wairudo 7" + }, + "1766": { + "imdb_id": "tt0367414", + "title": "Soreike! Anpanman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1768": { + "imdb_id": "tt0467724", + "title": "The Daichis: Earth's Defense Family" + }, + "1770": { + "imdb_id": "tt1120961", + "title": "Sola" + }, + "1775": { + "imdb_id": "tt0088109", + "title": "Sherlock Hound" + }, + "1777": { + "imdb_id": "tt3221274", + "title": "Garasu no kamen" + }, + "1778": { + "imdb_id": "tt4012832", + "title": "Muteki-Ô Tri-Zenon" + }, + "1787": { + "imdb_id": "tt0185070", + "title": "Grandizer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1800": { + "imdb_id": "tt0102812", + "title": "Roujin Z" + }, + "1801": { + "imdb_id": "tt0948103", + "title": "Tengen toppa gurren lagann", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6267": { + "imdb_id": "tt0948103", + "title": "Tengen toppa gurren lagann", + "fromSeason": 0, + "fromEpisode": 1 + }, + "2950": { + "imdb_id": "tt0948103", + "title": "Tengen toppa gurren lagann", + "fromSeason": 0, + "fromEpisode": 2 + }, + "4358": { + "imdb_id": "tt0948103", + "title": "Tengen toppa gurren lagann", + "fromSeason": 0, + "fromEpisode": 5 + }, + "1802": { + "imdb_id": "tt1433670", + "title": "Heroic Age" + }, + "1822": { + "imdb_id": "tt0279553", + "title": "Bakuen Campus Guardress" + }, + "1823": { + "imdb_id": "tt1179249", + "title": "Yoshimune" + }, + "1824": { + "imdb_id": "tt0995941", + "title": "Darker Than Black: Gemini of the Meteor", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4617": { + "imdb_id": "tt0995941", + "title": "Darker Than Black: Gemini of the Meteor", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3506": { + "imdb_id": "tt0995941", + "title": "Darker Than Black: Gemini of the Meteor", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4947": { + "imdb_id": "tt0995941", + "title": "Darker Than Black: Gemini of the Meteor", + "fromSeason": 0, + "fromEpisode": 2 + }, + "1825": { + "imdb_id": "tt0983962", + "title": "Hayate, the Combat Butler", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3514": { + "imdb_id": "tt0983962", + "title": "Hayate, the Combat Butler", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7148": { + "imdb_id": "tt0983962", + "title": "Hayate, the Combat Butler", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7561": { + "imdb_id": "tt0983962", + "title": "Hayate, the Combat Butler", + "fromSeason": 4, + "fromEpisode": 1 + }, + "4133": { + "imdb_id": "tt0983962", + "title": "Hayate, the Combat Butler", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8451": { + "imdb_id": "tt0983962", + "title": "Hayate, the Combat Butler", + "fromSeason": 0, + "fromEpisode": 3 + }, + "1828": { + "imdb_id": "tt0203895", + "title": "The Sea Prince and the Fire Child" + }, + "1829": { + "imdb_id": "tt0976008", + "title": "El Cazador de la Bruja" + }, + "1830": { + "imdb_id": "tt1148224", + "title": "Shining Tears X Wind" + }, + "1833": { + "imdb_id": "tt1587394", + "title": "Lovely Complex" + }, + "1835": { + "imdb_id": "tt1333699", + "title": "Princess Comet" + }, + "1837": { + "imdb_id": "tt0288986", + "title": "Magic Star Magical Emi" + }, + "1840": { + "imdb_id": "tt0108966", + "title": "Tonde Buurin" + }, + "1842": { + "imdb_id": "tt0131160", + "title": "Cat's Eye" + }, + "1843": { + "imdb_id": "tt0288987", + "title": "Magical Angel Creamy Mami" + }, + "1888": { + "imdb_id": "tt0156403", + "title": "Super Dimension Century Orguss" + }, + "1896": { + "imdb_id": "tt0303150", + "title": "Shinesman" + }, + "1901": { + "imdb_id": "tt3682068", + "title": "Tattoon Master" + }, + "1903": { + "imdb_id": "tt1739796", + "title": "My Bride Is a Mermaid" + }, + "1904": { + "imdb_id": "tt1437145", + "title": "Tôka gettan" + }, + "1905": { + "imdb_id": "tt1188295", + "title": "Kisudamu" + }, + "1914": { + "imdb_id": "tt1566464", + "title": "Shin Captain Tsubasa" + }, + "1925": { + "imdb_id": "tt0374472", + "title": "Brave Raideen" + }, + "1926": { + "imdb_id": "tt1161697", + "title": "True Tears" + }, + "1930": { + "imdb_id": "tt0302758", + "title": "Mari iyagi" + }, + "1939": { + "imdb_id": "tt1238937", + "title": "Blue Dragon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3517": { + "imdb_id": "tt1238937", + "title": "Blue Dragon", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1945": { + "imdb_id": "tt6010486", + "title": "No Money" + }, + "1947": { + "imdb_id": "tt0296386", + "title": "The Wonderful Adventures of Nils" + }, + "1948": { + "imdb_id": "tt0997284", + "title": "Ohedo Rocket", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1952": { + "imdb_id": "tt1114855", + "title": "Bakugan Battle Brawlers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4062": { + "imdb_id": "tt1114855", + "title": "Bakugan Battle Brawlers", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4944": { + "imdb_id": "tt1114855", + "title": "Bakugan Battle Brawlers", + "fromSeason": 3, + "fromEpisode": 1 + }, + "6131": { + "imdb_id": "tt1114855", + "title": "Bakugan Battle Brawlers", + "fromSeason": 4, + "fromEpisode": 1 + }, + "42166": { + "imdb_id": "tt9527662", + "title": "Bakugan: Battle Planet", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43043": { + "imdb_id": "tt9527662", + "title": "Bakugan: Battle Planet", + "fromSeason": 2, + "fromEpisode": 1 + }, + "1953": { + "imdb_id": "tt2006485", + "title": "Kotetsushin Jeeg" + }, + "1954": { + "imdb_id": "tt0985492", + "title": "Toward the Terra" + }, + "1956": { + "imdb_id": "tt0996277", + "title": "Sukaruman" + }, + "1958": { + "imdb_id": "tt1125794", + "title": "Aika R-16: Virgin Mission" + }, + "1959": { + "imdb_id": "tt1033796", + "title": "Dennou Coil" + }, + "1961": { + "imdb_id": "tt1177056", + "title": "Dojin Work" + }, + "1962": { + "imdb_id": "tt1118804", + "fanartLogoId": "29387", + "title": "Clannad", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3505": { + "imdb_id": "tt1118804", + "fanartLogoId": "29388", + "title": "Clannad: After Story", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3438": { + "imdb_id": "tt1118804", + "title": "Clannad: After Story", + "fromSeason": 0, + "fromEpisode": 2 + }, + "4529": { + "imdb_id": "tt1118804", + "title": "Clannad: After Story", + "fromSeason": 0, + "fromEpisode": 3 + }, + "1544": { + "imdb_id": "tt0997274", + "title": "Clannad" + }, + "1991": { + "imdb_id": "tt0377231", + "title": "Zambot 3" + }, + "1993": { + "imdb_id": "tt0084881", + "title": "Waga seishun no Arcadia" + }, + "1995": { + "imdb_id": "tt0434660", + "title": "Ayatsuri Sakon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2006": { + "imdb_id": "tt1483553", + "title": "Kishin Taisen Gigantic Formula" + }, + "2007": { + "imdb_id": "tt1233119", + "title": "Shigurui: Death Frenzy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2012": { + "imdb_id": "tt0293993", + "title": "Rock 'n Roll Kids" + }, + "2015": { + "imdb_id": "tt0294105", + "title": "The Legend of Hikari" + }, + "2016": { + "imdb_id": "tt0070968", + "title": "Heidi: A Girl of the Alps" + }, + "2021": { + "imdb_id": "tt0260622", + "title": "Angel" + }, + "2025": { + "imdb_id": "tt0421426", + "title": "Panda Zetto: The Robonimation" + }, + "2027": { + "imdb_id": "tt0808506", + "title": "The Girl Who Leapt Through Time" + }, + "2032": { + "imdb_id": "tt0144719", + "title": "Karasu Tengu Kabuto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3214": { + "imdb_id": "tt0104583", + "title": "Karasu tengu Kabuto: Ôgon no me no kemono" + }, + "2033": { + "imdb_id": "tt0991060", + "title": "Rakugo tennyo Oyui" + }, + "2034": { + "imdb_id": "tt1851597", + "title": "Seraphim Call" + }, + "2035": { + "imdb_id": "tt1992935", + "title": "Mononoke" + }, + "2039": { + "imdb_id": "tt1334722", + "title": "Baccano!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2040": { + "imdb_id": "tt0288355", + "title": "Devilman" + }, + "2041": { + "imdb_id": "tt0169473", + "title": "TranZor Z" + }, + "2042": { + "imdb_id": "tt0462653", + "title": "Xabungle", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2043": { + "imdb_id": "tt0180345", + "title": "Dancouga: Super Beast Machine God" + }, + "2047": { + "imdb_id": "tt1321971", + "title": "Ask Dr. Rin!" + }, + "2056": { + "imdb_id": "tt0086817", + "title": "The Transformers" + }, + "2066": { + "imdb_id": "tt0238782", + "title": "Flint: The Time Detective" + }, + "2067": { + "imdb_id": "tt10955388", + "title": "In the Beginning: The Bible Stories", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2068": { + "imdb_id": "tt0488465", + "title": "Red Baron", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2072": { + "imdb_id": "tt0341765", + "title": "Kakutou ryouri densetsu bistro recipe", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2073": { + "imdb_id": "tt0331167", + "title": "Cyber Team in Akihabara" + }, + "2077": { + "imdb_id": "tt0158455", + "title": "Iczer Reborn" + }, + "2083": { + "imdb_id": "tt8276656", + "title": "Missing Links" + }, + "2099": { + "imdb_id": "tt0233857", + "title": "Strange Love" + }, + "2100": { + "imdb_id": "tt2061039", + "title": "Dog Soldiers: Legacy" + }, + "2110": { + "imdb_id": "tt11189300", + "title": "Bucky: The Incredible Kid", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2113": { + "imdb_id": "tt0294002", + "title": "Anime san jushi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2117": { + "imdb_id": "tt1116638", + "title": "Tetsujin 28" + }, + "2142": { + "imdb_id": "tt0421480", + "title": "Virus Buster Serge" + }, + "2147": { + "imdb_id": "tt1305638", + "title": "Rental Magica" + }, + "2159": { + "imdb_id": "tt1746356", + "title": "Faiyâsutômu" + }, + "2160": { + "imdb_id": "tt0211793", + "title": "Cybersix" + }, + "2166": { + "imdb_id": "tt0068792", + "title": "Gatchaman" + }, + "2167": { + "imdb_id": "tt0338621", + "title": "Kirby: Right Back at Ya!" + }, + "2168": { + "imdb_id": "tt0382477", + "title": "SD Gundam Force", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2175": { + "imdb_id": "tt0804905", + "title": "Digimon: Revenge of Diaboromon" + }, + "2177": { + "imdb_id": "tt0106010", + "title": "Ghost Sweeper Mikami" + }, + "2178": { + "imdb_id": "tt1690397", + "title": "Tomorrow's Joe", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2179": { + "imdb_id": "tt1125577", + "title": "Kodomo no jikan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3515": { + "imdb_id": "tt1125577", + "title": "Kodomo no jikan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2182": { + "imdb_id": "tt0236924", + "title": "Sazae-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2185": { + "imdb_id": "tt0756269", + "title": "Gokudô-kun man'yûki" + }, + "2194": { + "imdb_id": "tt1121794", + "title": "Sword of the Stranger" + }, + "2222": { + "imdb_id": "tt1024214", + "title": "Ghost in the Shell: S.A.C. 2nd GIG - Individual Eleven" + }, + "2223": { + "imdb_id": "tt1024215", + "title": "Ghost in the Shell: Stand Alone Complex - The Laughing Man" + }, + "2230": { + "imdb_id": "tt0093399", + "title": "Legend of the Forest" + }, + "2241": { + "imdb_id": "tt0299398", + "title": "Tama of Third Street: Have You Seen My Tama?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2245": { + "imdb_id": "tt0988982", + "title": "Naruto Shippûden: The Movie" + }, + "3606": { + "imdb_id": "tt1160524", + "title": "Naruto Shippûden The Movie: Bonds" + }, + "4520": { + "imdb_id": "tt1481363", + "title": "Naruto Shippûden: The Movie 3: Inheritors of the Will of Fire" + }, + "5266": { + "imdb_id": "tt1703048", + "title": "Naruto Shippûden: The Lost Tower" + }, + "6256": { + "imdb_id": "tt1999167", + "title": "Naruto Shippuden the Movie: Blood Prison" + }, + "7008": { + "imdb_id": "tt2290828", + "title": "Road to Ninja: Naruto the Movie" + }, + "7543": { + "imdb_id": "tt3717532", + "title": "The Last: Naruto the Movie" + }, + "10089": { + "imdb_id": "tt4618398", + "title": "Boruto: Naruto the Movie" + }, + "2246": { + "imdb_id": "tt0113169", + "title": "Galaxy Fraulein Yuna" + }, + "2247": { + "imdb_id": "tt0363627", + "title": "Galaxy Fraulein Yuna Returns: Dawn of the Dark Sisters" + }, + "2249": { + "imdb_id": "tt1068993", + "title": "School Days", + "fromSeason": 1, + "fromEpisode": 1 + }, + "678": { + "imdb_id": "tt1068993", + "title": "School Days", + "fromSeason": 0, + "fromEpisode": 1 + }, + "3235": { + "imdb_id": "tt1068993", + "title": "School Days", + "fromSeason": 0, + "fromEpisode": 2 + }, + "2940": { + "imdb_id": "tt1068993", + "title": "School Days", + "fromSeason": 0, + "fromEpisode": 3 + }, + "2254": { + "imdb_id": "tt2641210", + "title": "GEAR senshi Dendô" + }, + "2256": { + "imdb_id": "tt2091114", + "title": "Rumiko Takahashi Anthology" + }, + "2259": { + "imdb_id": "tt0983977", + "title": "Onegai My Melody" + }, + "2264": { + "imdb_id": "tt1411810", + "title": "Good Luck! Ninomiya-kun" + }, + "2265": { + "imdb_id": "tt1684707", + "title": "Chance Pop Session" + }, + "2266": { + "imdb_id": "tt0110652", + "title": "Go Nagai's New Cutey Honey" + }, + "2270": { + "imdb_id": "tt2220260", + "title": "Papuwa" + }, + "2288": { + "imdb_id": "tt2296350", + "title": "Izumo: Takeki Tsurugi no Senki" + }, + "2289": { + "imdb_id": "tt0297994", + "title": "Jungle de Ikou!" + }, + "2290": { + "imdb_id": "tt8024248", + "title": "Kekko Kamen" + }, + "2308": { + "imdb_id": "tt0305094", + "title": "Robin Hood's Big Adventure" + }, + "2309": { + "imdb_id": "tt0168341", + "title": "Swiss Family Robinson" + }, + "2311": { + "imdb_id": "tt0168297", + "title": "Story of the Alps: My Annette" + }, + "2312": { + "imdb_id": "tt0168375", + "title": "Little Princess Sara" + }, + "2313": { + "imdb_id": "tt0168283", + "title": "Little Women" + }, + "2320": { + "imdb_id": "tt0168376", + "title": "Little Prince Cedie" + }, + "2322": { + "imdb_id": "tt0168393", + "title": "Story of the Trapp Family" + }, + "2324": { + "imdb_id": "tt0168371", + "title": "Romeo's Blue Skies", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2325": { + "imdb_id": "tt0081648", + "title": "Terra e..." + }, + "2326": { + "imdb_id": "tt0122336", + "title": "Captain Future" + }, + "2329": { + "imdb_id": "tt0997194", + "title": "Code-E" + }, + "2332": { + "imdb_id": "tt0204102", + "title": "The Adventures of Pinocchio" + }, + "2333": { + "imdb_id": "tt0305053", + "title": "The Yearling" + }, + "2334": { + "imdb_id": "tt0283750", + "title": "The Jungle Book: The Adventures of Mowgli" + }, + "2341": { + "imdb_id": "tt0168293", + "title": "Rascal the Raccoon" + }, + "2342": { + "imdb_id": "tt0168391", + "title": "The Adventures of Tom Sawyer" + }, + "2343": { + "imdb_id": "tt0313133", + "title": "Taotao ehonkan sekai doubutsu-banashi" + }, + "2344": { + "imdb_id": "tt0135114", + "title": "Around the World with Willy Fog" + }, + "2346": { + "imdb_id": "tt1134000", + "title": "Mobile Suit Gundam 00", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3355": { + "imdb_id": "tt1134000", + "title": "Mobile Suit Gundam 00", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4509": { + "imdb_id": "tt1726286", + "title": "Mobile Suit Gundam 00: A Wakening of the Trailblazer" + }, + "2347": { + "imdb_id": "tt0085092", + "title": "Armored Trooper VOTOMS", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2351": { + "imdb_id": "tt7162308", + "title": "Armored Trooper VOTOMS: Shining Heresy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2887": { + "imdb_id": "tt8964354", + "title": "Armored Trooper VOTOMS: Pailsen Files", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5172": { + "imdb_id": "tt8964432", + "title": "Armored Trooper VOTOMS: Phantom Chapter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2357": { + "imdb_id": "tt1155650", + "title": "Kara no Kyoukai: The Garden of Sinners - Overlooking View" + }, + "3248": { + "imdb_id": "tt1155651", + "title": "Kara no Kyoukai: The Garden of Sinners, A Study in Murder: Part 1" + }, + "3249": { + "imdb_id": "tt1155652", + "title": "Kara no Kyoukai: The Garden of Sinners - Remaining Sense of Pain" + }, + "3545": { + "imdb_id": "tt1233474", + "title": "Kara no Kyoukai: The Garden of Sinners - The Hollow Shrinel" + }, + "3546": { + "imdb_id": "tt1278060", + "title": "Kara no Kyoukai: The Garden of Sinners - Paradox Spiral" + }, + "3983": { + "imdb_id": "tt1343089", + "title": "Kara no Kyoukai: The Garden of Sinners - Oblivion Recorder - A Fairytale" + }, + "3984": { + "imdb_id": "tt1345776", + "title": "Kara no Kyoukai: The Garden of Sinners - A Study in Murder - Part 2" + }, + "4637": { + "imdb_id": "tt9277666", + "title": "The Garden of Sinners - Remix: Gate of Seventh Heaven" + }, + "4804": { + "imdb_id": "tt3868344", + "title": "The Garden of Sinners Epilogue" + }, + "7167": { + "imdb_id": "tt2983564", + "title": "Kara no Kyoukai: Mirai fukuin" + }, + "8305": { + "imdb_id": "tt8558954", + "title": "Kara no Kyoukai: Mirai Fukuin - Extra Chorus" + }, + "2358": { + "imdb_id": "tt1119194", + "title": "Piano no mori" + }, + "2359": { + "imdb_id": "tt1130144", + "title": "Da Capo II", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2360": { + "imdb_id": "tt1156240", + "title": "Ghost Hound" + }, + "2366": { + "imdb_id": "tt1190620", + "title": "Kenkô zenrakei suieibu umishô" + }, + "2367": { + "imdb_id": "tt1515986", + "title": "Mushiuta" + }, + "2368": { + "imdb_id": "tt1094233", + "title": "Sky Girls" + }, + "2369": { + "imdb_id": "tt1169193", + "title": "Goodbye, Mr. Despair", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2871": { + "imdb_id": "tt1169193", + "title": "Goodbye, Mr. Despair", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4537": { + "imdb_id": "tt1169193", + "title": "Goodbye, Mr. Despair", + "fromSeason": 3, + "fromEpisode": 1 + }, + "3832": { + "imdb_id": "tt1169193", + "title": "Goodbye, Mr. Despair", + "fromSeason": 0, + "fromEpisode": 3 + }, + "4847": { + "imdb_id": "tt1169193", + "title": "Goodbye, Mr. Despair", + "fromSeason": 0, + "fromEpisode": 6 + }, + "6196": { + "imdb_id": "tt1169193", + "title": "Goodbye, Mr. Despair", + "fromSeason": 0, + "fromEpisode": 8 + }, + "2370": { + "imdb_id": "tt4183328", + "title": "Digimon Savers: Ultimate Power! Activate Burst Mode!" + }, + "2372": { + "imdb_id": "tt3385730", + "title": "Wangan Midnight" + }, + "2382": { + "imdb_id": "tt0296435", + "title": "Treasure Island", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2384": { + "imdb_id": "tt1180327", + "title": "Spider Riders: Resurrected Sun" + }, + "2450": { + "imdb_id": "tt0293994", + "title": "Red Spark Zillion" + }, + "2458": { + "imdb_id": "tt0158569", + "title": "Crusher Joe The OVAs" + }, + "2461": { + "imdb_id": "tt2639316", + "title": "Uchû kaizoku Mito no daibôken" + }, + "2466": { + "imdb_id": "tt0962742", + "title": "Steam Detectives" + }, + "2467": { + "imdb_id": "tt1204829", + "title": "The Racing Brothers, Lets & Go", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2482": { + "imdb_id": "tt0158568", + "title": "Crusher Joe" + }, + "2500": { + "imdb_id": "tt5009268", + "title": "Monkî tân" + }, + "2501": { + "imdb_id": "tt5009268", + "title": "Monkî tân" + }, + "2504": { + "imdb_id": "tt1092560", + "title": "Potemayo" + }, + "2508": { + "imdb_id": "tt0403751", + "title": "Dash!! Kappei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2509": { + "imdb_id": "tt3897812", + "title": "Heisei Inu Monogatari Bow" + }, + "2512": { + "imdb_id": "tt0466352", + "title": "Prince of Tennis: The National Tournament Semifinals", + "fromSeason": 9, + "fromEpisode": 1 + }, + "2514": { + "imdb_id": "tt0159363", + "title": "Cleopatra D.C." + }, + "2519": { + "imdb_id": "tt0923811", + "title": "Evangelion: 1.0 You Are (Not) Alone" + }, + "2522": { + "imdb_id": "tt0903437", + "title": "Iga-no Kabamaru" + }, + "2528": { + "imdb_id": "tt0088028", + "title": "SF Shinseiki Lensman" + }, + "2531": { + "imdb_id": "tt0158634", + "title": "Genocyber", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2538": { + "imdb_id": "tt0332056", + "title": "Fire Emblem" + }, + "2539": { + "imdb_id": "tt1452420", + "title": "Thumbelina: A Magical Story" + }, + "2542": { + "imdb_id": "tt0997299", + "title": "Bakegyamon" + }, + "2551": { + "imdb_id": "tt1132202", + "title": "Dragonaut: The Resonance" + }, + "2556": { + "imdb_id": "tt0270761", + "title": "Candy Candy" + }, + "2559": { + "imdb_id": "tt0142214", + "title": "Densetsu no yûsha Da Garn" + }, + "2560": { + "imdb_id": "tt0080217", + "title": "Hana no mahoutsukai Mary Bell" + }, + "2567": { + "imdb_id": "tt0098737", + "title": "Alfred J. Kwak" + }, + "2574": { + "imdb_id": "tt0461109", + "title": "Time Trouble Tondekeman" + }, + "2576": { + "imdb_id": "tt2435192", + "title": "Bamboo Bears" + }, + "2578": { + "imdb_id": "tt0304998", + "title": "Barbapapa autour du monde" + }, + "2579": { + "imdb_id": "tt0277467", + "title": "The Arabian Nights: Adventures of Sinbad" + }, + "2582": { + "imdb_id": "tt0196050", + "title": "Nobody's Boy Remi" + }, + "2586": { + "imdb_id": "tt2171086", + "title": "Ani*Kuri15" + }, + "2589": { + "imdb_id": "tt3650462", + "title": "Patalliro!" + }, + "2590": { + "imdb_id": "tt0278855", + "title": "Vicky the Viking" + }, + "2624": { + "imdb_id": "tt0876563", + "title": "Ponyo" + }, + "2625": { + "imdb_id": "tt1161426", + "title": "Ibarado time" + }, + "2646": { + "imdb_id": "tt5765272", + "title": "Tomorrow's Joe 2", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2647": { + "imdb_id": "tt1690442", + "title": "Tomorrow's Joe 2 (Movie)" + }, + "2648": { + "imdb_id": "tt1133480", + "title": "My Guardian Characters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4019": { + "imdb_id": "tt1133480", + "title": "My Guardian Characters", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4861": { + "imdb_id": "tt1133480", + "title": "My Guardian Characters", + "fromSeason": 3, + "fromEpisode": 1 + }, + "2649": { + "imdb_id": "tt1132203", + "title": "Ef: A Tale of Memories.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3784": { + "imdb_id": "tt1132203", + "title": "Ef: A Tale of Memories.", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2650": { + "imdb_id": "tt1145380", + "title": "Myself; Yourself" + }, + "2651": { + "imdb_id": "tt1144841", + "title": "Kimikiss: Pure Rouge" + }, + "2653": { + "imdb_id": "tt1485405", + "title": "Moonlight Mile 2nd shîzun: Touch down" + }, + "2655": { + "imdb_id": "tt1160471", + "title": "Mokke" + }, + "2657": { + "imdb_id": "tt2209521", + "title": "Shiawase-sô no Okojo-san" + }, + "2663": { + "imdb_id": "tt1118543", + "title": "Sketchbook: Full Colors" + }, + "2681": { + "imdb_id": "tt1132205", + "title": "Minami-ke", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2868": { + "imdb_id": "tt1132205", + "title": "Minami-ke", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3959": { + "imdb_id": "tt1132205", + "title": "Minami-ke", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7128": { + "imdb_id": "tt1132205", + "title": "Minami-ke", + "fromSeason": 4, + "fromEpisode": 1 + }, + "2682": { + "imdb_id": "tt1139447", + "title": "Blue Drop: Tenshi tachi no gikyoku" + }, + "2683": { + "imdb_id": "tt1139539", + "title": "Fantastic Detective Labyrinth", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2684": { + "imdb_id": "tt1158671", + "title": "Spice and Wolf", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4063": { + "imdb_id": "tt1158671", + "title": "Spice and Wolf", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4382": { + "imdb_id": "tt1158671", + "title": "Spice and Wolf", + "fromSeason": 0, + "fromEpisode": 4 + }, + "2693": { + "imdb_id": "tt0421455", + "title": "New Getter Robo" + }, + "2696": { + "imdb_id": "tt0930902", + "title": "Midori" + }, + "2699": { + "imdb_id": "tt6565980", + "title": "Majin Tantei Nougami Neuro" + }, + "2700": { + "imdb_id": "tt1155604", + "title": "Bamboo Blade" + }, + "2706": { + "imdb_id": "tt1821149", + "title": "Rosario + Vampire", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2712": { + "imdb_id": "tt1143514", + "title": "Tales of Agriculture", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6957": { + "imdb_id": "tt1143514", + "title": "Tales of Agriculture", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3144": { + "imdb_id": "tt1143514", + "title": "Tales of Agriculture", + "fromSeason": 0, + "fromEpisode": 1 + }, + "2713": { + "imdb_id": "tt1202625", + "title": "Gambling Apocalypse Kaiji", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2719": { + "imdb_id": "tt0856156", + "title": "Yatterman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2720": { + "imdb_id": "tt0206516", + "title": "Tiger Mask", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4294": { + "imdb_id": "tt0206516", + "title": "Tiger Mask", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2721": { + "imdb_id": "tt0843548", + "title": "Kaiketsu Zorro" + }, + "2723": { + "imdb_id": "tt1867710", + "title": "Crush Gear Turbo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2724": { + "imdb_id": "tt0095512", + "title": "Legend of the Galactic Heroes: My Conquest Is the Sea of Stars" + }, + "2725": { + "imdb_id": "tt2661788", + "title": "Legend of the Galactic Heroes Gaiden: Golden Wings" + }, + "2726": { + "imdb_id": "tt0107382", + "title": "Legend of the Galactic Heroes: Overture to a New War" + }, + "2728": { + "imdb_id": "tt3391896", + "title": "Gu-Gu Ganmo" + }, + "2732": { + "imdb_id": "tt0121655", + "title": "Choppy and the Princess" + }, + "2738": { + "imdb_id": "tt0810831", + "title": "Digimon: Battle of Adventurers" + }, + "2739": { + "imdb_id": "tt0810833", + "title": "Digimon: Runaway Locomon" + }, + "2742": { + "imdb_id": "tt2038118", + "title": "Soar High! Isami" + }, + "2758": { + "imdb_id": "tt1772619", + "title": "Ninja Robots" + }, + "2764": { + "imdb_id": "tt8922630", + "title": "Ozanari Dungeon" + }, + "2773": { + "imdb_id": "tt0083417", + "title": "The Flying House" + }, + "2775": { + "imdb_id": "tt2800436", + "title": "The Laughing Salesman", + "fromSeason": 2, + "fromEpisode": 1 + }, + "2783": { + "imdb_id": "tt1492151", + "title": "Cencoroll" + }, + "5749": { + "imdb_id": "tt3741646", + "title": "Cencoroll 2" + }, + "2785": { + "imdb_id": "tt1056437", + "title": "The Sky Crawlers" + }, + "2791": { + "imdb_id": "tt8531724", + "title": "My 2c that may make NO sense" + }, + "2793": { + "imdb_id": "tt9173738", + "title": "Jûsenshi Gulkeeva" + }, + "2795": { + "imdb_id": "tt3476730", + "title": "F-Zero: Farukon densetsu" + }, + "2802": { + "imdb_id": "tt6895186", + "title": "Kaze no naka no shoujo: kinpatsu no Jeni" + }, + "2804": { + "imdb_id": "tt1193110", + "title": "Papillon Rose" + }, + "2811": { + "imdb_id": "tt2207257", + "title": "Tokimeki Tonight" + }, + "2815": { + "imdb_id": "tt3866702", + "title": "Ashita tenki ni naare" + }, + "2816": { + "imdb_id": "tt5304494", + "title": "Christopher Columbus" + }, + "2817": { + "imdb_id": "tt3629520", + "title": "Dragon's Heaven" + }, + "2818": { + "imdb_id": "tt0294158", + "title": "Ochame kami monogatari koro koro Pollon" + }, + "2824": { + "imdb_id": "tt0838345", + "title": "BASToF Syndrome" + }, + "2826": { + "imdb_id": "tt0415906", + "title": "Science Ninja Team Gatchaman" + }, + "2827": { + "imdb_id": "tt0233780", + "title": "Gatchaman" + }, + "2832": { + "imdb_id": "tt0168346", + "title": "Katri, Girl of the Meadows" + }, + "2835": { + "imdb_id": "tt1174766", + "title": "Ayakashi" + }, + "2836": { + "imdb_id": "tt1715210", + "title": "Time of Eve" + }, + "2845": { + "imdb_id": "tt0057730", + "title": "Jonny Quest" + }, + "2850": { + "imdb_id": "tt0213329", + "title": "Saban's Adventures of the Little Mermaid" + }, + "2857": { + "imdb_id": "tt6103384", + "title": "Ikoku Irokoi Romantan" + }, + "2872": { + "imdb_id": "tt1161671", + "title": "They are my noble masters" + }, + "2879": { + }, + "2893": { + "imdb_id": "tt6464458", + "title": "Born to Kill" + }, + "2894": { + "imdb_id": "tt1196655", + "title": "My-Otome 0~S.ifr~" + }, + "2898": { + "imdb_id": "tt0178148", + "title": "M.U.S.C.L.E.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2908": { + "imdb_id": "tt0288961", + "title": "Akko's Secret" + }, + "2911": { + "imdb_id": "tt0856794", + "title": "Kidô senshi Gundam Evolve" + }, + "2918": { + "imdb_id": "tt1161657", + "title": "H2O: Footprints in the Sand" + }, + "2923": { + "imdb_id": "tt1833428", + "title": "Daitarn 3" + }, + "2928": { + "imdb_id": "tt0157222", + "title": "Dr. Slump" + }, + "2929": { + "imdb_id": "tt1051943", + "title": "Montana Jones" + }, + "2930": { + "imdb_id": "tt3086402", + "title": "Armored Police Metal Jack", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2934": { + "imdb_id": "tt1216232", + "title": "Wagaya no oinari sama." + }, + "2942": { + "imdb_id": "tt10958280", + "title": "Stop!! Hibari-kun!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2946": { + "imdb_id": "tt1196027", + "title": "Munemoshune no musume tachi" + }, + "2953": { + "imdb_id": "tt0288991", + "title": "Mahô tsukai Sarî" + }, + "2954": { + "imdb_id": "tt1216131", + "title": "Kurenai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5188": { + "imdb_id": "tt1216131", + "title": "Kurenai", + "fromSeason": 0, + "fromEpisode": 1 + }, + "2955": { + "imdb_id": "tt1201681", + "title": "Amatsuki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2958": { + "imdb_id": "tt1213889", + "title": "Real Drive" + }, + "2975": { + "imdb_id": "tt0288993", + "title": "Witch Girl Meg" + }, + "2976": { + "imdb_id": "tt1192173", + "title": "Bus Gamer" + }, + "2984": { + "imdb_id": "tt3124918", + "title": "Rokushin gattai Goddomazu" + }, + "2989": { + "imdb_id": "tt1215996", + "title": "Blassreiter" + }, + "2996": { + "imdb_id": "tt1161688", + "title": "Shigofumi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3756": { + "imdb_id": "tt1161688", + "title": "Shigofumi", + "fromSeason": 1, + "fromEpisode": 13 + }, + "2999": { + "imdb_id": "tt1161683", + "title": "Porufi no nagai tabi" + }, + "3000": { + "imdb_id": "tt0168349", + "title": "Meiken rasshî" + }, + "3004": { + "imdb_id": "tt7927422", + "title": "Prologue of Blame!" + }, + "3008": { + "imdb_id": "tt0294118", + "title": "The Casebook of Charlotte Holmes" + }, + "3010": { + "imdb_id": "tt1206627", + "title": "Mister Ajikko" + }, + "3017": { + "imdb_id": "tt0160503", + "title": "Mad Bull 34" + }, + "3018": { + "imdb_id": "tt0098886", + "title": "The Wonderful Galaxy of Oz" + }, + "3021": { + "imdb_id": "tt1216222", + "title": "To Love-Ru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5626": { + "imdb_id": "tt1216222", + "title": "To Love-Ru", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7007": { + "imdb_id": "tt1216222", + "title": "To Love-Ru", + "fromSeason": 3, + "fromEpisode": 1 + }, + "10078": { + "imdb_id": "tt1216222", + "title": "To Love-Ru", + "fromSeason": 4, + "fromEpisode": 1 + }, + "4233": { + "imdb_id": "tt1216222", + "title": "To Love-Ru", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7047": { + "imdb_id": "tt1216222", + "title": "To Love-Ru", + "fromSeason": 0, + "fromEpisode": 7 + }, + "11418": { + "imdb_id": "tt1216222", + "title": "To Love-Ru", + "fromSeason": 0, + "fromEpisode": 13 + }, + "14159": { + "imdb_id": "tt1216222", + "title": "To Love-Ru", + "fromSeason": 0, + "fromEpisode": 16 + }, + "3029": { + "imdb_id": "tt1309395", + "title": "Kemeko Deluxe!" + }, + "3032": { + "imdb_id": "tt1266617", + "fanartLogoId": "61717", + "title": "Nogizaka Haruka no himitsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4387": { + "imdb_id": "tt1266617", + "fanartLogoId": "61718", + "title": "Nogizaka Haruka no himitsu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6410": { + "imdb_id": "tt1266617", + "fanartLogoId": "61773", + "title": "Nogizaka Haruka no himitsu", + "fromSeason": 0, + "fromEpisode": 1 + }, + "3033": { + "imdb_id": "tt1216196", + "title": "S.A: Supesharu ê" + }, + "3042": { + "imdb_id": "tt3904722", + "title": "Madonna" + }, + "3056": { + "imdb_id": "tt1216124", + "title": "Kanokon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3774": { + "imdb_id": "tt1216124", + "title": "Kanokon", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4715": { + "imdb_id": "tt1216124", + "title": "Kanokon", + "fromSeason": 0, + "fromEpisode": 14 + }, + "3065": { + "imdb_id": "tt1161680", + "title": "Noramimi" + }, + "3093": { + "imdb_id": "tt1215542", + "title": "Allison & Lillia" + }, + "3113": { + "imdb_id": "tt1216150", + "title": "Macross Frontier", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4051": { + "imdb_id": "tt1548563", + "title": "Macross Frontier: The False Songstress" + }, + "4903": { + "imdb_id": "tt1566528", + "title": "Macross Frontier: The Wings of Goodbye" + }, + "3118": { + "imdb_id": "tt1216133", + "title": "Kyôran kazoku nikki" + }, + "3117": { + "imdb_id": "tt1524993", + "title": "Kodai Oja Kyoryu Kingu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4259": { + "imdb_id": "tt1524993", + "title": "Kodai Oja Kyoryu Kingu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3120": { + "imdb_id": "tt0275838", + "title": "Getta Robot", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3639": { + "imdb_id": "tt0275838", + "title": "Getta Robot", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4039": { + "imdb_id": "tt0275838", + "title": "Getta Robot", + "fromSeason": 3, + "fromEpisode": 1 + }, + "3128": { + "imdb_id": "tt1214085", + "title": "Soul Eater" + }, + "3130": { + "imdb_id": "tt1409068", + "title": "Tears to Tiara" + }, + "3134": { + "imdb_id": "tt5317270", + "title": "Yotoden: Chronicle of the Warlord Period" + }, + "3140": { + "imdb_id": "tt1216223", + "title": "Library Wars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4060": { + "imdb_id": "tt1216223", + "title": "Library Wars", + "fromSeason": 0, + "fromEpisode": 1 + }, + "3143": { + "imdb_id": "tt1216123", + "title": "Kamen No Maid Guy" + }, + "3145": { + "imdb_id": "tt0292823", + "title": "Nanako SOS" + }, + "3148": { + "imdb_id": "tt0284735", + "title": "Il était une fois... la vie" + }, + "3151": { + "imdb_id": "tt1130144", + "title": "Da Capo II", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3159": { + "imdb_id": "tt1169180", + "title": "Kaiketsu zorori" + }, + "3172": { + "imdb_id": "tt1308086", + "title": "Magician's Academy!" + }, + "3173": { + "imdb_id": "tt1216159", + "title": "Nabari no Ou" + }, + "3176": { + "imdb_id": "tt0288984", + "title": "Magical Idol Pastel Yumi" + }, + "3180": { + "imdb_id": "tt1230400", + "title": "Telepathy Shojo Ran" + }, + "3182": { + "imdb_id": "tt0156215", + "title": "Genesis Climber Mospeada" + }, + "3201": { + "imdb_id": "tt1209386", + "title": "Kaiba" + }, + "3202": { + "imdb_id": "tt1354538", + "title": "Detroit Metal City", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3207": { + "imdb_id": "tt1161659", + "title": "Graveyard Kitaro" + }, + "3211": { + "imdb_id": "tt0074705", + "title": "Jack and the Beanstalk" + }, + "3218": { + "imdb_id": "tt1214373", + "title": "Mischievous Kiss" + }, + "3237": { + "imdb_id": "tt0083780", + "title": "Dogtanian and the Three Muskehounds" + }, + "3240": { + "imdb_id": "tt4087106", + "title": "Sonic Soldier Borgman 2: A New Century 2058" + }, + "3245": { + "imdb_id": "tt0293726", + "title": "Cubix: Robots for Everyone" + }, + "3250": { + "imdb_id": "tt0860906", + "title": "Evangelion: 2.0 You Can (Not) Advance" + }, + "3251": { + "imdb_id": "tt0860907", + "title": "Evangelion: 3.0 You Can (Not) Redo" + }, + "3252": { + "imdb_id": "tt2458948", + "title": "Evangelion: 3.0+1.0 Thrice Upon a Time" + }, + "3265": { + "imdb_id": "tt0296416", + "title": "The Legend of Snow White" + }, + "3266": { + "imdb_id": "tt0179584", + "title": "The Littl' Bits" + }, + "3287": { + "imdb_id": "tt0296297", + "title": "Ai no gakko cuore monogatari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3360": { + "imdb_id": "tt0950730", + "title": "Clockwork Fighters: Hiwou's Wari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3319": { + "imdb_id": "tt0303508", + "title": "Paris no Isabelle", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3334": { + "imdb_id": "tt1334722", + "title": "Baccano!", + "fromSeason": 1, + "fromEpisode": 14 + }, + "3378": { + "imdb_id": "tt1244315", + "title": "Kannagi: Crazy Shrine Maidens", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4369": { + "imdb_id": "tt1244315", + "title": "Kannagi: Crazy Shrine Maidens", + "fromSeason": 1, + "fromEpisode": 14 + }, + "3387": { + "imdb_id": "tt1196094", + "title": "Yu☆Gi☆Oh! 5D's", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3389": { + "imdb_id": "tt1245698", + "title": "Birdy the Mighty Decode", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3915": { + "imdb_id": "tt1245698", + "title": "Birdy the Mighty Decode", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4539": { + "imdb_id": "tt1245698", + "title": "Birdy the Mighty Decode", + "fromSeason": 0, + "fromEpisode": 1 + }, + "3405": { + "imdb_id": "tt2455528", + "title": "Dream Hunter Rem", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3425": { + "imdb_id": "tt1216257", + "title": "Zettai Karen Children", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4304": { + "imdb_id": "tt1216257", + "title": "Zettai Karen Children", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5105": { + "imdb_id": "tt1216257", + "title": "Zettai Karen Children", + "fromSeason": 0, + "fromEpisode": 2 + }, + "5611": { + "imdb_id": "tt1216257", + "title": "Zettai Karen Children", + "fromSeason": 0, + "fromEpisode": 3 + }, + "3426": { + "imdb_id": "tt1166871", + "title": "Golgo 13", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3433": { + "imdb_id": "tt0466352", + "title": "Prince of Tennis: The National Tournament Finals", + "fromSeason": 10, + "fromEpisode": 1 + }, + "3441": { + "imdb_id": "tt1339238", + "title": "Sekirei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4029": { + "imdb_id": "tt1339238", + "title": "Sekirei", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4031": { + "imdb_id": "tt1339238", + "title": "Sekirei", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5700": { + "imdb_id": "tt1339238", + "title": "Sekirei", + "fromSeason": 0, + "fromEpisode": 2 + }, + "3453": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4044": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6157": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 3, + "fromEpisode": 1 + }, + "6557": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11950": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 5, + "fromEpisode": 1 + }, + "13077": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 6, + "fromEpisode": 1 + }, + "47678": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 7, + "fromEpisode": 1 + }, + "7747": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8054": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 0, + "fromEpisode": 2 + }, + "13143": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 0, + "fromEpisode": 3 + }, + "13757": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 0, + "fromEpisode": 5 + }, + "8228": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 0, + "fromEpisode": 7 + }, + "49340": { + "imdb_id": "tt1352421", + "title": "Natsume's Book of Friends", + "fromSeason": 0, + "fromEpisode": 15 + }, + "3458": { + "imdb_id": "tt1324968", + "title": "Michiko and Hatchin", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3470": { + "imdb_id": "tt1703049", + "title": "Trigun: Badlands Rumble" + }, + "3471": { + "imdb_id": "tt1288461", + "title": "Gurren Lagann the Movie: Childhood's End" + }, + "3490": { + "imdb_id": "tt1208358", + "title": "Blade of the Immortal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3503": { + "imdb_id": "tt1300170", + "title": "Xam'd: Lost Memories", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3508": { + "imdb_id": "tt1394286", + "title": "Chrome Shelled Regios", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3527": { + "imdb_id": "tt3982472", + "title": "Hareluya II BØY", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3529": { + "imdb_id": "tt1821149", + "title": "Rosario + Vampire", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3532": { + "imdb_id": "tt1279024", + "title": "Toradora!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4438": { + "imdb_id": "tt1279024", + "title": "Toradora!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6536": { + "imdb_id": "tt1279024", + "title": "Toradora!", + "fromSeason": 0, + "fromEpisode": 5 + }, + "3536": { + "imdb_id": "tt3948376", + "title": "Ginga Shippû Sasuraiger", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3559": { + "imdb_id": "tt1815065", + "title": "Heroman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3597": { + "imdb_id": "tt0345612", + "title": "Mazinger Z vs. The Great General of Darkness" + }, + "13747": { + "imdb_id": "tt6470762", + "title": "Mazinger Z: Infinity" + }, + "3618": { + "imdb_id": "tt0283783", + "title": "Prince Mackaroo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3663": { + "imdb_id": "tt0971215", + "title": "Shenmue: The Movie" + }, + "3689": { + "imdb_id": "tt1422651", + "title": "Gurren Lagann the Movie: The Lights in the Sky Are Stars" + }, + "3692": { + "imdb_id": "tt13345962", + "title": "Saikyou Robot Daiouja", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3725": { + "imdb_id": "tt1308089", + "fanartLogoId": "89630", + "title": "A Certain Magical Index", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5541": { + "imdb_id": "tt1308089", + "fanartLogoId": "89631", + "title": "A Certain Magical Index", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13880": { + "imdb_id": "tt1308089", + "fanartLogoId": "89632", + "title": "A Certain Magical Index", + "fromSeason": 3, + "fromEpisode": 1 + }, + "6583": { + "imdb_id": "tt3163844", + "title": "A Certain Magical Index: The Movie - The Miracle of Endymion" + }, + "3732": { + "imdb_id": "tt1260502", + "title": "Ghost in the Shell 2.0" + }, + "3753": { + "imdb_id": "tt0765441", + "title": "Digimon Savers Special", + "fromSeason": 0, + "fromEpisode": 1 + }, + "3760": { + "imdb_id": "tt1356884", + "title": "White Album", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4455": { + "imdb_id": "tt1356884", + "title": "White Album", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7697": { + "imdb_id": "tt2942224", + "title": "White Album 2", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3761": { + "imdb_id": "tt1329466", + "title": "Skip Beat!" + }, + "3825": { + "imdb_id": "tt1196478", + "title": "Don Dracula", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3837": {}, + "3840": { + "imdb_id": "tt1316554", + "fanartLogoId": "98204", + "title": "Black Butler", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4678": { + "imdb_id": "tt1316554", + "fanartLogoId": "98204", + "title": "Black Butler", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8268": { + "imdb_id": "tt1316554", + "fanartLogoId": "118393", + "title": "Black Butler", + "fromSeason": 3, + "fromEpisode": 1 + }, + "47688": { + "imdb_id": "tt1316554", + "fanartLogoId": "188553", + "title": "Black Butler", + "fromSeason": 4, + "fromEpisode": 1 + }, + "49017": { + "imdb_id": "tt1316554", + "fanartLogoId": "197489", + "title": "Black Butler", + "fromSeason": 5, + "fromEpisode": 1 + }, + "4453": { + "imdb_id": "tt1316554", + "title": "Black Butler", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4717": { + "imdb_id": "tt1316554", + "title": "Black Butler", + "fromSeason": 0, + "fromEpisode": 2 + }, + "5614": { + "imdb_id": "tt1316554", + "title": "Black Butler", + "fromSeason": 0, + "fromEpisode": 3 + }, + "8338": { + "imdb_id": "tt1316554", + "title": "Black Butler", + "fromSeason": 0, + "fromEpisode": 9 + }, + "3871": { + "imdb_id": "tt1278254", + "title": "ChäoS;HEAd" + }, + "3799": { + "imdb_id": "tt0192886", + "title": "Shinzô ningen Kyashân", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3842": { + "imdb_id": "tt1308085", + "title": "Today in Class 5-2", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3872": { + "imdb_id": "tt0235119", + "title": "Casshern Sins", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3878": { + "imdb_id": "tt1773213", + "title": "Tentai Senshi Sunred", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4622": { + "imdb_id": "tt1773213", + "title": "Tentai Senshi Sunred", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3891": { + "imdb_id": "tt1693435", + "title": "Major", + "fromSeason": 5, + "fromEpisode": 1 + }, + "2225": { + "imdb_id": "tt0235138", + "title": "Space Cobra", + "fromSeason": 1, + "fromEpisode": 1 + }, + "2226": { + "imdb_id": "tt0163494", + "title": "Space Adventure Cobra" + }, + "3893": { + "imdb_id": "tt1346122", + "fanartLogoId": "50214", + "title": "Maria Holic", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5832": { + "fanartLogoId": "96464", + "imdb_id": "tt1346122", + "title": "Maria Holic", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3839": { + "imdb_id": "tt1450620", + "title": "When Seagulls Cry", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3881": { + "imdb_id": "tt0487191", + "title": "Coral Reef Legend: Elfie of the Blue Sea" + }, + "3895": { + "imdb_id": "tt2454264", + "title": "Cobra the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3898": { + "imdb_id": "tt1389648", + "title": "Kurozuka", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3899": { + "imdb_id": "tt1411815", + "title": "One Outs" + }, + "3917": { + "imdb_id": "tt1352417", + "title": "Kurokami: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3919": { + "imdb_id": "tt1480925", + "title": "Bakemonogatari" + }, + "3936": { + "imdb_id": "tt1355642", + "title": "Fullmetal Alchemist: Brotherhood", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4555": { + "imdb_id": "tt1355642", + "title": "Fullmetal Alchemist: Brotherhood", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5154": { + "imdb_id": "tt1355642", + "title": "Fullmetal Alchemist: Brotherhood", + "fromSeason": 0, + "fromEpisode": 6 + }, + "3941": { + "imdb_id": "tt0421354", + "title": "Groizer X", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3967": { + "imdb_id": "tt2636966", + "title": "Electromagnetic Girlfriend", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4000": { + "imdb_id": "tt2189248", + "title": "Inazuma Eleven", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6213": { + "imdb_id": "tt2189248", + "title": "Inazuma Eleven", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6927": { + "imdb_id": "tt2189248", + "title": "Inazuma Eleven", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7765": { + "imdb_id": "tt2189248", + "title": "Inazuma Eleven", + "fromSeason": 4, + "fromEpisode": 1 + }, + "12496": { + "imdb_id": "tt10534392", + "title": "Inazuma Eleven Ares", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41985": { + "imdb_id": "tt10534392", + "title": "Inazuma Eleven Ares", + "fromSeason": 2, + "fromEpisode": 1 + }, + "5580": { + "imdb_id": "tt1794796", + "title": "Inazuma Eleven: The Movie" + }, + "6435": { + "imdb_id": "tt2141749", + "title": "Inazuma Eleven GO the Movie: The Ultimate Bonds Gryphon" + }, + "4072": { + "imdb_id": "tt1480947", + "title": "Canaan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4073": { + "imdb_id": "tt1361566", + "title": "he House of Small Cubes" + }, + "4095": { + "imdb_id": "tt1671144", + "title": "Kemono no Souja Erin" + }, + "4107": { + "imdb_id": "tt1343046", + "title": "Detective Conan: The Raven Chaser" + }, + "4124": { + "imdb_id": "tt1456228", + "title": "Kon'nichiwa An: Bifô Guriin Gêburusu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4138": { + "imdb_id": "tt1343645", + "title": "Pandora Hearts", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4776": { + "imdb_id": "tt1343645", + "title": "Pandora Hearts", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4190": { + "imdb_id": "tt1409062", + "title": "Natsu no arashi!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4680": { + "imdb_id": "tt1409062", + "title": "Natsu no arashi!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4211": { + "imdb_id": "tt1415054", + "title": "Eden of the East" + }, + "4227": { + "imdb_id": "tt0421352", + "title": "Great Mazinger", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4235": { + "imdb_id": "tt1409064", + "title": "Saki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4240": { + "imdb_id": "tt1410218", + "title": "K-On!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4758": { + "imdb_id": "tt1410218", + "title": "K-On!", + "fromSeason": 1, + "fromEpisode": 14 + }, + "5124": { + "imdb_id": "tt1410218", + "title": "K-On!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4833": { + "imdb_id": "tt1410218", + "title": "K-On!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5630": { + "imdb_id": "tt1410218", + "title": "K-On!", + "fromSeason": 0, + "fromEpisode": 8 + }, + "5841": { + "imdb_id": "tt1410218", + "title": "K-On!", + "fromSeason": 0, + "fromEpisode": 17 + }, + "4241": { + "imdb_id": "tt1474276", + "title": "Summer Wars" + }, + "4242": { + "imdb_id": "tt1347975", + "title": "Phantom: Requiem for the Phantom" + }, + "4264": { + "imdb_id": "tt0466352", + "title": "Prince of Tennis: Another Story - Messages From Past and Future", + "fromSeason": 11, + "fromEpisode": 1 + }, + "4292": { + "imdb_id": "tt3466844", + "title": "Blocker Gundan IV Machine Blaster", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4332": { + "imdb_id": "tt6562012", + "title": "Student Council's Discretion", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4355": { + "imdb_id": "tt1414416", + "title": "Cross Game", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4363": { + "imdb_id": "tt1528567", + "title": "Heaven's Lost Property", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5323": { + "imdb_id": "tt1528567", + "title": "Heaven's Lost Property", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4365": { + "imdb_id": "tt1674928", + "fanartLogoId": "98558", + "title": "Beyblade: Metal Fusion", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5326": { + "imdb_id": "tt1674928", + "fanartLogoId": "94658", + "title": "Beyblade: Metal Fusion", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6152": { + "imdb_id": "tt1674928", + "fanartLogoId": "143751", + "title": "Beyblade: Metal Fusion", + "fromSeason": 3, + "fromEpisode": 1 + }, + "4371": { + "imdb_id": "tt1454712", + "title": "Ristorante Paradiso", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4391": { + "imdb_id": "tt1481093", + "title": "Needless", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4940": { + "imdb_id": "tt1481093", + "title": "Needless", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4397": { + "imdb_id": "tt1745240", + "title": "Kimi ni todoke", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5820": { + "imdb_id": "tt1745240", + "title": "Kimi ni todoke", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47905": { + "imdb_id": "tt1745240", + "title": "Kimi ni todoke", + "fromSeason": 3, + "fromEpisode": 1 + }, + "4408": { + "imdb_id": "tt7722438", + "title": "Moeru! Onisan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4427": { + "imdb_id": "tt1463151", + "title": "Sora no manimani", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4769": { + "imdb_id": "tt1463151", + "title": "Sora no manimani", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4430": { + "imdb_id": "tt1610860", + "title": "Rainbow: Nishakubou no shichinin" + }, + "4432": { + "imdb_id": "tt1414419", + "title": "Mainichi kâsan" + }, + + "4456": { + "imdb_id": "tt1694025", + "title": "Cat Planet Cuties", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5811": { + "imdb_id": "tt1694025", + "title": "Cat Planet Cuties", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4459": { + "imdb_id": "tt1488591", + "title": "Professor Layton and the Eternal Diva" + }, + "4662": { + "imdb_id": "tt1515976", + "title": "11 Eyes", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5102": { + "imdb_id": "tt1515976", + "title": "11 Eyes", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4474": { + "imdb_id": "tt1516239", + "title": "Kenpufâ", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6023": { + "imdb_id": "tt1516239", + "title": "Kenpufâ", + "fromSeason": 0, + "fromEpisode": 9 + }, + "4477": { + "imdb_id": "tt1440068", + "title": "Tokyo Magnitude 8.0" + }, + "4478": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4481": { + "imdb_id": "tt2450486", + "title": "Rainbow Fireflies" + }, + "7366": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41979": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 3, + "fromEpisode": 1 + }, + "5174": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5592": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 0, + "fromEpisode": 3 + }, + "5586": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 0, + "fromEpisode": 4 + }, + "7969": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 0, + "fromEpisode": 7 + }, + "8357": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 0, + "fromEpisode": 9 + }, + "43707": { + "imdb_id": "tt1515996", + "title": "A Certain Scientific Railgun", + "fromSeason": 0, + "fromEpisode": 12 + }, + "4519": { + "imdb_id": "tt3029762", + "title": "Omamori Himari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4528": { + "imdb_id": "tt1655610", + "title": "Baka and Test: Summon the Beasts", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5367": { + "imdb_id": "tt1655610", + "title": "Baka and Test: Summon the Beasts", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4572": { + "imdb_id": "tt1636815", + "title": "Detective Conan: The Lost Ship in the Sky" + }, + "4583": { + "imdb_id": "tt3443306", + "title": "The Qwaser of Stigmata", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6020": { + "imdb_id": "tt3443306", + "title": "The Qwaser of Stigmata", + "fromSeason": 2, + "fromEpisode": 1 + }, + "4582": { + "imdb_id": "tt0189254", + "title": "Cutey Honey Flash" + }, + "4597": { + }, + "4604": { + "imdb_id": "tt1639109", + "title": "Angel Beats!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5591": { + "imdb_id": "tt1639109", + "title": "Angel Beats!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6019": { + "imdb_id": "tt1639109", + "title": "Angel Beats!", + "fromSeason": 0, + "fromEpisode": 2 + }, + "4630": { + "imdb_id": "tt1945730", + "title": "Katanagatari" + }, + "4659": { + "imdb_id": "tt1483797", + "title": "Redline" + }, + "4676": { + "imdb_id": "tt1528406", + "title": "Fairy Tail", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8203": { + "imdb_id": "tt1528406", + "title": "Fairy Tail", + "fromSeason": 5, + "fromEpisode": 1 + }, + "13658": { + "imdb_id": "tt1528406", + "title": "Fairy Tail", + "fromSeason": 8, + "fromEpisode": 1 + }, + "5979": { + "imdb_id": "tt1528406", + "title": "Fairy Tail", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7692": { + "imdb_id": "tt1528406", + "title": "Fairy Tail", + "fromSeason": 0, + "fromEpisode": 8 + }, + "12225": { + "imdb_id": "tt1528406", + "title": "Fairy Tail", + "fromSeason": 0, + "fromEpisode": 9 + }, + "4696": { + "imdb_id": "tt1584000", + "title": "Durarara!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8314": { + "imdb_id": "tt1584000", + "title": "Durarara!!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "9726": { + "imdb_id": "tt1584000", + "title": "Durarara!!", + "fromSeason": 2, + "fromEpisode": 13 + }, + "9725": { + "imdb_id": "tt1584000", + "title": "Durarara!!", + "fromSeason": 2, + "fromEpisode": 25 + }, + "5324": { + "imdb_id": "tt1584000", + "title": "Durarara!!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "10707": { + "imdb_id": "tt1584000", + "title": "Durarara!!", + "fromSeason": 0, + "fromEpisode": 3 + }, + "11362": { + "imdb_id": "tt1584000", + "title": "Durarara!!", + "fromSeason": 0, + "fromEpisode": 4 + }, + "11933": { + "imdb_id": "tt1584000", + "title": "Durarara!!", + "fromSeason": 0, + "fromEpisode": 5 + }, + "4697": { + "imdb_id": "tt1586814", + "title": "Dance in the Vampire Bund", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5244": { + "imdb_id": "tt1586814", + "title": "Dance in the Vampire Bund", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4765": { + "imdb_id": "tt1909447", + "title": "Deadman Wonderland", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6172": { + "imdb_id": "tt1909447", + "title": "Deadman Wonderland", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4775": { + "imdb_id": "tt1658978", + "title": "Hakuouki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5593": { + "imdb_id": "tt1658978", + "title": "Hakuouki", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6884": { + "imdb_id": "tt1658978", + "title": "Hakuouki", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44865": { + "imdb_id": "tt1658978", + "title": "Hakuouki", + "fromSeason": 0, + "fromEpisode": 12 + }, + "6885": { + "imdb_id": "tt3856638", + "title": "Hakuouki Movie 1: Kyoto Ranbu" + }, + "6886": { + "imdb_id": "tt5825186", + "title": "Hakuouki Movie 2: Shikon Soukyuu" + }, + "4788": { + "imdb_id": "tt1587156", + "title": "Gekijouban Fate/Stay Night: Unlimited Blade Works" + }, + "4797": { + "imdb_id": "tt7412514", + "title": "Jump Festa 2008 Special" + }, + "4805": { + "imdb_id": "tt1685484", + "title": "Working!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6220": { + "imdb_id": "tt1685484", + "title": "Working!!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8712": { + "imdb_id": "tt1685484", + "title": "Working!!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11420": { + "imdb_id": "tt1685484", + "title": "Working!!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4813": { + "imdb_id": "tt1685412", + "title": "Senkou no naitoreido", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5499": { + "imdb_id": "tt1685412", + "title": "Senkou no naitoreido", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4829": { + "imdb_id": "tt0466352", + "title": "Prince of Tennis: Another Story - Messages From Past and Future Specials", + "fromSeason": 11, + "fromEpisode": 5 + }, + "4852": { + "imdb_id": "tt1634208", + "title": "Maid Sama!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6118": { + "imdb_id": "tt1634208", + "title": "Maid Sama!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5705": { + "imdb_id": "tt1634208", + "title": "Maid Sama!", + "fromSeason": 0, + "fromEpisode": 2 + }, + "4863": { + "imdb_id": "tt1636694", + "title": "Ichiban ushiro no daimaou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5346": { + "imdb_id": "tt1636694", + "title": "Ichiban ushiro no daimaou", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4879": { + "imdb_id": "tt1584003", + "title": "Ladies versus Butlers!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4900": { + "imdb_id": "tt1805647", + "title": "Aoi Bungaku Series", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4938": { + "imdb_id": "tt1572781", + "title": "The Disappearance of Haruhi Suzumiya" + }, + "4989": { + "imdb_id": "tt1636780", + "title": "Gintama: The Movie" + }, + "5007": { + "title": "Knyacki!", + "imdb_id": "tt1978960", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5045": { + "imdb_id": "tt1634209", + "title": "Kiss x sis", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3901": { + "imdb_id": "tt1634209", + "title": "Kiss x sis", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5060": { + "imdb_id": "tt1685408", + "title": "Mitsudomoe", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5765": { + "imdb_id": "tt1685408", + "title": "Mitsudomoe", + "fromSeason": 2, + "fromEpisode": 1 + }, + "5721": { + "imdb_id": "tt1685408", + "title": "Mitsudomoe", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5067": { + "imdb_id": "tt1639471", + "title": "Arakawa Under the Bridge", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5595": { + "imdb_id": "tt1639471", + "title": "Arakawa Under the Bridge", + "fromSeason": 2, + "fromEpisode": 1 + }, + "5070": { + "imdb_id": "tt1693435", + "title": "Major", + "fromSeason": 6, + "fromEpisode": 1 + }, + "5079": { + "imdb_id": "tt1738419", + "title": "Bakuman.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6001": { + "imdb_id": "tt1738419", + "title": "Bakuman.", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6714": { + "imdb_id": "tt1738419", + "title": "Bakuman.", + "fromSeason": 3, + "fromEpisode": 1 + }, + "5090": { + "imdb_id": "tt1568921", + "title": "Arrietty" + }, + "5098": { + "imdb_id": "tt2016670", + "title": "Shiki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6027": { + "imdb_id": "tt2016670", + "title": "Shiki", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5114": { + "imdb_id": "tt1685410", + "title": "Okami-san and Her Seven Companions" + }, + "5122": { + "imdb_id": "tt1847445", + "title": "Yojôhan shinwa taikei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5561": { + "imdb_id": "tt1847445", + "title": "Yojôhan shinwa taikei", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5134": { + "imdb_id": "tt1634165", + "title": "B Gata H Kei: Yamada's First Time" + }, + "5183": {}, + "5187": { + "imdb_id": "tt1685401", + "title": "Highschool of the Dead", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5767": { + "imdb_id": "tt1685401", + "title": "Highschool of the Dead", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5190": { + "imdb_id": "tt2078651", + "title": "The Story of Mr. Sorry" + }, + "5191": { + "imdb_id": "tt1690400", + "title": "The Legend of the Legendary Heroes", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5194": { + "imdb_id": "tt1794963", + "title": "Fafner in the Azure: Heaven and Earth" + }, + "5201": { + "imdb_id": "tt1679681", + "title": "Welcome to the Space Show" + }, + "5204": { + "imdb_id": "tt1746043", + "title": "Kurage hime" + }, + "5297": { + "title": "Hanakappa", + "imdb_id": "tt12826684", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5319": { + "imdb_id": "tt0204460", + "title": "Makoto-chan" + }, + "5321": { + "imdb_id": "tt1371593", + "title": "Chogattai majutsu robot Ginguiser", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5329": { + "imdb_id": "tt1952071", + "title": "mm!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5330": { + "imdb_id": "tt1872328", + "title": "Gosick" + }, + "5331": { + "imdb_id": "tt2011519", + "title": "Hourou Musuko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6413": { + "imdb_id": "tt2011519", + "title": "Hourou Musuko", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5348": { + "imdb_id": "tt2328505", + "title": "Asura" + }, + "5356": { + "imdb_id": "tt5328606", + "title": "Digimon Savers 3D: Digital World Kiki Ippatsu!" + }, + "5374": { + "imdb_id": "tt1899022", + "title": "The World God Only Knows", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5382": { + "imdb_id": "tt1189033", + "title": "Dokutâ suranpu" + }, + "5389": { + "imdb_id": "tt1738090", + "title": "Shinryaku! Ika Musume", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6156": { + "imdb_id": "tt1738090", + "title": "Shinryaku! Ika Musume", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6929": { + "imdb_id": "tt1738090", + "title": "Shinryaku! Ika Musume", + "fromSeason": 0, + "fromEpisode": 3 + }, + "5404": { + "imdb_id": "tt1783878", + "title": "Digimon Xros Wars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5407": { + "imdb_id": "tt1936037", + "title": "Aria the Scarlet Ammo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5434": { + "imdb_id": "tt1694038", + "title": "Seitokai yakuindomo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8061": { + "imdb_id": "tt1694038", + "title": "Seitokai yakuindomo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6046": { + "imdb_id": "tt1694038", + "title": "Seitokai yakuindomo", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8708": { + "imdb_id": "tt1694038", + "title": "Seitokai yakuindomo", + "fromSeason": 0, + "fromEpisode": 9 + }, + "5435": { + "imdb_id": "tt1685397", + "title": "Amagami SS", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6478": { + "imdb_id": "tt1685397", + "title": "Amagami SS", + "fromSeason": 2, + "fromEpisode": 1 + }, + "5606": { + "imdb_id": "tt1685397", + "title": "Amagami SS", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5943": { + "imdb_id": "tt1685397", + "title": "Amagami SS", + "fromSeason": 0, + "fromEpisode": 7 + }, + "6785": { + "imdb_id": "tt1685397", + "title": "Amagami SS", + "fromSeason": 0, + "fromEpisode": 8 + }, + "5443": { + "imdb_id": "tt4083422", + "title": "Doraemon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8566": { + "imdb_id": "tt3331846", + "title": "Stand by Me Doraemon" + }, + "44424": { + "imdb_id": "tt13428402", + "title": "Stand by Me Doraemon 2" + }, + "5469": { + "imdb_id": "tt7947592", + "title": "One Piece Film: Strong World" + }, + "5487": { + "imdb_id": "tt1751305", + "title": "Oreimo: My Little Sister Can't Be This Cute?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7006": { + "imdb_id": "tt1751305", + "title": "Oreimo: My Little Sister Can't Be This Cute?", + "fromSeason": 2, + "fromEpisode": 1 + }, + "5998": { + "imdb_id": "tt1751305", + "title": "Oreimo: My Little Sister Can't Be This Cute?", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7822": { + "imdb_id": "tt1751305", + "title": "Oreimo: My Little Sister Can't Be This Cute?", + "fromSeason": 0, + "fromEpisode": 38 + }, + "5497": { + "imdb_id": "tt1727444", + "title": "Panty & Stocking with Garterbelt", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6326": { + "imdb_id": "tt1727444", + "title": "Panty & Stocking with Garterbelt", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5507": { + "imdb_id": "tt1780262", + "title": "Is This a Zombie?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6347": { + "imdb_id": "tt1780262", + "title": "Is This a Zombie?", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6079": { + "imdb_id": "tt1780262", + "title": "Is This a Zombie?", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7256": { + "imdb_id": "tt1780262", + "title": "Is This a Zombie?", + "fromSeason": 0, + "fromEpisode": 3 + }, + "5212": { + "imdb_id": "tt1677561", + "title": "Colourful" + }, + "5513": { + "imdb_id": "tt1743681", + "title": "Yosuga no sora" + }, + "5518": { + "imdb_id": "tt3354096", + "title": "Code Geass: Akito the Exiled - The Wyvern Arrives" + }, + "7227": { + "imdb_id": "tt3354254", + "title": "Code Geass: Akito the Exiled 2 - The Torn-Up Wyvern" + }, + "7228": { + "imdb_id": "tt3354302", + "title": "Code Geass: Akito the Exiled 3 - The Brightness Falls" + }, + "7229": { + "imdb_id": "tt3354306", + "title": "Code Geass: Akito the Exiled 4 - From the Memories of Hatred" + }, + "10904": { + "imdb_id": "tt5920384", + "title": "Code Geass: Akito the Exiled Final - To Beloved Ones" + }, + "5530": { + "imdb_id": "tt2131768", + "title": "The Mystic Archives of Dantalian" + }, + "5531": { + "imdb_id": "tt2176669", + "title": "Bodacious Space Pirates" + }, + "5544": { + "imdb_id": "tt2555422", + "title": "Akage no An: Gurîn Gêburuzu e no michi" + }, + "5562": { + "imdb_id": "tt1679482", + "title": "Supernatural: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5583": { + "imdb_id": "tt1929675", + "title": "Infinite Stratos", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7733": { + "imdb_id": "tt1929675", + "title": "Infinite Stratos", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6350": { + "imdb_id": "tt1929675", + "title": "Infinite Stratos", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7909": { + "imdb_id": "tt1929675", + "title": "Infinite Stratos", + "fromSeason": 0, + "fromEpisode": 3 + }, + "8137": { + "imdb_id": "tt1929675", + "title": "Infinite Stratos", + "fromSeason": 0, + "fromEpisode": 4 + }, + "12323": { + "imdb_id": "tt1929675", + "title": "Infinite Stratos", + "fromSeason": 0, + "fromEpisode": 5 + }, + "5613": { + "imdb_id": "tt1776196", + "title": "Fullmetal Alchemist: The Sacred Star of Milos" + }, + "5625": { + "imdb_id": "tt4003854", + "title": "Burning Blood" + }, + "5646": { + "imdb_id": "tt1910272", + "title": "Steins;Gate", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6389": { + "imdb_id": "tt1910272", + "title": "Steins;Gate", + "fromSeason": 0, + "fromEpisode": 1 + }, + "9957": { + "imdb_id": "tt1910272", + "title": "Steins;Gate", + "fromSeason": 0, + "fromEpisode": 3 + }, + "11574": { + "imdb_id": "tt1910272", + "title": "Steins;Gate", + "fromSeason": 0, + "fromEpisode": 7 + }, + "5649": { + "imdb_id": "tt3138698", + "title": "Kizumonogatari Part 1: Tekketsu" + }, + "11406": { + "imdb_id": "tt5084196", + "title": "Kizumonogatari Part 2: Nekketsu-hen" + }, + "11407": { + "imdb_id": "tt5084198", + "title": "Kizumonogatari Part 3: Reiketsu" + }, + "5657": { + "imdb_id": "tt1820941", + "title": "Hanasaku iroha" + }, + "5679": { + "imdb_id": "tt2119364", + "title": "Dream Eater Merry", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5706": { + "imdb_id": "tt1909463", + "title": "Freezing", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7710": { + "imdb_id": "tt1909463", + "title": "Freezing", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6063": { + "imdb_id": "tt1909463", + "title": "Freezing", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8168": { + "imdb_id": "tt1909463", + "title": "Freezing", + "fromSeason": 0, + "fromEpisode": 7 + }, + "5710": { + "imdb_id": "tt2697872", + "title": "Ground Control to Psychoelectric Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6276": { + "imdb_id": "tt2697872", + "title": "Ground Control to Psychoelectric Girl", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5718": { + "imdb_id": "tt0062260", + "title": "Shounen Jack to Mahoutsukai" + }, + "5746": { + "imdb_id": "tt3105492", + "title": "Coppelion" + }, + "5775": { + "imdb_id": "tt21294196", + "title": "Urufu gai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5766": { + "imdb_id": "tt1882240", + "title": "Beelzebub" + }, + "5777": { + "imdb_id": "tt1654078", + "title": "Tezuka Osamu monogatari: Boku wa Son Gokû" + }, + "5781": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6893": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7283": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8264": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 4, + "fromEpisode": 1 + }, + "9781": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 5, + "fromEpisode": 1 + }, + "11220": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 6, + "fromEpisode": 1 + }, + "11857": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 7, + "fromEpisode": 1 + }, + "12564": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 8, + "fromEpisode": 1 + }, + "13786": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 9, + "fromEpisode": 1 + }, + "41145": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 10, + "fromEpisode": 1 + }, + "42325": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 11, + "fromEpisode": 1 + }, + "42452": { + "imdb_id": "tt2549176", + "title": "Cardfight!! Vanguard", + "fromSeason": 12, + "fromEpisode": 1 + }, + "43061": { + "imdb_id": "tt2549176", + "tvdb_id": "379742", + "title": "Cardfight!! Vanguard Gaiden: If", + "fromSeason": 13, + "fromEpisode": 1 + }, + "44181": { + "imdb_id": "tt2549176", + "tvdb_id": "400398", + "fanartLogoId": "131585", + "title": "Vanguard OverDress", + "fromSeason": 14, + "fromEpisode": 1 + }, + "44521": { + "imdb_id": "tt2549176", + "tvdb_id": "400398", + "fanartLogoId": "131585", + "title": "Vanguard OverDress", + "fromSeason": 14, + "fromEpisode": 13 + }, + "45214": { + "imdb_id": "tt2549176", + "tvdb_id": "400398", + "fanartLogoId": "153851", + "title": "Vanguard OverDress", + "fromSeason": 15, + "fromEpisode": 1 + }, + "45215": { + "imdb_id": "tt2549176", + "tvdb_id": "400398", + "fanartLogoId": "153851", + "title": "Vanguard OverDress", + "fromSeason": 15, + "fromEpisode": 14 + }, + "46186": { + "imdb_id": "tt2549176", + "tvdb_id": "400398", + "fanartLogoId": "153851", + "title": "Vanguard OverDress", + "fromSeason": 15, + "fromEpisode": 26 + }, + "47424": { + "imdb_id": "tt2549176", + "tvdb_id": "400398", + "fanartLogoId": "191687", + "title": "Vanguard OverDress", + "fromSeason": 16, + "fromEpisode": 1 + }, + "48746": { + "imdb_id": "tt2549176", + "tvdb_id": "400398", + "fanartLogoId": "191687", + "title": "Vanguard OverDress", + "fromSeason": 16, + "fromEpisode": 14 + }, + "5810": { + "imdb_id": "tt1909796", + "title": "K-On! The Movie" + }, + "5843": { + "imdb_id": "tt6460126", + "title": "Astarotte no Omocha!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6251": { + "imdb_id": "tt6460126", + "title": "Astarotte no Omocha!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "5844": { + "imdb_id": "tt1756988", + "title": "Appleseed XIII", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5853": { + "imdb_id": "tt1773185", + "title": "Puella Magi Madoka Magica" + }, + "5855": { + "imdb_id": "tt1839494", + "title": "Journey to Agartha" + }, + "5861": { + "imdb_id": "tt2670718", + "title": "A-Channel", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5879": { + "imdb_id": "tt5887030", + "title": "Qin's Moon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6615": { + "imdb_id": "tt5887030", + "title": "Qin's Moon", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6613": { + "imdb_id": "tt5887030", + "title": "Qin's Moon", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7337": { + "imdb_id": "tt5887030", + "title": "Qin's Moon", + "fromSeason": 4, + "fromEpisode": 1 + }, + "10556": { + "imdb_id": "tt5887030", + "title": "Qin's Moon", + "fromSeason": 5, + "fromEpisode": 1 + }, + "5895": { + "imdb_id": "tt2629496", + "title": "Level E", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5908": { + "imdb_id": "tt1909586", + "title": "Sket Dance", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5927": { + "imdb_id": "tt2230587", + "title": "Suite PreCure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5937": { + "imdb_id": "tt1836435", + "title": "Wish Upon the Pleiades" + }, + "5940": { + "imdb_id": "tt1799631", + "fanartLogoId": "178186", + "title": "Blue Exorcist", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12275": { + "imdb_id": "tt1799631", + "fanartLogoId": "178188", + "title": "Blue Exorcist", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46875": { + "imdb_id": "tt1799631", + "fanartLogoId": "185745", + "title": "Blue Exorcist", + "fromSeason": 3, + "fromEpisode": 1 + }, + "48650": { + "imdb_id": "tt1799631", + "fanartLogoId": "193775", + "title": "Blue Exorcist", + "fromSeason": 4, + "fromEpisode": 1 + }, + "49040": { + "imdb_id": "tt1799631", + "fanartLogoId": "45229", + "title": "Blue Exorcist", + "fromSeason": 5, + "fromEpisode": 1 + }, + "6484": { + "imdb_id": "tt1799631", + "fanartLogoId": "178186", + "title": "Blue Exorcist", + "fromSeason": 0, + "fromEpisode": 11 + }, + "12774": { + "imdb_id": "tt1799631", + "fanartLogoId": "178188", + "title": "Blue Exorcist", + "fromSeason": 0, + "fromEpisode": 13 + }, + "6580": { + "imdb_id": "tt3028018", + "title": "Blue Exorcist: The Movie" + }, + "5947": { + }, + "5949": { + "imdb_id": "tt3692198", + "title": "Maken-Ki! Battling Venus", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7275": { + "imdb_id": "tt3692198", + "title": "Maken-Ki! Battling Venus", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6736": { + "imdb_id": "tt3692198", + "title": "Maken-Ki! Battling Venus", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6474": { + "imdb_id": "tt3692198", + "title": "Maken-Ki! Battling Venus", + "fromSeason": 0, + "fromEpisode": 7 + }, + "8467": { + "imdb_id": "tt3692198", + "title": "Maken-Ki! Battling Venus", + "fromSeason": 0, + "fromEpisode": 9 + }, + "5950": { + "imdb_id": "tt1987179", + "title": "Croisée in a Foreign Labyrinth -The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5953": { + "imdb_id": "tt2061527", + "title": "Tiger & Bunny", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43224": { + "imdb_id": "tt2061527", + "title": "Tiger & Bunny", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46230": { + "imdb_id": "tt2061527", + "title": "Tiger & Bunny", + "fromSeason": 2, + "fromEpisode": 14 + }, + "6643": { + "imdb_id": "tt2507174", + "title": "Tiger & Bunny: The Beginning" + }, + "6644": { + "imdb_id": "tt3204012", + "title": "Tiger & Bunny: The Rising" + }, + "5978": { + "imdb_id": "tt2263799", + "title": "Phi Brain: Puzzle of God", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5981": { + "imdb_id": "tt1913273", + "title": "Anohana: The Flower We Saw That Day" + }, + "5991": { + "imdb_id": "tt0988142", + "title": "Tetsujin 28-gô: Hakuchû no zangetsu" + }, + "5992": { + "imdb_id": "tt2076817", + "title": "Carnival Phantasm", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6695": { + "imdb_id": "tt2076817", + "title": "Carnival Phantasm", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6685": { + "imdb_id": "tt2076817", + "title": "Carnival Phantasm", + "fromSeason": 0, + "fromEpisode": 2 + }, + "6765": { + "imdb_id": "tt2076817", + "title": "Carnival Phantasm", + "fromSeason": 0, + "fromEpisode": 3 + }, + "7342": { + "imdb_id": "tt2076817", + "title": "Carnival Phantasm", + "fromSeason": 0, + "fromEpisode": 4 + }, + "6000": { + "imdb_id": "tt1798188", + "title": "From Up on Poppy Hill" + }, + "6002": { + "imdb_id": "tt1899047", + "title": "Toriko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6026": { + "imdb_id": "tt1899022", + "title": "The World God Only Knows", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6028": { + "imdb_id": "tt2051178", + "title": "Fate/Zero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7658": { + "imdb_id": "tt2051178", + "title": "Fate/Zero", + "fromSeason": 1, + "fromEpisode": 14 + }, + "6906": { + "imdb_id": "tt2051178", + "title": "Fate/Zero", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6928": { + "imdb_id": "tt2051178", + "title": "Fate/Zero", + "fromSeason": 0, + "fromEpisode": 3 + }, + "6030": { + "imdb_id": "tt1856022", + "title": "Ghost in the Shell S.A.C. Solid State Society 3D" + }, + "6039": { + "imdb_id": "tt2008252", + "title": "Mayo chiki!" + }, + "6056": { + "imdb_id": "tt3833714", + "title": "Magical Girl Lyrical Nanoha the Movie 2nd A's" + }, + "6057": { + "imdb_id": "tt2082624", + "title": "Dog Days", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6598": { + "imdb_id": "tt2082624", + "title": "Dog Days", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7417": { + "imdb_id": "tt2082624", + "title": "Dog Days", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11527": { + "imdb_id": "tt2082624", + "title": "Dog Days", + "fromSeason": 0, + "fromEpisode": 27 + }, + "6058": { + "imdb_id": "tt1980688", + "title": "Sacred Seven" + }, + "6059": { + "imdb_id": "tt2350826", + "title": "No. 6" + }, + "6060": { + "imdb_id": "tt2061551", + "title": "Usagi Drop", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6061": { + "imdb_id": "tt1893520", + "title": "C" + }, + "6062": { + "imdb_id": "tt2098308", + "title": "My Ordinary Life", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5512": { + "imdb_id": "tt2098308", + "title": "My Ordinary Life", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6067": { + "imdb_id": "tt5503288", + "title": "Hen zemi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6081": { + "imdb_id": "tt3416460", + "title": "Maji de Watashi ni Koi Shinasai!" + }, + "6083": { + }, + "6084": { + "imdb_id": "tt2210479", + "title": "Berserk: The Golden Age Arc I - The Egg of the King" + }, + "6664": { + "imdb_id": "tt2358911", + "title": "Berserk: The Golden Age Arc II - The Battle for Doldrey" + }, + "6665": { + "imdb_id": "tt2358913", + "title": "Berserk: The Golden Age Arc III - The Advent" + }, + "6087": { + "imdb_id": "tt2629754", + "fanartLogoId": "110890", + "title": "Tamayura: Hitotose", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7299": { + "imdb_id": "tt2629754", + "fanartLogoId": "100028", + "title": "Tamayura: Hitotose", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8808": { + "imdb_id": "tt2629754", + "fanartLogoId": "110889", + "title": "Tamayura: Hitotose", + "fromSeason": 3, + "fromEpisode": 1 + }, + "10439": { + "imdb_id": "tt2629754", + "fanartLogoId": "110889", + "title": "Tamayura: Hitotose", + "fromSeason": 3, + "fromEpisode": 2 + }, + "10440": { + "imdb_id": "tt2629754", + "fanartLogoId": "110889", + "title": "Tamayura: Hitotose", + "fromSeason": 3, + "fromEpisode": 3 + }, + "10441": { + "imdb_id": "tt2629754", + "fanartLogoId": "110889", + "title": "Tamayura: Hitotose", + "fromSeason": 3, + "fromEpisode": 4 + }, + "5588": { + "imdb_id": "tt2629754", + "fanartLogoId": "110959", + "title": "Tamayura: Hitotose", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6109": { + "imdb_id": "tt1202625", + "title": "Gambling Apocalypse Kaiji", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6111": { + "imdb_id": "tt2649756", + "title": "The Idolm@ster" + }, + "6123": { + "imdb_id": "tt5599232", + "title": "Battle Girls: Time Paradox" + }, + "6126": { + "imdb_id": "tt2362887", + "title": "Uta no prince-sama - maji love 1000%" + }, + "6146": { + "imdb_id": "tt2250092", + "title": "Humanity Has Declined" + }, + "6153": { + "imdb_id": "tt2074028", + "title": "Kamisama Dolls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6574": { + "imdb_id": "tt2074028", + "title": "Kamisama Dolls", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6160": { + "imdb_id": "tt1853614", + "title": "A Letter to Momo" + }, + "6164": { + "imdb_id": "tt3625280", + "title": "Ben-To" + }, + "6169": { + "imdb_id": "tt2061702", + "title": "To the Forest of Firefly Lights" + }, + "6183": { + "imdb_id": "tt1783878", + "title": "Digimon Xros Wars", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6187": { + "imdb_id": "tt2074035", + "title": "Horizon in the Middle of Nowhere", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6746": { + "imdb_id": "tt2074035", + "title": "Horizon in the Middle of Nowhere", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6191": { + "imdb_id": "tt7164706", + "title": "Kimi to Boku" + }, + "6193": { + "imdb_id": "tt6562012", + "title": "Student Council's Discretion", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6194": { + "imdb_id": "tt5568758", + "title": "Manyuu hikenchou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41579": { + "imdb_id": "tt5568758", + "title": "Manyuu hikenchou", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6203": { + "imdb_id": "tt1890725", + "title": "Blood-C" + }, + "6205": { + "imdb_id": "tt2785038", + "title": "Yuruyuri", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6232": { + "imdb_id": "tt1801685", + "title": "Rinshi!! Ekoda-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6244": { + "imdb_id": "tt1967120", + "title": "Heaven's Memo Notepad" + }, + "6246": { + "imdb_id": "tt2074166", + "title": "Ro-Kyu-Bu!" + }, + "6247": { + "imdb_id": "tt0466352", + "title": "Prince of Tennis: Another Story 2 - Messages From Past and Future", + "fromSeason": 12, + "fromEpisode": 1 + }, + "6249": { + "imdb_id": "tt2073864", + "title": "C³: C Cube", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6751": { + "imdb_id": "tt2073864", + "title": "C³: C Cube", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6255": { + "imdb_id": "tt2387612", + "title": "Persona 4: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6265": { + "imdb_id": "tt2075073", + "title": "R-15" + }, + "6266": { + "imdb_id": "tt2069441", + "title": "Future Diary", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7510": { + "imdb_id": "tt2069441", + "title": "Future Diary", + "fromSeason": 0, + "fromEpisode": 2 + }, + "6285": { + "imdb_id": "tt13219090", + "title": "Morita-san wa Mukuchi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6549": { + "imdb_id": "tt13219090", + "title": "Morita-san wa Mukuchi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "5860": { + "imdb_id": "tt13219090", + "title": "Morita-san wa Mukuchi", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6849": { + "imdb_id": "tt13219090", + "title": "Morita-san wa Mukuchi", + "fromSeason": 0, + "fromEpisode": 2 + }, + "6316": { + "imdb_id": "tt2645500", + "title": "Haganai: I Don't Have Many Friends", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7190": { + "imdb_id": "tt2645500", + "title": "Haganai: I Don't Have Many Friends", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6397": { + "imdb_id": "tt2645500", + "title": "Haganai: I Don't Have Many Friends", + "fromSeason": 0, + "fromEpisode": 2 + }, + "6318": { + "imdb_id": "tt2017925", + "title": "Mawaru-Penguindrum" + }, + "6349": { + "imdb_id": "tt2122656", + "title": "Guilty Crown", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6727": { + "imdb_id": "tt2122656", + "title": "Guilty Crown", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6958": { + "imdb_id": "tt2122656", + "title": "Guilty Crown", + "fromSeason": 0, + "fromEpisode": 2 + }, + "6353": { + "imdb_id": "tt2127216", + "title": "Un-Go" + }, + "6355": { + "imdb_id": "tt2150751", + "title": "Chihayafuru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6361": { + "imdb_id": "tt2193783", + "title": "Mobile Suit Gundam AGE", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7689": { + "imdb_id": "tt2193783", + "title": "Mobile Suit Gundam AGE", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6392": { + "imdb_id": "tt2341377", + "title": "Saki Achiga-hen episode of side-A", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6415": { + "imdb_id": "tt4483100", + "title": "Mobile Suit Gundam: The Origin I - Blue-Eyed Casval" + }, + "6436": { + "imdb_id": "tt2220674", + "title": "Library War: Wings of Revolution" + }, + "6439": { + "imdb_id": "tt2196757", + "title": "Inu x Boku SS" + }, + "6682": { + "imdb_id": "tt2266660", + "title": "Koi to senkyo to chokoreto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7737": { + "imdb_id": "tt2266660", + "title": "Koi to senkyo to chokoreto", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6442": { + "imdb_id": "tt2293824", + "title": "Muv-Luv Alternative: Total Eclipse" + }, + "6448": { + "imdb_id": "tt2098220", + "title": "Hunter x Hunter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6930": { + "imdb_id": "tt2918988", + "title": "Hunter X Hunter: Phantom Rouge" + }, + "7908": { + "imdb_id": "tt3198698", + "title": "Hunter x Hunter: The Last Mission" + }, + "6454": { + "imdb_id": "tt3656982", + "title": "Kill Me Baby", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7900": { + "imdb_id": "tt3656982", + "title": "Kill Me Baby", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6462": { + "imdb_id": "tt2176165", + "title": "Another", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6569": { + "imdb_id": "tt2176165", + "title": "Another", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6464": { + "imdb_id": "tt1907374", + "title": "Sekaiichi hatsukoi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6469": { + "imdb_id": "tt2189661", + "title": "Listen to Me, Girls. I'm Your Father!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7685": { + "imdb_id": "tt2189661", + "title": "Listen to Me, Girls. I'm Your Father!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6477": { + "imdb_id": "tt2176885", + "title": "Lagrange: The Flower of Rin-ne", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6699": { + "imdb_id": "tt2176885", + "title": "Lagrange: The Flower of Rin-ne", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7139": { + "imdb_id": "tt2176885", + "title": "Lagrange: The Flower of Rin-ne", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7019": { + "imdb_id": "tt2176885", + "title": "Lagrange: The Flower of Rin-ne", + "fromSeason": 0, + "fromEpisode": 7 + }, + "7919": { + "imdb_id": "tt2176885", + "title": "Lagrange: The Flower of Rin-ne", + "fromSeason": 0, + "fromEpisode": 9 + }, + "6481": { + "imdb_id": "tt2176249", + "title": "Brave 10" + }, + "6487": { + "imdb_id": "tt4038636", + "title": "Akadô Suzunosuke", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6489": { + "imdb_id": "tt2198397", + "title": "Black Rock Shooter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4854": { + "imdb_id": "tt2198397", + "title": "Black Rock Shooter", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6501": { + "imdb_id": "tt0466352", + "title": "The New Prince of Tennis", + "fromSeason": 13, + "fromEpisode": 1 + }, + "6503": { + "imdb_id": "tt1783878", + "title": "Digimon Xros Wars", + "fromSeason": 3, + "fromEpisode": 1 + }, + "6508": { + "imdb_id": "tt2187287", + "title": "Waiting in the Summer" + }, + "6509": { + "imdb_id": "tt15072540", + "title": "Rurouni Kenshin: Meiji kenkaku romantan - Shin Kyoto-hen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6519": { + "imdb_id": "tt6163360", + "title": "Recorder to Randoseru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6521": { + "imdb_id": "tt2341379", + "title": "Sankarea: Undying Love", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6873": { + "imdb_id": "tt2341379", + "title": "Sankarea: Undying Love", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7492": { + "imdb_id": "tt2341379", + "title": "Sankarea: Undying Love", + "fromSeason": 0, + "fromEpisode": 3 + }, + "6539": { + "imdb_id": "tt2967286", + "title": "Steins Gate the Movie: Load Region of Déjà vu" + }, + "6546": { + "imdb_id": "tt2178501", + "title": "Nisemonogatari" + }, + "6550": { + "imdb_id": "tt2230051", + "title": "High School DxD", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7258": { + "imdb_id": "tt2230051", + "title": "High School DxD", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8514": { + "imdb_id": "tt2230051", + "title": "High School DxD", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12677": { + "imdb_id": "tt2230051", + "title": "High School DxD", + "fromSeason": 4, + "fromEpisode": 1 + }, + "6944": { + "imdb_id": "tt2230051", + "title": "High School DxD BorN: Yomigaeranai Fushichou", + "fromSeason": 0, + "fromEpisode": 2 + }, + "6801": { + "imdb_id": "tt2230051", + "title": "High School DxD BorN: Yomigaeranai Fushichou", + "fromSeason": 0, + "fromEpisode": 8 + }, + "10744": { + "imdb_id": "tt2230051", + "title": "High School DxD BorN: Yomigaeranai Fushichou", + "fromSeason": 0, + "fromEpisode": 10 + }, + "11237": { + "imdb_id": "tt2230051", + "title": "High School DxD BorN: Yomigaeranai Fushichou", + "fromSeason": 0, + "fromEpisode": 11 + }, + "11598": { + "imdb_id": "tt2230051", + "title": "High School DxD BorN: Yomigaeranai Fushichou", + "fromSeason": 0, + "fromEpisode": 15 + }, + "41208": { + "imdb_id": "tt2230051", + "title": "High School DxD BorN: Yomigaeranai Fushichou", + "fromSeason": 0, + "fromEpisode": 18 + }, + "6552": { + "imdb_id": "tt2760784", + "title": "Blood Lad", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6554": { + "imdb_id": "tt0185607", + "title": "Pink Mizu Dorobou Ame Dorobou" + }, + "6567": { + "imdb_id": "tt2176177", + "title": "The Knight in the Area" + }, + "6570": { + "imdb_id": "tt2294070", + "title": "Code: Breaker" + }, + "6581": { + "imdb_id": "tt7164706", + "title": "Kimi to Boku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6587": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7311": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8136": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11883": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11884": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 5, + "fromEpisode": 1 + }, + "8081": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11592": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 0, + "fromEpisode": 3 + }, + "40594": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 0, + "fromEpisode": 8 + }, + "43035": { + "imdb_id": "tt2230531", + "title": "Senki Zessho Symphogear", + "fromSeason": 0, + "fromEpisode": 13 + }, + "6588": { + "imdb_id": "tt2078523", + "title": "009 Re: Cyborg" + }, + "6589": { + "imdb_id": "tt2250192", + "fanartLogoId": "41749", + "title": "Sword Art Online", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8174": { + "imdb_id": "tt2250192", + "fanartLogoId": "41749", + "title": "Sword Art Online", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13893": { + "imdb_id": "tt2250192", + "fanartLogoId": "106821", + "title": "Sword Art Online", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42213": { + "imdb_id": "tt2250192", + "fanartLogoId": "106818", + "title": "Sword Art Online", + "fromSeason": 4, + "fromEpisode": 1 + }, + "42927": { + "imdb_id": "tt2250192", + "fanartLogoId": "106818", + "title": "Sword Art Online", + "fromSeason": 4, + "fromEpisode": 13 + }, + "7372": { + "imdb_id": "tt2250192", + "title": "Sword Art Online", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8196": { + "imdb_id": "tt2250192", + "title": "Sword Art Online", + "fromSeason": 0, + "fromEpisode": 11 + }, + "9784": { + "imdb_id": "tt2250192", + "title": "Sword Art Online", + "fromSeason": 0, + "fromEpisode": 12 + }, + "9963": { + "imdb_id": "tt2250192", + "title": "Sword Art Online", + "fromSeason": 0, + "fromEpisode": 13 + }, + "40949": { + "imdb_id": "tt2250192", + "title": "Sword Art Online", + "fromSeason": 0, + "fromEpisode": 23 + }, + "42154": { + "imdb_id": "tt2250192", + "fanartLogoId": "106821", + "title": "Sword Art Online", + "fromSeason": 0, + "fromEpisode": 24 + }, + "42610": { + "imdb_id": "tt2250192", + "fanartLogoId": "106818", + "title": "Sword Art Online", + "fromSeason": 0, + "fromEpisode": 25 + }, + "43286": { + "imdb_id": "tt2250192", + "fanartLogoId": "106818", + "title": "Sword Art Online", + "fromSeason": 0, + "fromEpisode": 26 + }, + "7914": { + "imdb_id": "tt3241196", + "title": "Sword Art Online Extra Edition" + }, + "11423": { + "imdb_id": "tt5544384", + "title": "Sword Art Online: The Movie - Ordinal Scale" + }, + "13894": { + "imdb_id": "tt7978710", + "title": "Sword Art Online: Alternative Gun Gale Online", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47748": { + "imdb_id": "tt7978710", + "title": "Sword Art Online: Alternative Gun Gale Online", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41273": { + "imdb_id": "tt7978710", + "title": "Sword Art Online: Alternative Gun Gale Online", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6590": { + "imdb_id": "tt2339875", + "title": "Accel World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6591": { + "imdb_id": "tt2341171", + "title": "Medaka Box", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6592": { + "imdb_id": "tt3104114", + "title": "Wanna Be the Strongest in the World" + }, + "6595": { + "imdb_id": "tt2348803", + "title": "Kuroko's Basketball", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7545": { + "imdb_id": "tt2348803", + "title": "Kuroko's Basketball", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8524": { + "imdb_id": "tt2348803", + "title": "Kuroko's Basketball", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8261": { + "imdb_id": "tt2348803", + "title": "Kuroko's Basketball", + "fromSeason": 0, + "fromEpisode": 19 + }, + "6599": { + "imdb_id": "tt2564106", + "title": "Nyaruko: Crawling with Love", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6605": { + "imdb_id": "tt2336371", + "title": "Midori no neko" + }, + "6607": { + "imdb_id": "tt5879522", + "title": "Gdgd Fairies", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6614": { + "imdb_id": "tt2090435", + "title": "Zetman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6616": { + "imdb_id": "tt2180883", + "title": "Daily Lives of High School Boys" + }, + "7762": { + "imdb_id": "tt1407599", + "fanartLogoId": "94796", + "title": "Queen's Blade: Wandering Warrior", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4642": { + "imdb_id": "tt1407599", + "fanartLogoId": "94797", + "title": "Queen's Blade: Wandering Warrior", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6620": { + "imdb_id": "tt1407599", + "title": "Queen's Blade: Wandering Warrior", + "fromSeason": 3, + "fromEpisode": 1 + }, + "6626": { + "imdb_id": "tt2250034", + "title": "Kokoro Connect", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6636": { + "imdb_id": "tt2205948", + "title": "Puella Magi Madoka Magica the Movie Part 1: Beginnings" + }, + "6637": { + "imdb_id": "tt2194724", + "title": "Puella Magi Madoka Magica the Movie Part 2: Eternal" + }, + "6638": { + "imdb_id": "tt2457282", + "title": "Puella Magi Madoka Magica the Movie Part III: Rebellion" + }, + "6645": { + }, + "6646": { + "imdb_id": "tt2496120", + "title": "Space Battleship Yamato 2199", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6649": { + "imdb_id": "tt2086830", + "title": "Dwae-ji-ui wang" + }, + "6652": { + "imdb_id": "tt2085795", + "title": "Fairy Tail: Priestess of the Phoenix" + }, + "43641": { + "imdb_id": "tt2496120", + "title": "Space Battleship Yamato 2199", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6667": { + "imdb_id": "tt2339005", + "title": "Natsuiro kiseki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6678": { + "imdb_id": "tt2245880", + "title": "AKB0048", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7184": { + "imdb_id": "tt2245880", + "title": "AKB0048", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6686": { + "imdb_id": "tt2340841", + "title": "Hyouka", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6974": { + "imdb_id": "tt2340841", + "title": "Hyouka", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6687": { + "imdb_id": "tt2230557", + "title": "Smile PreCure!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6701": { + "imdb_id": "tt2309934", + "title": "Acchi Kocchi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7401": { + "imdb_id": "tt2309934", + "title": "Acchi Kocchi", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6702": { + "imdb_id": "tt2250160", + "title": "Campione!" + }, + "6704": { + "imdb_id": "tt2255264", + "title": "Upotte!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7089": { + "imdb_id": "tt2255264", + "title": "Upotte!!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6711": { + "imdb_id": "tt2140203", + "title": "Wolf Children" + }, + "7623": { + "imdb_id": "tt2959410", + "title": "Futari wa Milky Holmes", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6724": { + "imdb_id": "tt2785038", + "title": "YuruYuri", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6726": { + "imdb_id": "tt2259737", + "title": "Jormungand", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6940": { + "imdb_id": "tt2259737", + "title": "Jormungand", + "fromSeason": 1, + "fromEpisode": 13 + }, + "6729": { + "imdb_id": "tt2267446", + "title": "Uchû kyôdai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6734": { + "imdb_id": "tt2340511", + "title": "Dusk Maiden of Amnesia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7093": { + "imdb_id": "tt2340511", + "title": "Dusk Maiden of Amnesia", + "fromSeason": 0, + "fromEpisode": 1 + }, + "6739": { + "imdb_id": "tt2338857", + "title": "Hiiro no Kakera", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6740": { + "imdb_id": "tt2341219", + "title": "Mysterious Girlfriend X" + }, + "6742": { + "imdb_id": "tt2981768", + "title": "Patema Inverted" + }, + "6760": { + "imdb_id": "tt2341375", + "title": "Kids on the Slope" + }, + "6774": { + "imdb_id": "tt2266688", + "title": "Sengoku Collection" + }, + "6788": { + "imdb_id": "tt2286879", + "title": "Ozuma" + }, + "6789": { + "imdb_id": "tt2250184", + "title": "Joshiraku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6796": { + "imdb_id": "tt2362887", + "title": "Uta no prince-sama - maji love 1000%" + }, + "6803": { + "imdb_id": "tt2263799", + "title": "Phi Brain: Puzzle of God", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6821": { + "imdb_id": "tt2177954", + "title": "Polar Bear's Café" + }, + "6836": { + "imdb_id": "tt2341757", + "title": "Tsuritama" + }, + "6859": { + "imdb_id": "tt2250048", + "title": "La storia della Arcana Famiglia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6861": { + "imdb_id": "tt2301807", + "title": "Naruto SD: Rock Lee & His Ninja Pals" + }, + "6887": { + "imdb_id": "tt2309320", + "title": "From the New World" + }, + "6896": { + "imdb_id": "tt2269368", + "title": "Hagure Yusha no Aestetica", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7152": { + "imdb_id": "tt2269368", + "title": "Hagure Yusha no Aestetica", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7298": { + "imdb_id": "tt2269368", + "title": "Hagure Yusha no Aestetica", + "fromSeason": 0, + "fromEpisode": 2 + }, + "6897": { + "imdb_id": "tt2291137", + "title": "Folktales from Japan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6920": { + "imdb_id": "tt0466352", + "title": "The Prince of Tennis II Specials", + "fromSeason": 14, + "fromEpisode": 1 + }, + "6941": { + "imdb_id": "tt2242720", + "title": "Tari Tari" + }, + "6942": { + "imdb_id": "tt2403867", + "title": "Fusé: Memoirs of a Huntress" + }, + "6943": { + "imdb_id": "tt2266670", + "title": "Choyaku Hyakunin Isshu: Uta Koi" + }, + "6947": { + "imdb_id": "tt2293988", + "title": "Nakaimo: My Little Sister Is Among Them", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6951": { + "imdb_id": "tt6163360", + "title": "Recorder to Randoseru", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6988": { + "imdb_id": "tt2250040", + "title": "Binbougami ga!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6996": { + "imdb_id": "tt2266678", + "title": "Natsuyuki Rendezvous" + }, + "6999": { + "imdb_id": "tt2293974", + "title": "Robotics;Notes" + }, + "7000": { + "imdb_id": "tt2379308", + "title": "Psycho-Pass", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7863": { + "imdb_id": "tt2379308", + "title": "Psycho-Pass", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42183": { + "imdb_id": "tt2379308", + "title": "Psycho-Pass", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8574": { + }, + "7986": { + "imdb_id": "tt4219130", + "title": "Psycho-Pass: The Movie" + }, + "41027": { + "imdb_id": "tt10443844", + "title": "Psycho-Pass: Sinners of the System Case 1 Crime and Punishment" + }, + "41028": { + "imdb_id": "tt11078434", + "title": "Psycho-Pass: Sinners of the System Case 2 First Guardian" + }, + "41029": { + "imdb_id": "tt11078522", + "title": "Psycho-Pass: Sinners of the System Case.3 - Onshuu no Kanata ni" + }, + "42936": { + "imdb_id": "tt11433874", + "title": "Psycho-Pass 3: First Inspector" + }, + "7005": { + "imdb_id": "tt2309408", + "title": "Little Busters!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7023": { + "imdb_id": "tt2296348", + "title": "The Pet Girl of Sakurasou" + }, + "7024": { + "imdb_id": "tt1210339", + "title": "Junjou Romantica", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7071": { + "imdb_id": "tt2596090", + "title": "Mangirl!" + }, + "7077": { + "imdb_id": "tt3207686", + "title": "Ebiten: Koritsu Ebisugawa Koko Tenmonbu" + }, + "7078": { + "imdb_id": "tt2294048", + "title": "Blast of Tempest: The Civilization Blaster" + }, + "7087": { + "imdb_id": "tt2294076", + "title": "Girls und Panzer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7386": { + "imdb_id": "tt2294076", + "title": "Girls und Panzer", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7315": { + "imdb_id": "tt2294076", + "title": "Girls und Panzer", + "fromSeason": 0, + "fromEpisode": 2 + }, + "7811": { + "imdb_id": "tt2294076", + "title": "Girls und Panzer", + "fromSeason": 0, + "fromEpisode": 3 + }, + "7981": { + "imdb_id": "tt2294076", + "title": "Girls und Panzer", + "fromSeason": 0, + "fromEpisode": 34 + }, + "42948": { + "imdb_id": "tt2294076", + "title": "Girls und Panzer", + "fromSeason": 0, + "fromEpisode": 46 + }, + "7090": { + "imdb_id": "tt2404237", + "title": "Hanasaku Iroha: Home Sweet Home" + }, + "7094": { + "imdb_id": "tt2390038", + "title": "Onii-chan Dakedo Ai Sae Areba Kankei Nai yo ne-", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7331": { + "imdb_id": "tt2390038", + "title": "Onii-chan Dakedo Ai Sae Areba Kankei Nai yo ne-", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7099": { + "imdb_id": "tt2309302", + "title": "My Little Monster" + }, + "7107": { + "imdb_id": "tt2293882", + "title": "Chitose Get You!!" + }, + "7108": { + "imdb_id": "tt2552224", + "title": "Vividred Operation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7109": { + "imdb_id": "tt2309312", + "title": "Say \"I Love You\"", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7113": { + "imdb_id": "tt2329220", + "title": "Btooom!" + }, + "7115": { + "imdb_id": "tt2704454", + "title": "Little Witch Academia" + }, + "7116": { + "imdb_id": "tt2807626", + "title": "Death Billiards" + }, + "7117": { + "imdb_id": "tt2595474", + "title": "Encouragement of Climb", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8201": { + "imdb_id": "tt2595474", + "title": "Encouragement of Climb", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13583": { + "imdb_id": "tt2595474", + "title": "Encouragement of Climb", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44193": { + "imdb_id": "tt2595474", + "fanartLogoId": "157248", + "title": "Encouragement of Climb: Next Summit", + "fromSeason": 4, + "fromEpisode": 1 + }, + "7766": { + "imdb_id": "tt2595474", + "title": "Encouragement of Climb", + "fromSeason": 0, + "fromEpisode": 1 + }, + "9783": { + "imdb_id": "tt2595474", + "title": "Encouragement of Climb", + "fromSeason": 0, + "fromEpisode": 2 + }, + "13585": { + "imdb_id": "tt2595474", + "title": "Encouragement of Climb", + "fromSeason": 0, + "fromEpisode": 4 + }, + "7123": { + "imdb_id": "tt2150751", + "title": "Chihayafuru", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7814": { + "imdb_id": "tt2150751", + "title": "Chihayafuru", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7125": { + "imdb_id": "tt2377452", + "title": "K", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9964": { + "imdb_id": "tt2377452", + "title": "K", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7129": { + "imdb_id": "tt2425098", + "title": "Magi: The Kingdom of Magic", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7130": { + "imdb_id": "tt2342748", + "title": "Sasami-san@Ganbaranai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7132": { + "imdb_id": "tt2341171", + "title": "Medaka Box", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7143": { + "imdb_id": "tt6163360", + "title": "Recorder to Randoseru", + "fromSeason": 2, + "fromEpisode": 13 + }, + "7146": { + "imdb_id": "tt2338857", + "title": "Hiiro no Kakera", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7156": { + "imdb_id": "tt2309390", + "title": "Yurumate3Dei" + }, + "7157": { + "imdb_id": "tt2320220", + "title": "Kamisama Kiss", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7158": { + "imdb_id": "tt2359704", + "fanartLogoId": "43185", + "title": "JoJo's Bizarre Adventure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8063": { + "imdb_id": "tt2359704", + "fanartLogoId": "94317", + "title": "JoJo's Bizarre Adventure", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8739": { + "imdb_id": "tt2359704", + "fanartLogoId": "94317", + "title": "JoJo's Bizarre Adventure", + "fromSeason": 2, + "fromEpisode": 25 + }, + "11459": { + "imdb_id": "tt2359704", + "fanartLogoId": "144858", + "title": "JoJo's Bizarre Adventure", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41410": { + "imdb_id": "tt2359704", + "fanartLogoId": "94338", + "title": "JoJo's Bizarre Adventure", + "fromSeason": 4, + "fromEpisode": 1 + }, + "44294": { + "imdb_id": "tt2359704", + "fanartLogoId": "144820", + "title": "JoJo's Bizarre Adventure", + "fromSeason": 5, + "fromEpisode": 1 + }, + "46010": { + "imdb_id": "tt2359704", + "fanartLogoId": "144820", + "title": "JoJo's Bizarre Adventure", + "fromSeason": 5, + "fromEpisode": 13 + }, + "46598": { + "imdb_id": "tt2359704", + "fanartLogoId": "144820", + "title": "JoJo's Bizarre Adventure", + "fromSeason": 5, + "fromEpisode": 25 + }, + "3136": { + "imdb_id": "tt6490990", + "title": "JoJo's Bizarre Adventure: Phantom Blood" + }, + "7160": { + "imdb_id": "tt2321542", + "title": "Love, Chunibyo & Other Delusions", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7705": { + "imdb_id": "tt2321542", + "title": "Love, Chunibyo & Other Delusions", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7293": { + "imdb_id": "tt2321542", + "title": "Love, Chunibyo & Other Delusions", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7330": { + "imdb_id": "tt2321542", + "title": "Love, Chunibyo & Other Delusions", + "fromSeason": 0, + "fromEpisode": 7 + }, + "7556": { + "imdb_id": "tt2321542", + "title": "Love, Chunibyo & Other Delusions", + "fromSeason": 0, + "fromEpisode": 14 + }, + "7162": { + "imdb_id": "tt2552240", + "title": "Oreshura" + }, + "7163": { + "imdb_id": "tt3124992", + "title": "Sailor Moon Crystal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7165": { + "imdb_id": "tt2305660", + "title": "Ixion Saga DT" + }, + "7168": { + "imdb_id": "tt2595478", + "title": "GJ-bu" + }, + "7169": { + "imdb_id": "tt2703720", + "title": "My Teen Romantic Comedy SNAFU", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8478": { + "imdb_id": "tt2703720", + "title": "My Teen Romantic Comedy SNAFU", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42194": { + "imdb_id": "tt2703720", + "title": "My Teen Romantic Comedy SNAFU", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7748": { + "imdb_id": "tt2703720", + "title": "My Teen Romantic Comedy SNAFU", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12045": { + "imdb_id": "tt2703720", + "title": "My Teen Romantic Comedy SNAFU", + "fromSeason": 0, + "fromEpisode": 2 + }, + "43910": { + "imdb_id": "tt2703720", + "title": "My Teen Romantic Comedy SNAFU", + "fromSeason": 0, + "fromEpisode": 3 + }, + "7172": { + }, + "7173": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8003": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 2, + "fromEpisode": 1 + }, + "9095": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11438": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 4, + "fromEpisode": 1 + }, + "7858": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7861": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 0, + "fromEpisode": 6 + }, + "8661": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 0, + "fromEpisode": 7 + }, + "8831": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 0, + "fromEpisode": 12 + }, + "11176": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 0, + "fromEpisode": 13 + }, + "12965": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 0, + "fromEpisode": 18 + }, + "41391": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 0, + "fromEpisode": 25 + }, + "42223": { + "imdb_id": "tt2904426", + "title": "Fate/kaleid liner Prisma Illya", + "fromSeason": 0, + "fromEpisode": 26 + }, + "12555": { + "imdb_id": "tt7283066", + "title": "Fate/Kaleid Liner Prisma Illya: The Movie - Oath Under Snow" + }, + "7174": { + "imdb_id": "tt2552230", + "title": "Maoyuu Maou Yuusha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7196": { + "imdb_id": "tt3651508", + "title": "Kyou no Asuka Show", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7200": { + "imdb_id": "tt2323836", + "title": "Anohana: The Flower We Saw That Day - The Movie" + }, + "7202": { + "imdb_id": "tt6311828", + "title": "Litchi DE Hikari Club" + }, + "7203": { + "imdb_id": "tt2595486", + "title": "Love Live!: School Idol Project", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7871": { + "imdb_id": "tt2595486", + "title": "Love Live!: School Idol Project", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8055": { + "imdb_id": "tt2595486", + "title": "Love Live!: School Idol Project", + "fromSeason": 0, + "fromEpisode": 6 + }, + "11006": { + "imdb_id": "tt2595486", + "title": "Love Live!: School Idol Project", + "fromSeason": 0, + "fromEpisode": 7 + }, + "7205": { + "imdb_id": "tt2398674", + "title": "Aikatsu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7972": { + "imdb_id": "tt2398674", + "title": "Aikatsu!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "9096": { + "imdb_id": "tt2398674", + "title": "Aikatsu!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11142": { + "imdb_id": "tt2398674", + "title": "Aikatsu!", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11868": { + "imdb_id": "tt9864008", + "title": "Aikatsu Stars!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41015": { + "imdb_id": "tt9864132", + "title": "Aikatsu Friends!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42169": { + "imdb_id": "tt9864132", + "title": "Aikatsu Friends!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42497": { + "imdb_id": "tt13856702", + "title": "Aikatsu on Parade!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43104": { + "imdb_id": "tt13856702", + "title": "Aikatsu on Parade!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43827": { + "imdb_id": "tt21104776", + "title": "Aikatsu Planet!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7209": { + "imdb_id": "tt2552204", + "title": "Amnesia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7213": { + "imdb_id": "tt2552290", + "title": "Cuticle Detective Inaba" + }, + "7216": { + "imdb_id": "tt2360110", + "title": "Senran Kagura: Ninja Flash!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13690": { + "imdb_id": "tt2360110", + "title": "Senran Kagura: Ninja Flash!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7818 ": { + "imdb_id": "tt2360110", + "title": "Senran Kagura: Ninja Flash!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "10005": { + "imdb_id": "tt2360110", + "title": "Senran Kagura: Ninja Flash!", + "fromSeason": 0, + "fromEpisode": 7 + }, + "7217": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7220": { + "imdb_id": "tt2391164", + "title": "World War Blue" + }, + "7233": { + "imdb_id": "tt2622974", + "title": "The Hentai Prince and the Stony Cat", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8235": { + "imdb_id": "tt2622974", + "title": "The Hentai Prince and the Stony Cat", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7234": { + "imdb_id": "tt4769824", + "title": "In This Corner of the World" + }, + "7238": { + "imdb_id": "tt2595492", + "title": "Wooser no Sono Higurashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7239": { + "imdb_id": "tt2575690", + "title": "Problem Children Are Coming from Another World, Aren't They?" + }, + "7240": { + "imdb_id": "tt2598466", + "title": "One Piece: Episode of Nami - Koukaishi no Namida to Nakama no Kizuna" + }, + "7241": { + "imdb_id": "tt2374144", + "title": "Gintama the Movie: The Final Chapter - Be Forever Yorozuya" + }, + "7244": { + "imdb_id": "tt2074011", + "title": "Samurai Girls" + }, + "7245": { + "imdb_id": "tt2552262", + "title": "The Troubled Life of Miss Kotoura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7477": { + "imdb_id": "tt2552262", + "title": "The Troubled Life of Miss Kotoura", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7273": { + "imdb_id": "tt2391599", + "title": "Oshiri kajiri mushi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7278": { + "imdb_id": "tt2575684", + "fanartLogoId": "90339", + "title": "Date a Live", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7864": { + "imdb_id": "tt2575684", + "fanartLogoId": "90338", + "title": "Date a Live", + "fromSeason": 2, + "fromEpisode": 1 + }, + "14040": { + "imdb_id": "tt2575684", + "fanartLogoId": "93403", + "title": "Date a Live", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43065": { + "imdb_id": "tt2575684", + "fanartLogoId": "148982", + "title": "Date a Live", + "fromSeason": 4, + "fromEpisode": 1 + }, + "46207": { + "imdb_id": "tt2575684", + "title": "Date a Live", + "fromSeason": 5, + "fromEpisode": 1 + }, + "7839": { + "imdb_id": "tt2575684", + "title": "Date a Live", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8511": { + "imdb_id": "tt2575684", + "title": "Date a Live", + "fromSeason": 0, + "fromEpisode": 2 + }, + "42553": { + "imdb_id": "tt2575684", + "title": "Date a Live", + "fromSeason": 0, + "fromEpisode": 4 + }, + "43355": { + "imdb_id": "tt2575684", + "title": "Date a Live", + "fromSeason": 0, + "fromEpisode": 5 + }, + "8512": { + "imdb_id": "tt5331768", + "title": "Date a Live Movie: Mayuri Judgement" + }, + "7280": { + "imdb_id": "tt2904656", + "title": "Brothers Conflict", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7284": { + "imdb_id": "tt2575722", + "title": "Hakkenden: Eight Dogs of the East", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7288": { + "imdb_id": "tt2263799", + "title": "Phi Brain: Puzzle of God", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7294": { + "imdb_id": "tt2575678", + "title": "Nekomonogatari (Kuro)" + }, + "7295": { + "imdb_id": "tt2564106", + "title": "Nyaruko: Crawling with Love", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7303": { + "imdb_id": "tt2552188", + "title": "Senyuu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7305": { + "imdb_id": "tt2431934", + "title": "Saint Young Men" + }, + "7306": { + "imdb_id": "tt6266522", + "title": "Saint Oniisan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7314": { + "imdb_id": "tt2622982", + "fanartLogoId": "56313", + "title": "The Devil Is a Part-Timer!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44113": { + "imdb_id": "tt2622982", + "fanartLogoId": "158206", + "title": "The Devil Is a Part-Timer!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46550": { + "imdb_id": "tt2622982", + "fanartLogoId": "158206", + "title": "The Devil Is a Part-Timer!", + "fromSeason": 2, + "fromEpisode": 13 + }, + "47705": { + "imdb_id": "tt2622982", + "fanartLogoId": "158206", + "title": "The Devil Is a Part-Timer!", + "fromSeason": 0, + "fromEpisode": 3 + }, + "7325": { + "imdb_id": "tt2703708", + "title": "Ginga Kikoutai: Majestic Prince" + }, + "7332": { + "imdb_id": "tt2904660", + "title": "Fantasista Doll", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7338": { + "imdb_id": "tt2622978", + "title": "Yuyushiki" + }, + "7355": { + "imdb_id": "tt2250034", + "title": "Kokoro Connect", + "fromSeason": 1, + "fromEpisode": 14 + }, + "7356": { + "imdb_id": "tt2575708", + "title": "Zettai Karen Children: The Unlimited - Hyoubu Kyousuke", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7358": { + "imdb_id": "tt2904550", + "title": "Sunday Without God", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7989": { + "imdb_id": "tt2904550", + "title": "Sunday Without God", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7359": { + "imdb_id": "tt3104072", + "title": "Tokyo Ravens" + }, + "7370": { + "imdb_id": "tt3104236", + "title": "A Lull in the Sea" + }, + "7375": { + "imdb_id": "tt3449776", + "title": "Saki: Zenkoku-hen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7379": { + "imdb_id": "tt2859264", + "title": "Hyperdimension Neptunia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8071": { + "imdb_id": "tt2859264", + "title": "Hyperdimension Neptunia", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7382": { + "imdb_id": "tt2575728", + "title": "Ai Mai Mi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7387": { + "imdb_id": "tt2636546", + "title": "Flowers of Evil" + }, + "7388": { + "imdb_id": "tt2632022", + "title": "Bakumatsu Gijinden Roman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7404": { + "imdb_id": "tt2603474", + "title": "Ishida to Asakura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7410": { + "imdb_id": "tt2904686", + "title": "Love Lab" + }, + "7411": { + "imdb_id": "tt2623000", + "title": "The Severing Crime Edge" + }, + "7421": { + "imdb_id": "tt2623042", + "title": "Photo Kano", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7423": { + "imdb_id": "tt2595472", + "title": "Boku no imôto wa 'Ôsaka okan'" + }, + "7425": { + "imdb_id": "tt2560604", + "title": "Tamako Market", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7772": { + "imdb_id": "tt2560604", + "title": "Tamako Market", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7426": { + "imdb_id": "tt4621212", + "title": "DokiDoki! PreCure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7442": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8671": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13569": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41982": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 3, + "fromEpisode": 13 + }, + "42422": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 4, + "fromEpisode": 1 + }, + "44240": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 4, + "fromEpisode": 17 + }, + "46038": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 4, + "fromEpisode": 29 + }, + "47132": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 4, + "fromEpisode": 30 + }, + "7838": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7889": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 0, + "fromEpisode": 2 + }, + "7694": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 0, + "fromEpisode": 7 + }, + "8674": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 0, + "fromEpisode": 15 + }, + "13718": { + "imdb_id": "tt2560140", + "title": "Attack on Titan", + "fromSeason": 0, + "fromEpisode": 20 + }, + "7446": { + "imdb_id": "tt2698484", + "title": "Devil Survivor 2: The Animation" + }, + "7448": { + "imdb_id": "tt2703706", + "title": "Arata the Legend" + }, + "7449": { + "imdb_id": "tt2632044", + "title": "Gargantia on the Verdurous Planet", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7751": { + "imdb_id": "tt2632044", + "title": "Gargantia on the Verdurous Planet", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8592": { + "imdb_id": "tt2632044", + "title": "Gargantia on the Verdurous Planet", + "fromSeason": 0, + "fromEpisode": 14 + }, + "7872": { + "imdb_id": "tt2632044", + "title": "Gargantia on the Verdurous Planet", + "fromSeason": 0, + "fromEpisode": 15 + }, + "8419": { + "imdb_id": "tt2632044", + "title": "Gargantia on the Verdurous Planet", + "fromSeason": 0, + "fromEpisode": 17 + }, + "7469": { + "imdb_id": "tt2902582", + "title": "Danganronpa: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7485": { + "imdb_id": "tt2013293", + "title": "The Wind Rises" + }, + "7486": { + "imdb_id": "tt2576852", + "title": "The Tale of The Princess Kaguya" + }, + "7487": { + "imdb_id": "tt2632048", + "title": "Kakumeiki Valvrave", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7496": { + "imdb_id": "tt1899022", + "title": "The World God Only Knows", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7498": { + "imdb_id": "tt5879522", + "title": "Gdgd Fairies", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7501": { + "imdb_id": "tt2904582", + "title": "Kinmoza!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7504": { + "imdb_id": "tt2963556", + "title": "WataMote: No Matter How I Look at It, It's You Guys' Fault I'm Not Popular!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7511": { + "imdb_id": "tt3498252", + "title": "Inferno Cop", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7515": { + "imdb_id": "tt2591814", + "title": "The Garden of Words" + }, + "7544": { + "imdb_id": "tt2904420", + "title": "Makai Ouji: Devils and Realist" + }, + "7549": { + "imdb_id": "tt2703716", + "title": "Namiuchigiwa no Muromi-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7553": { + "imdb_id": "tt2909912", + "title": "Silver Spoon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7573": { + "imdb_id": "tt2922300", + "title": "Monogatari Series: Second Season" + }, + "7575": { + "imdb_id": "tt6278620", + "title": "Fafner Exodus", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10854": { + "imdb_id": "tt6278620", + "title": "Fafner Exodus", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7576": { + "imdb_id": "tt2781830", + "title": "Aiura" + }, + "7589": { + }, + "7617": { + "imdb_id": "tt2942202", + "title": "Unbreakable Machine Doll", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8073": { + "imdb_id": "tt2942202", + "title": "Unbreakable Machine Doll", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7622": { + "imdb_id": "tt2942218", + "title": "Log Horizon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8313": { + "imdb_id": "tt2942218", + "title": "Log Horizon", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42957": { + "imdb_id": "tt2942218", + "title": "Log Horizon", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7644": { + "imdb_id": "tt3037954", + "title": "Leviathan: The Last Defense" + }, + "6064": { + "imdb_id": "tt4563516", + "title": "DD Fist of the North Star", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7646": { + "imdb_id": "tt4563516", + "title": "DD Fist of the North Star", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11080": { + "imdb_id": "tt4563516", + "title": "DD Fist of the North Star", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7653": { + "imdb_id": "tt2781848", + "title": "Mushibugyo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7654": { + "imdb_id": "tt5819432", + "title": "Sparrow's Hotel" + }, + "7656": { + "imdb_id": "tt2250064", + "title": "So, I Can't Play H!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7180": { + "imdb_id": "tt2250064", + "title": "So, I Can't Play H!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7657": { + "imdb_id": "tt2250100", + "title": "The Ambition of Oda Nobuna" + }, + "7660": { + "imdb_id": "tt0940874", + "title": "Air", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7661": { + "imdb_id": "tt1506339", + "title": "Time of Eve" + }, + "7664": { + "imdb_id": "tt2904418", + "title": "Free!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8273": { + "imdb_id": "tt2904418", + "title": "Free!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "14010": { + "imdb_id": "tt2904418", + "title": "Free!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8762": { + "imdb_id": "tt2904418", + "title": "Free!", + "fromSeason": 0, + "fromEpisode": 8 + }, + "12549": { + "imdb_id": "tt2904418", + "title": "Free!", + "fromSeason": 0, + "fromEpisode": 12 + }, + "41884": { + "imdb_id": "tt2904418", + "title": "Free!", + "fromSeason": 0, + "fromEpisode": 17 + }, + "10761": { + "imdb_id": "tt4872210", + "title": "High Speed! Free! Starting Summer" + }, + "13562": { + "imdb_id": "tt6799508", + "title": "Free! Timeless Medley: The Bond" + }, + "13567": { + "imdb_id": "tt6799518", + "title": "Free! Timeless Medley: The Promise" + }, + "42357": { + "imdb_id": "tt14531302", + "title": "Free! the Final Stroke" + }, + "44651": { + "imdb_id": "tt19849494", + "title": "Free! The Final Stroke Part 2" + }, + "42380": { + "imdb_id": "tt10621390", + "title": "Free! Road to the World - The Dream" + }, + "7665": { + "imdb_id": "tt0398412", + "title": "Magical☆Shopping Arcade Abenobashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7666": { + "imdb_id": "tt1301958", + "fanartLogoId": "91800", + "title": "Shikabane Hime", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7667": { + "imdb_id": "tt1301958", + "fanartLogoId": "120858", + "title": "Shikabane Hime", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3695": { + "imdb_id": "tt1301958", + "fanartLogoId": "120858", + "title": "Shikabane Hime", + "fromSeason": 0, + "fromEpisode": 1 + }, + "4868": { + "imdb_id": "tt1301958", + "title": "Shikabane Hime", + "fromSeason": 0, + "fromEpisode": 2 + }, + "7668": { + "imdb_id": "tt1568632", + "title": "Sound of the Sky", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4724": { + "imdb_id": "tt1568632", + "title": "Sound of the Sky", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7669": { + "imdb_id": "tt2904596", + "title": "Servant X Service" + }, + "7670": { + "imdb_id": "tt2907028", + "title": "Day Break Illusion" + }, + "7671": { + "imdb_id": "tt2904622", + "title": "Stella Women's Academy, High School Division Class C³" + }, + "7672": { + "imdb_id": "tt2662790", + "title": "Kimi no Iru Machi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "6492": { + "imdb_id": "tt2662790", + "title": "Kimi no Iru Machi", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8185": { + "imdb_id": "tt2662790", + "title": "Kimi no Iru Machi", + "fromSeason": 0, + "fromEpisode": 3 + }, + "7673": { + "imdb_id": "tt2904570", + "title": "Dogs and Scissors" + }, + "7675": { + "imdb_id": "tt2909936", + "title": "The Eccentric Family", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7676": { + "imdb_id": "tt2942188", + "title": "Chronicles of the Going Home Club" + }, + "7678": { + "imdb_id": "tt3124820", + "title": "Rozen Maiden" + }, + "7679": { + "imdb_id": "tt2575722", + "title": "Hakkenden: Eight Dogs of the East", + "fromSeason": 2, + "fromEpisode": 1 + }, + "6648": { + "imdb_id": "tt2404499", + "title": "Kingdom", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7680": { + "imdb_id": "tt2404499", + "title": "Kingdom", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43037": { + "imdb_id": "tt2404499", + "title": "Kingdom", + "fromSeason": 3, + "fromEpisode": 1 + }, + "45324": { + "imdb_id": "tt2404499", + "title": "Kingdom", + "fromSeason": 4, + "fromEpisode": 1 + }, + "46564": { + "imdb_id": "tt2404499", + "title": "Kingdom", + "fromSeason": 5, + "fromEpisode": 1 + }, + "7681": { + "imdb_id": "tt2959370", + "title": "Gatchaman Crowds", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8180": { + "imdb_id": "tt2959370", + "title": "Gatchaman Crowds", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7682": { + "imdb_id": "tt3392330", + "title": "Short Peace" + }, + "7768": { + "imdb_id": "tt3398976", + "title": "Knights of Sidonia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8670": { + "imdb_id": "tt3398976", + "title": "Knights of Sidonia", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13648": { + "imdb_id": "tt3398976", + "title": "Knights of Sidonia", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7693": { + }, + "7695": { + "imdb_id": "tt6163360", + "title": "Recorder to Randoseru", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7696": { + "imdb_id": "tt2425098", + "title": "Magi: The Kingdom of Magic", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7698": { + "imdb_id": "tt2632048", + "title": "Kakumeiki Valvrave", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7699": { + "imdb_id": "tt3105422", + "title": "Ace of Diamond", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10741": { + "imdb_id": "tt3105422", + "title": "Ace of Diamond", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42160": { + "imdb_id": "tt3105422", + "title": "Ace of Diamond", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8792": { + "imdb_id": "tt3105422", + "title": "Ace of Diamond", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12725": { + "imdb_id": "tt3105422", + "title": "Ace of Diamond", + "fromSeason": 0, + "fromEpisode": 4 + }, + "7700": { + "imdb_id": "tt2942228", + "fanartLogoId": "98131", + "title": "Yowamushi Pedal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8635": { + "imdb_id": "tt2942228", + "fanartLogoId": "93112", + "title": "Yowamushi Pedal", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11583": { + "imdb_id": "tt2942228", + "fanartLogoId": "98665", + "title": "Yowamushi Pedal", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13594": { + "imdb_id": "tt2942228", + "fanartLogoId": "98656", + "title": "Yowamushi Pedal", + "fromSeason": 4, + "fromEpisode": 1 + }, + "45562": { + "imdb_id": "tt2942228", + "fanartLogoId": "92532", + "title": "Yowamushi Pedal", + "fromSeason": 5, + "fromEpisode": 1 + }, + "7703": { + "imdb_id": "tt3196320", + "title": "Gingitsune" + }, + "7704": { + "imdb_id": "tt7062798", + "title": "Little Busters! Refrain" + }, + "7706": { + "imdb_id": "tt3774792", + "title": "Tokyo ESP" + }, + "7707": { + "imdb_id": "tt3114350", + "title": "Diabolik Lovers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7708": { + "imdb_id": "tt3105452", + "title": "Golden Time" + }, + "7711": { + "imdb_id": "tt3114358", + "title": "Non Non Biyori", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8410": { + "imdb_id": "tt3114358", + "title": "Non Non Biyori", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42349": { + "imdb_id": "tt3114358", + "title": "Non Non Biyori", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8187": { + "imdb_id": "tt3114358", + "title": "Non Non Biyori", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11767": { + "imdb_id": "tt3114358", + "title": "Non Non Biyori", + "fromSeason": 0, + "fromEpisode": 2 + }, + "44958": { + "imdb_id": "tt3114358", + "title": "Non Non Biyori", + "fromSeason": 0, + "fromEpisode": 4 + }, + "7712": { + "imdb_id": "tt3114390", + "title": "KILL La KILL", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8130": { + "imdb_id": "tt3114390", + "title": "KILL La KILL", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7713": { + "imdb_id": "tt11724248", + "title": "Wish Upon the Pleiades", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7714": { + "imdb_id": "tt3114376", + "title": "Beyond the Boundary", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7715": { + "imdb_id": "tt2789238", + "title": "Strike the Blood", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12559": { + "imdb_id": "tt2789238", + "title": "Strike the Blood", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41055": { + "imdb_id": "tt2789238", + "title": "Strike the Blood", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42606": { + "imdb_id": "tt2789238", + "title": "Strike the Blood", + "fromSeason": 4, + "fromEpisode": 1 + }, + "44834": { + "imdb_id": "tt2789238", + "title": "Strike the Blood", + "fromSeason": 5, + "fromEpisode": 1 + }, + "10758": { + "imdb_id": "tt2789238", + "title": "Strike the Blood", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42612": { + "imdb_id": "tt2789238", + "title": "Strike the Blood", + "fromSeason": 0, + "fromEpisode": 3 + }, + "7716": { + "imdb_id": "tt0367439", + "title": "Wolf's Rain", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7718": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7719": { + "imdb_id": "tt2552188", + "title": "Senyuu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7722": { + "imdb_id": "tt2942194", + "title": "BlazBlue: Alter Memory" + }, + "7725": { + "imdb_id": "tt3196524", + "title": "I Couldn't Become a Hero, So I Reluctantly Decided to Get a Job." + }, + "7726": { + "imdb_id": "tt0266171", + "title": "Outlaw Star", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7728": { + "imdb_id": "tt2716982", + "title": "Nura: Rise of the Yokai Clan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7729": { + "imdb_id": "tt1409383", + "title": "Big Windup!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5095": { + "imdb_id": "tt1409383", + "title": "Big Windup!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7744": { + "imdb_id": "tt3247574", + "title": "Gifuu Doudou!!: Kanetsugu to Keiji", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7753": { + "imdb_id": "tt1209393", + "title": "Vampire Knight", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3023": { + "imdb_id": "tt1209393", + "title": "Vampire Knight", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7758": { + "imdb_id": "tt1132207", + "title": "Moetan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7760": { + "imdb_id": "tt0997313", + "title": "Sasami mahô shôjo kurabu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "1693": { + "imdb_id": "tt0997313", + "title": "Sasami mahô shôjo kurabu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7761": { + "imdb_id": "tt4744926", + "title": "Tonari no Seki kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7763": { + "imdb_id": "tt0961173", + "title": "Kamichu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "450": { + "imdb_id": "tt0961173", + "title": "Kamichu!", + "fromSeason": 1, + "fromEpisode": 13 + }, + "7767": { + "imdb_id": "tt3792116", + "title": "Love Stage!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7769": { + "imdb_id": "tt3104246", + "title": "Aoki Hagane no Arpeggio: Ars Nova" + }, + "7770": { + "imdb_id": "tt3196730", + "title": "The Pilot's Love Song", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7771": { + "imdb_id": "tt3358442", + "title": "Nobunagun" + }, + "7774": { + "imdb_id": "tt3199306", + "title": "Wake Up, Girls!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7781": { + "imdb_id": "tt0769997", + "title": "Jinki: Extend", + "fromSeason": 1, + "fromEpisode": 1 + }, + "119": { + "imdb_id": "tt0769997", + "title": "Jinki: Extend", + "fromSeason": 1, + "fromEpisode": 13 + }, + "7782": { + "imdb_id": "tt3199286", + "title": "No-Rin" + }, + "7786": { + "imdb_id": "tt0115104", + "title": "Sorcerer Hunters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "455": { + "imdb_id": "tt0115104", + "title": "Sorcerer Hunters", + "fromSeason": 0, + "fromEpisode": 1 + }, + "1105": { + "imdb_id": "tt0115104", + "title": "Sorcerer Hunters", + "fromSeason": 0, + "fromEpisode": 4 + }, + "7795": { + "imdb_id": "tt3411198", + "title": "Future Card Buddyfight", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10600": { + "imdb_id": "tt3411198", + "title": "Future Card Buddyfight", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12021": { + "imdb_id": "tt3411198", + "title": "Future Card Buddyfight", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13314": { + "imdb_id": "tt3411198", + "title": "Future Card Buddyfight", + "fromSeason": 4, + "fromEpisode": 1 + }, + "41031": { + "imdb_id": "tt3411198", + "title": "Future Card Buddyfight", + "fromSeason": 5, + "fromEpisode": 1 + }, + "41212": { + "imdb_id": "tt3411198", + "title": "Future Card Buddyfight", + "fromSeason": 6, + "fromEpisode": 1 + }, + "7801": { + "imdb_id": "tt3178174", + "title": "Giovanni's Island" + }, + "7821": { + "imdb_id": "tt3115338", + "title": "Nisekoi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9178": { + "imdb_id": "tt3115338", + "title": "Nisekoi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7826": { + "imdb_id": "tt2049430", + "title": "Digimon Adventure" + }, + "7827": { + "imdb_id": "tt0313441", + "title": "Digimon Adventure: Our War Game!" + }, + "7835": { + "imdb_id": "tt3169618", + "title": "Samurai Flamenco" + }, + "7836": { + "imdb_id": "tt3198678", + "title": "Galilei Donna" + }, + "7837": { + "imdb_id": "tt3196310", + "title": "Outbreak Company" + }, + "7840": { + "imdb_id": "tt3111906", + "title": "Yami shibai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8359": { + "imdb_id": "tt3111906", + "title": "Yami shibai", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11484": { + "imdb_id": "tt3111906", + "title": "Yami shibai", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12783": { + "imdb_id": "tt3111906", + "title": "Yami shibai", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13576": { + "imdb_id": "tt3111906", + "title": "Yami shibai", + "fromSeason": 5, + "fromEpisode": 1 + }, + "41315": { + "imdb_id": "tt3111906", + "title": "Yami shibai", + "fromSeason": 6, + "fromEpisode": 1 + }, + "42359": { + "imdb_id": "tt3111906", + "title": "Yami shibai", + "fromSeason": 7, + "fromEpisode": 1 + }, + "43797": { + "imdb_id": "tt3111906", + "title": "Yamishibai: Japanese Ghost Stories", + "fromSeason": 8, + "fromEpisode": 1 + }, + "44664": { + "imdb_id": "tt3111906", + "title": "Yamishibai: Japanese Ghost Stories", + "fromSeason": 9, + "fromEpisode": 1 + }, + "45601": { + "imdb_id": "tt3111906", + "title": "Yamishibai: Japanese Ghost Stories", + "fromSeason": 10, + "fromEpisode": 1 + }, + "47389": { + "imdb_id": "tt3111906", + "title": "Yamishibai: Japanese Ghost Stories", + "fromSeason": 11, + "fromEpisode": 1 + }, + "48249": { + "imdb_id": "tt3111906", + "title": "Yamishibai: Japanese Ghost Stories", + "fromSeason": 12, + "fromEpisode": 1 + }, + "48934": { + "imdb_id": "tt3111906", + "title": "Yamishibai: Japanese Ghost Stories", + "fromSeason": 13, + "fromEpisode": 1 + }, + "49380": { + "imdb_id": "tt3111906", + "title": "Yamishibai: Japanese Ghost Stories", + "fromSeason": 14, + "fromEpisode": 1 + }, + "7843": { + "imdb_id": "tt3169640", + "title": "Yozakura Quartet: Hana no Uta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7844": { + "imdb_id": "tt3396572", + "title": "Riddle Story of Devil", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7845": { + "imdb_id": "tt3185682", + "title": "Pupa" + }, + "7846": { + "imdb_id": "tt3105434", + "title": "My Mental Choices Are Completely Interfering with My School Romantic Comedy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8188": { + "imdb_id": "tt3105434", + "title": "My Mental Choices Are Completely Interfering with My School Romantic Comedy", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7849": { + "imdb_id": "tt3104096", + "title": "Warukyûre romantse" + }, + "7851": { + "imdb_id": "tt3105446", + "title": "Meganebu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7852": { + "imdb_id": "tt3213642", + "title": "Gundam Build Fighters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7860": { + "imdb_id": "tt2909912", + "title": "Silver Spoon", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7862": { + "imdb_id": "tt4831682", + "title": "Little Witch Academia: The Enchanted Parade" + }, + "7868": { + "imdb_id": "tt0188327", + "title": "Cyborg 009", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7870": { + "imdb_id": "tt10342048", + "title": "Kyousogiga" + }, + "7875": { + "imdb_id": "tt3121602", + "title": "Toei Robot Girls Z", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10307": { + "imdb_id": "tt3121602", + "title": "Toei Robot Girls Z", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7877": { + "imdb_id": "tt3432596", + "title": "Dragonar Academy" + }, + "7878": { + "imdb_id": "tt3741446", + "title": "Blade Dance of the Elementalers" + }, + "7879": { + "imdb_id": "tt3294136", + "title": "Magical Warfare", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7880": { + "imdb_id": "tt3431758", + "title": "No Game, No Life", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8534": { + "imdb_id": "tt3431758", + "title": "No Game, No Life", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7881": { + "imdb_id": "tt3225270", + "fanartLogoId": "56312", + "title": "Noragami", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10800": { + "imdb_id": "tt3225270", + "fanartLogoId": "98546", + "title": "Noragami", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8152": { + "imdb_id": "tt3225270", + "title": "Noragami", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11243": { + "imdb_id": "tt3225270", + "title": "Noragami", + "fromSeason": 0, + "fromEpisode": 3 + }, + "7882": { + "imdb_id": "tt3621796", + "title": "Fate/stay night: Unlimited Blade Works", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10052": { + "imdb_id": "tt3621796", + "title": "Fate/stay night: Unlimited Blade Works", + "fromSeason": 1, + "fromEpisode": 13 + }, + "9718": { + "imdb_id": "tt3621796", + "title": "Fate/stay night: Unlimited Blade Works", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11321": { + "imdb_id": "tt3621796", + "title": "Fate/stay night: Unlimited Blade Works", + "fromSeason": 0, + "fromEpisode": 2 + }, + "7887": { + "imdb_id": "tt0771645", + "title": "Aoki Densetsu Shoot!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7894": { + "imdb_id": "tt3354352", + "title": "One Piece: Episode of Merry - Mou Hitori no Nakama no Monogatari" + }, + "7898": { + "imdb_id": "tt3417880", + "title": "Wizard Barristers: Benmashi Cecil" + }, + "7901": { + "imdb_id": "tt2320220", + "title": "Kamisama Kiss", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7904": { + "imdb_id": "tt5284414", + "title": "Girls und Panzer the Movie" + }, + "7907": { + "imdb_id": "tt3957472", + "title": "Laughing Under the Clouds" + }, + "7910": { + "imdb_id": "tt3158246", + "title": "Space Dandy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8312": { + "imdb_id": "tt3158246", + "title": "Space Dandy", + "fromSeason": 1, + "fromEpisode": 14 + }, + "8741": { + "imdb_id": "tt3158246", + "title": "Space Dandy", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7911": { + "imdb_id": "tt3198674", + "title": "Miss Monochrome", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10765": { + "imdb_id": "tt3198674", + "title": "Miss Monochrome", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11370": { + "imdb_id": "tt3198674", + "title": "Miss Monochrome", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8515": { + "imdb_id": "tt3198674", + "title": "Miss Monochrome", + "fromSeason": 0, + "fromEpisode": 1 + }, + "9994": { + "imdb_id": "tt3198674", + "title": "Miss Monochrome", + "fromSeason": 0, + "fromEpisode": 2 + }, + "7924": { + "imdb_id": "tt3069742", + "title": "Captain Tsubasa: Road to 2002", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7926": { + "imdb_id": "tt0417299", + "title": "Avatar: The Last Airbender", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7928": { + "imdb_id": "tt0343314", + "title": "Teen Titans", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7929": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8278": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11117": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12279": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13247": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 5, + "fromEpisode": 1 + }, + "41937": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 6, + "fromEpisode": 1 + }, + "42425": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 7, + "fromEpisode": 1 + }, + "42599": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 8, + "fromEpisode": 1 + }, + "42600": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 9, + "fromEpisode": 1 + }, + "45997": { + "imdb_id": "tt19389868", + "title": "RWBY: Ice Queendom", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11013": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12629": { + "imdb_id": "tt3066242", + "title": "RWBY", + "fromSeason": 4, + "fromEpisode": 0 + }, + "7936": { + "imdb_id": "tt0417299", + "title": "Avatar: The Last Airbender", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7937": { + "imdb_id": "tt0417299", + "title": "Avatar: The Last Airbender", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7939": { + "imdb_id": "tt0278238", + "title": "Samurai Jack", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7946": { + "imdb_id": "tt0088595", + "title": "Robotech", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7947": { + "imdb_id": "tt0088595", + "title": "Robotech", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7948": { + "imdb_id": "tt0088595", + "title": "Robotech", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7950": { + "imdb_id": "tt0373732", + "title": "The Boondocks", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7954": { + "imdb_id": "tt0147746", + "title": "Batman of the Future" + }, + "7960": { + "imdb_id": "tt0233298", + "title": "Batman Beyond: Return of the Joker" + }, + "7976": { + "imdb_id": "tt2391599", + "title": "Oshiri kajiri mushi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7978": { + "imdb_id": "tt3198956", + "title": "Sakura Trick" + }, + "7979": { + "imdb_id": "tt2595492", + "title": "Wooser no Sono Higurashi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7980": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 3, + "fromEpisode": 1 + }, + "7982": { + "imdb_id": "tt3909210", + "title": "The Fruit of Grisaia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10155": { + "imdb_id": "tt3909210", + "title": "The Fruit of Grisaia", + "fromSeason": 2, + "fromEpisode": 1 + }, + "10150": { + "imdb_id": "tt3909210", + "title": "The Fruit of Grisaia", + "fromSeason": 0, + "fromEpisode": 1 + }, + "10154": { + "imdb_id": "tt3909210", + "title": "The Fruit of Grisaia", + "fromSeason": 0, + "fromEpisode": 7 + }, + "11322": { + "imdb_id": "tt3909210", + "title": "The Fruit of Grisaia", + "fromSeason": 0, + "fromEpisode": 9 + }, + "13685": { + "imdb_id": "tt3909210", + "title": "The Fruit of Grisaia", + "fromSeason": 0, + "fromEpisode": 14 + }, + "43368": { + "imdb_id": "tt3909210", + "title": "The Fruit of Grisaia", + "fromSeason": 0, + "fromEpisode": 16 + }, + "7987": { + "imdb_id": "tt3451870", + "title": "Captain Earth" + }, + "7988": { + "imdb_id": "tt3417860", + "title": "Inari, Konkon, Koi Iroha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8251": { + "imdb_id": "tt3417860", + "title": "Inari, Konkon, Koi Iroha", + "fromSeason": 0, + "fromEpisode": 1 + }, + "7995": { + "imdb_id": "tt1666278", + "title": "Thundercats", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7996": { + "imdb_id": "tt3563898", + "title": "Brynhildr in the Darkness", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8634": { + "imdb_id": "tt3563898", + "title": "Brynhildr in the Darkness", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8000": { + "imdb_id": "tt3475064", + "title": "Mekakucity Actors" + }, + "8001": { + "imdb_id": "tt3296914", + "title": "D-Frag!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8002": { + "imdb_id": "tt3896784", + "title": "A Good Librarian Like a Good Shepherd", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8008": { + "imdb_id": "tt3517016", + "title": "Chaika the Coffin Princess", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8009": { + "imdb_id": "tt3306838", + "title": "Hozuki's Coolheadedness", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8011": { + "imdb_id": "tt3432310", + "title": "If Her Flag Breaks", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8012": { + "imdb_id": "tt3633818", + "title": "Kiniro No Corda: Blue Sky", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8016": { + "imdb_id": "tt3761860", + "title": "Sabagebu! Survival Game Club!" + }, + "8017": { + "imdb_id": "tt3341534", + "title": "Witch Craft Works", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8257": { + "imdb_id": "tt3341534", + "title": "Witch Craft Works", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8599": { + "imdb_id": "tt3341534", + "title": "Witch Craft Works", + "fromSeason": 0, + "fromEpisode": 2 + }, + "8018": { + "imdb_id": "tt8286670", + "title": "Calamity of a Zombie Girl" + }, + "8024": { + "imdb_id": "tt3306776", + "title": "Bayonetta: Bloody Fate" + }, + "8026": { + "imdb_id": "tt3660104", + "title": "Barakamon" + }, + "8027": { + "imdb_id": "tt3358240", + "title": "Engaged to the Unidentified" + }, + "8030": { + "imdb_id": "tt3294146", + "title": "Z/X: Ignition" + }, + "8031": { + "imdb_id": "tt3399734", + "title": "SoniAni: Super Sonico the Animation" + }, + "8032": { + "imdb_id": "tt3621678", + "title": "Hanamonogatari" + }, + "8034": { + "imdb_id": "tt0466352", + "title": "The Prince of Tennis II OVA vs Genius10", + "fromSeason": 15, + "fromEpisode": 1 + }, + "45312": { + "imdb_id": "tt15660128", + "title": "The Prince of Tennis II: U-17 WORLD CUP", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47585": { + "imdb_id": "tt15660128", + "title": "The Prince of Tennis II: U-17 WORLD CUP", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8039": { + "imdb_id": "tt3639872", + "title": "Kantai Collection: Kan Colle", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10780": { + "imdb_id": "tt3639872", + "title": "Kantai Collection: Kan Colle", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8052": { + "imdb_id": "tt3257166", + "title": "Black Bullet" + }, + "8053": { + "imdb_id": "tt3874528", + "fanartLogoId": "92158", + "title": "The Irregular at Magic High", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42608": { + "imdb_id": "tt3874528", + "fanartLogoId": "175899", + "title": "The Irregular at Magic High", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48389": { + "imdb_id": "tt3874528", + "title": "The Irregular at Magic High", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8341": { + "imdb_id": "tt3874528", + "title": "The Irregular at Magic High", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44397": { + "imdb_id": "tt15497404", + "title": "Mahouka Koukou no Rettousei: Tsuioku Hen" + }, + "8057": { + "imdb_id": "tt3399712", + "title": "Hamatora", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8060": { + "imdb_id": "tt3341584", + "title": "Recently, My Sister is Unusual", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8142": { + "imdb_id": "tt3341584", + "title": "Recently, My Sister is Unusual", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8076": { + "imdb_id": "tt3358426", + "title": "Nobunaga the Fool" + }, + "7927": { + "imdb_id": "tt1695360", + "title": "The Legend of Korra", + "fromSeason": 1, + "fromEpisode": 1 + }, + "7938": { + "imdb_id": "tt1695360", + "title": "The Legend of Korra", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8077": { + "imdb_id": "tt1695360", + "title": "The Legend of Korra", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8706": { + "imdb_id": "tt1695360", + "title": "The Legend of Korra", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11566": {}, + "8082": { + "imdb_id": "tt3399620", + "title": "World Conquest Zvezda Plot", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8083": { + "imdb_id": "tt3358452", + "title": "Oneechan ga Kita" + }, + "8093": { + "imdb_id": "tt3342720", + "title": "Baby Steps", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8094": { + "imdb_id": "tt3498072", + "title": "The Kawai Complex Guide to Manors and Hostel Behavior", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8536": { + "imdb_id": "tt3498072", + "title": "The Kawai Complex Guide to Manors and Hostel Behavior", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8095": { + "imdb_id": "tt3517010", + "title": "Is the Order a Rabbit?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10346": { + "imdb_id": "tt3517010", + "title": "Is the Order a Rabbit?", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42365": { + "imdb_id": "tt3517010", + "title": "Is the Order a Rabbit?", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42364": { + "imdb_id": "tt3517010", + "title": "Is the Order a Rabbit?", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8096": { + "imdb_id": "tt3481364", + "title": "One Week Friends" + }, + "8099": { + "imdb_id": "tt3399788", + "title": "Strange+", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8126": { + "imdb_id": "tt3696476", + "title": "Yu-Gi-Oh! Arc-V", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8133": { + "imdb_id": "tt3398540", + "fanartLogoId": "144854", + "title": "Haikyuu!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10076": { + "imdb_id": "tt3398540", + "fanartLogoId": "91568", + "title": "Haikyuu!!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11935": { + "imdb_id": "tt3398540", + "fanartLogoId": "144853", + "title": "Haikyuu!!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42059": { + "imdb_id": "tt3398540", + "fanartLogoId": "145156", + "title": "Haikyuu!!", + "fromSeason": 4, + "fromEpisode": 1 + }, + "42938": { + "imdb_id": "tt3398540", + "fanartLogoId": "145156", + "title": "Haikyuu!!", + "fromSeason": 4, + "fromEpisode": 14 + }, + "8626": { + "imdb_id": "tt3398540", + "title": "Haikyuu!!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11374": { + "imdb_id": "tt3398540", + "title": "Haikyuu!!", + "fromSeason": 0, + "fromEpisode": 3 + }, + "41556": { + "imdb_id": "tt3398540", + "title": "Haikyuu!!", + "fromSeason": 0, + "fromEpisode": 5 + }, + "42502": { + "imdb_id": "tt3398540", + "title": "Haikyuu!!", + "fromSeason": 0, + "fromEpisode": 8 + }, + "11395": { + "imdb_id": "tt3398540", + "title": "Haikyuu!!", + "fromSeason": 0, + "fromEpisode": 11 + }, + "46336": { + "imdb_id": "tt30476486", + "title": "Haikyu!! Movie: Decisive Battle at the Garbage Dump" + }, + "8135": { + "imdb_id": "tt3413018", + "title": "Tamako rabu sutôrî" + }, + "8138": { + "imdb_id": "tt3774756", + "title": "Hanayamata" + }, + "8139": { + "imdb_id": "tt3399762", + "title": "Buddy Complex", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8143": { + "imdb_id": "tt2362887", + "title": "Uta no prince-sama - maji love 1000%" + }, + "8144": { + "imdb_id": "tt4292186", + "title": "The Disappearance of Nagato Yuki-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8146": { + "imdb_id": "tt3588306", + "title": "Dai Shogun - Great Revolution", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8147": { + "imdb_id": "tt3358020", + "title": "Parasyte: The Maxim" + }, + "8148": { + "imdb_id": "tt3588312", + "title": "The Comic Artist and Assistants", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8525": { + "imdb_id": "tt3588312", + "title": "The Comic Artist and Assistants", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8151": { + "imdb_id": "tt3453204", + "title": "Soul Eater Not!" + }, + "8155": { + "imdb_id": "tt3786608", + "title": "Rail Wars!" + }, + "8157": { + "imdb_id": "tt3815928", + "title": "JINSEI Life Consulting", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8159": { + "imdb_id": "tt3398268", + "title": "When Marnie Was There" + }, + "8160": { + "imdb_id": "tt3448272", + "title": "Kamigami no asobi" + }, + "8162": { + "imdb_id": "tt3519238", + "title": "Nanana's Buried Treasure" + }, + "8163": { + "imdb_id": "tt3451740", + "title": "Daimidaler: Prince vs Penguin Empire" + }, + "8184": {}, + "8192": {}, + "8193": { + "imdb_id": "tt3880898", + "title": "Gekijouban Sekaiichi hatsukoi: Yokozawa Takafumi no baai" + }, + "8194": { + "imdb_id": "tt4219290", + "title": "Sengoku musou Special", + "fromSeason": 1, + "fromEpisode": 13 + }, + "8195": { + "imdb_id": "tt3981938", + "title": "Rage of Bahamut: Genesis", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8199": { + "imdb_id": "tt3950066", + "title": "In Search of the Lost Future", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8200": { + "imdb_id": "tt3465710", + "title": "Wake Up, Girls! 7 Nin No Idol the Movie" + }, + "8246": { + "imdb_id": "tt3615768", + "title": "Blue Spring Ride", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8256": { + "imdb_id": "tt4431276", + "title": "Magi: Sinbad no Bouken", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8258": { + "imdb_id": "tt3590222", + "title": "The World Is Still Beautiful" + }, + "8259": { + "imdb_id": "tt3950084", + "title": "Amagi Brilliant Park", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10610": { + "imdb_id": "tt3950084", + "title": "Amagi Brilliant Park", + "fromSeason": 0, + "fromEpisode": 1 + }, + "10715": { + "imdb_id": "tt3950084", + "title": "Amagi Brilliant Park", + "fromSeason": 0, + "fromEpisode": 8 + }, + "8262": { + "imdb_id": "tt3592032", + "title": "Ping Pong the Animation" + }, + "8263": { + "imdb_id": "tt3658070", + "title": "Inugami-san to Nekoyama-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8838": { + "imdb_id": "tt3658070", + "title": "Inugami-san to Nekoyama-san", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8267": { + "imdb_id": "tt3590246", + "title": "Futsuu no Joshikousei ga [Locodol] Yatte Mita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8270": { + "imdb_id": "tt3742982", + "title": "Akame ga Kill!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8271": { + "imdb_id": "tt3741634", + "fanartLogoId": "41639", + "title": "Tokyo Ghoul", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9135": { + "imdb_id": "tt3741634", + "fanartLogoId": "96482", + "title": "Tokyo Ghoul", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13929": { + "imdb_id": "tt3741634", + "fanartLogoId": "96485", + "title": "Tokyo Ghoul", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41359": { + "imdb_id": "tt3741634", + "fanartLogoId": "96485", + "title": "Tokyo Ghoul", + "fromSeason": 3, + "fromEpisode": 13 + }, + "10789": { + "imdb_id": "tt3741634", + "title": "Tokyo Ghoul", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11294": { + "imdb_id": "tt3741634", + "title": "Tokyo Ghoul", + "fromSeason": 0, + "fromEpisode": 2 + }, + "8272": { + "imdb_id": "tt7684436", + "title": "Sengoku Basara: End of Judgement", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8279": { + "imdb_id": "tt3503520", + "title": "Ronja, the Robber's Daughter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8281": { + "imdb_id": "tt3509378", + "title": "Broken Blade", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8282": { + }, + "8283": { + "imdb_id": "tt3644300", + "title": "Majin Bone", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8285": { + "imdb_id": "tt3496018", + "title": "Selector Infected WIXOSS", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9171": { + "imdb_id": "tt3496018", + "title": "Selector Infected WIXOSS", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8290": { + "imdb_id": "tt3804720", + "title": "Wonder Momo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8293": { + "imdb_id": "tt3519246", + "title": "Blade & Soul" + }, + "8297": { + "imdb_id": "tt3544556", + "title": "Aldnoah.Zero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49209": { + "imdb_id": "tt3544556", + "title": "Aldnoah.Zero", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8299": { + "imdb_id": "tt1807824", + "title": "Wakfu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8300": { + "imdb_id": "tt1807824", + "title": "Wakfu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11119": { + "imdb_id": "tt1807824", + "title": "Wakfu", + "fromSeason": 3, + "fromEpisode": 1 + }, + "48548": { + "imdb_id": "tt1807824", + "title": "Wakfu", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11106": { + "imdb_id": "tt1807824", + "title": "Wakfu", + "fromSeason": 0, + "fromEpisode": 14 + }, + "8306": { + "imdb_id": "tt3639864", + "title": "Himegoto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8310": { + "imdb_id": "tt3620020", + "title": "Kindaichi Shounen no Jikenbo Returns", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8325": { + "imdb_id": "tt3611294", + "title": "Glasslip" + }, + "8331": { + "imdb_id": "tt3639836", + "title": "DRAMAtical Murder" + }, + "8333": { + "imdb_id": "tt3957586", + "title": "Gugure! Kokkuri-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8335": { + "imdb_id": "tt3618122", + "title": "M3: Sono Kuroki Hagane" + }, + "8336": { + "imdb_id": "tt3633800", + "title": "Invaders of the Rokujyouma!?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8337": { + "imdb_id": "tt3895144", + "title": "Sora No Method", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42629": { + "imdb_id": "tt3895144", + "title": "Sora No Method", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8339": { + "imdb_id": "tt4219244", + "title": "World Break: Aria of Curse for a Holy Swordsman" + }, + "8342": { + "imdb_id": "tt3613454", + "title": "Zankyou No Terror" + }, + "8344": { + "imdb_id": "tt3399788", + "title": "Strange+", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8352": { + }, + "8356": { + "imdb_id": "tt3894916", + "title": "Terra Formars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8380": { + "imdb_id": "tt3448296", + "title": "Magica Wars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8384": { + "imdb_id": "tt3644244", + "title": "Abarenbou Kishi! Matsutarou" + }, + "8391": { + "imdb_id": "tt3996158", + "title": "Gundam Reconguista in G", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8395": { + }, + "8401": { + "imdb_id": "tt3741584", + "title": "Shirogane no Ishi: Argevollen" + }, + "8402": { + "imdb_id": "tt3615002", + "title": "Monthly Girls' Nozaki-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9154": { + "imdb_id": "tt3615002", + "title": "Monthly Girls' Nozaki-kun", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8403": { + "imdb_id": "tt3895150", + "title": "Your Lie in April", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9968": { + "imdb_id": "tt3895150", + "title": "Your Lie in April", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8406": { + "imdb_id": "tt3612626", + "fanartLogoId": "90749", + "title": "Saekano: How to Raise a Boring Girlfriend", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10909": { + "imdb_id": "tt3612626", + "fanartLogoId": "92116", + "title": "Saekano: How to Raise a Boring Girlfriend", + "fromSeason": 2, + "fromEpisode": 1 + }, + "14050": { + "imdb_id": "tt11203468", + "title": "Saekano: How to Raise a Boring Girlfriend Fine" + }, + "8409": { + "imdb_id": "tt3957550", + "title": "Garo the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8416": { + "imdb_id": "tt3222236", + "title": "Star Blazers 2199: Odyssey of the Celestial Ark" + }, + "8428": { + "imdb_id": "tt4014116", + "title": "HisCoool! Seha Girls" + }, + "8431": { + "imdb_id": "tt2904582", + "title": "Kinmoza!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8452": { + "imdb_id": "tt3952100", + "title": "When Supernatural Battles Became Commonplace" + }, + "8458": { + "imdb_id": "tt3761892", + "title": "Persona 4 the Golden Animation" + }, + "8459": { + "imdb_id": "tt3774766", + "title": "Majimoji Rurumo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8468": { + "imdb_id": "tt3496018", + "title": "Selector Infected WIXOSS", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8483": { + "imdb_id": "tt3689910", + "title": "Miss Hokusai" + }, + "8498": { + "imdb_id": "tt2575728", + "title": "Ai Mai Mi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8501": { + "imdb_id": "tt4672342", + "title": "Akuma-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8505": { + "imdb_id": "tt3638012", + "title": "Appleseed Alpha" + }, + "8521": { + "imdb_id": "tt3646574", + "title": "Shounen Hollywood", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8523": { + "imdb_id": "tt3399712", + "title": "Hamatora", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8531": { + "imdb_id": "tt3837248", + "title": "Love Live! The School Idol Movie" + }, + "8533": { + "imdb_id": "tt3639820", + "title": "Bakumatsu Rock", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8557": { + "imdb_id": "tt3759640", + "title": "Momo Kyun Sword" + }, + "8558": { + "imdb_id": "tt3717892", + "title": "Nobunaga Concerto" + }, + "8569": { + "imdb_id": "tt6163360", + "title": "Recorder to Randoseru Special", + "fromSeason": 3, + "fromEpisode": 13 + }, + "8575": { + "imdb_id": "tt3985242", + "title": "Orenchi no Furo Jijou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8576": { + "imdb_id": "tt5025394", + "title": "Gangsta.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8577": { + "imdb_id": "tt3517016", + "title": "Chaika the Coffin Princess", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8607": { + "imdb_id": "tt3989670", + "title": "Trinity Seven", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10014": { + "imdb_id": "tt3989670", + "title": "Trinity Seven", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8629": { + "imdb_id": "tt3909838", + "title": "Denki-Gai no Honya-san" + }, + "8630": { + "imdb_id": "tt3888026", + "title": "Lord Marksman and Vanadis" + }, + "8631": { + "imdb_id": "tt3950102", + "title": "World Trigger", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42898": { + "imdb_id": "tt3950102", + "title": "World Trigger", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44396": { + "imdb_id": "tt3950102", + "title": "World Trigger", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8632": { + "imdb_id": "tt3886492", + "title": "Girl Friend BETA", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8636": { + "imdb_id": "tt4008500", + "title": "Magic Kaito 1412" + }, + "8637": { + "imdb_id": "tt3213642", + "title": "Gundam Build Fighters", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8638": { + "imdb_id": "tt3981902", + "title": "Yuki Yuna Is a Hero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8640": { + "imdb_id": "tt3837246", + "title": "Assassination Classroom", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10877": { + "imdb_id": "tt3837246", + "title": "Assassination Classroom", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8641": { + "imdb_id": "tt4216878", + "title": "Absolute Duo" + }, + "8642": { + "imdb_id": "tt4576408", + "title": "Ninja Slayer" + }, + "8644": { + "imdb_id": "tt5105452", + "title": "School-Live!" + }, + "8645": { + "imdb_id": "tt4219148", + "title": "Isuca", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8646": { + "imdb_id": "tt4379632", + "title": "Blood Blockade Battlefront", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12770": { + "imdb_id": "tt4379632", + "title": "Blood Blockade Battlefront", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11030": { + "imdb_id": "tt4379632", + "title": "Blood Blockade Battlefront", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11772": { + "imdb_id": "tt4379632", + "title": "Blood Blockade Battlefront", + "fromSeason": 0, + "fromEpisode": 3 + }, + "8647": { + "imdb_id": "tt3981980", + "title": "Koufuku Graffiti" + }, + "8648": { + "imdb_id": "tt3957196", + "title": "Yona of the Dawn", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10759": { + "imdb_id": "tt3957196", + "title": "Yona of the Dawn", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8649": { + "imdb_id": "tt4219158", + "title": "Unlimited Fafnir" + }, + "8650": { + "imdb_id": "tt5159084", + "title": "Sky Wizard Academy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11186": { + "imdb_id": "tt5159084", + "title": "Sky Wizard Academy", + "fromSeason": 0, + "fromEpisode": 1 + }, + "8651": { + "imdb_id": "tt5355196", + "title": "Shomin Sample" + }, + "8652": { + "imdb_id": "tt4219258", + "title": "The Testament of Sister New Devil", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10757": { + "imdb_id": "tt4219258", + "title": "The Testament of Sister New Devil", + "fromSeason": 2, + "fromEpisode": 1 + }, + "10143": { + "imdb_id": "tt4219258", + "title": "The Testament of Sister New Devil", + "fromSeason": 0, + "fromEpisode": 1 + }, + "10779": { + "imdb_id": "tt4219258", + "title": "The Testament of Sister New Devil", + "fromSeason": 0, + "fromEpisode": 2 + }, + "8657": { + "imdb_id": "tt6448688", + "title": "Yowamushi Pedal Re: Ride" + }, + "8653": { + "imdb_id": "tt3957232", + "title": "Cross Ange: Rondo of Angel and Dragon" + }, + "8664": { + "imdb_id": "tt4046802", + "title": "Mysterious Joker", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10070": { + "imdb_id": "tt4046802", + "title": "Mysterious Joker", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11393": { + "imdb_id": "tt4046802", + "title": "Mysterious Joker", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12361": { + "imdb_id": "tt4046802", + "title": "Mysterious Joker", + "fromSeason": 4, + "fromEpisode": 1 + }, + "8666": { + "imdb_id": "tt5173790", + "title": "Lance N' Masques" + }, + "8667": { + "imdb_id": "tt4219166", + "title": "The Rolling Girls" + }, + "8668": { + "imdb_id": "tt5079104", + "title": "Re-Kan!" + }, + "8669": { + "imdb_id": "tt5236254", + "title": "Anti-Magic Academy: The 35th Test Platoon" + }, + "8672": { + "imdb_id": "tt3646944", + "title": "Attack on Titan: Crimson Bow and Arrow" + }, + "8673": { + "imdb_id": "tt3646946", + "title": "Attack on Titan: The Wings of Freedom" + }, + "8675": { + "imdb_id": "tt4054952", + "title": "Fate/Stay Night: Heaven's Feel - I. Presage Flower" + }, + "12007": { + "imdb_id": "tt8091892", + "title": "Fate/stay Night: Heaven's Feel - II. Lost Butterfly" + }, + "12008": { + "imdb_id": "tt8092118", + "title": "Fate/Stay Night: Heaven's Feel - III. Spring Song" + }, + "8697": { + "imdb_id": "tt3950092", + "title": "Wolf Girl and Black Prince", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8698": { + "imdb_id": "tt3985228", + "title": "Shirobako", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8699": { + "imdb_id": "tt3909224", + "fanartLogoId": "116951", + "title": "The Seven Deadly Sins", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12633": { + "imdb_id": "tt3909224", + "fanartLogoId": "119645", + "title": "The Seven Deadly Sins", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42263": { + "imdb_id": "tt3909224", + "fanartLogoId": "116953", + "title": "The Seven Deadly Sins", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43458": { + "imdb_id": "tt3909224", + "fanartLogoId": "116954", + "title": "The Seven Deadly Sins", + "fromSeason": 4, + "fromEpisode": 1 + }, + "10751": { + "imdb_id": "tt3909224", + "fanartLogoId": "116951", + "title": "The Seven Deadly Sins", + "fromSeason": 0, + "fromEpisode": 2 + }, + "11414": { + "imdb_id": "tt3909224", + "fanartLogoId": "108253", + "title": "The Seven Deadly Sins", + "fromSeason": 0, + "fromEpisode": 4 + }, + "42050": { + "imdb_id": "tt3909224", + "fanartLogoId": "116951", + "title": "The Seven Deadly Sins", + "fromSeason": 0, + "fromEpisode": 8 + }, + "13647": { + "imdb_id": "tt9089294", + "title": "The Seven Deadly Sins the Movie: Prisoners of the Sky" + }, + "44164": { + "imdb_id": "tt13884144", + "title": "The Seven Deadly Sins: Cursed by Light" + }, + "45472": { + "imdb_id": "tt17677744", + "title": "The Seven Deadly Sins: Grudge of Edinburgh Part 1" + }, + "47155": { + "imdb_id": "tt25010142", + "title": "The Seven Deadly Sins: Grudge of Edinburgh Part 2" + }, + "8710": { + "imdb_id": "tt3985216", + "title": "Ore, Twintails ni Narimasu" + }, + "8716": { + "imdb_id": "tt2320220", + "title": "Kamisama Kiss", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8718": { + "imdb_id": "tt5098548", + "title": "One Piece '3D2Y': Âsu no shi o koete! Rufi nakamatachi no chikai" + }, + "2788": { + "imdb_id": "tt1210339", + "title": "Junjou Romantica", + "fromSeason": 1, + "fromEpisode": 1 + }, + "3802": { + "imdb_id": "tt1210339", + "title": "Junjou Romantica", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8728": { + "imdb_id": "tt1210339", + "title": "Junjou Romantica", + "fromSeason": 3, + "fromEpisode": 1 + }, + "8734": { + "imdb_id": "tt3399762", + "title": "Buddy Complex", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8736": { + "imdb_id": "tt4584326", + "title": "Seraph of the End", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10082": { + "imdb_id": "tt4584326", + "title": "Seraph of the End", + "fromSeason": 1, + "fromEpisode": 13 + }, + "10881": { + "imdb_id": "tt4584326", + "title": "Seraph of the End", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11342": { + "imdb_id": "tt4584326", + "title": "Seraph of the End", + "fromSeason": 0, + "fromEpisode": 11 + }, + "11462": { + "imdb_id": "tt4584326", + "title": "Seraph of the End", + "fromSeason": 0, + "fromEpisode": 12 + }, + "8737": { + "imdb_id": "tt3615160", + "title": "Genocidal Organ" + }, + "8738": { + "imdb_id": "tt3981544", + "title": "Yuri Kuma Arashi" + }, + "8774": { + }, + "8777": { + "imdb_id": "tt4219136", + "title": "The Idolm@ster Cinderella Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10760": { + "imdb_id": "tt4219136", + "title": "The Idolm@ster Cinderella Girls", + "fromSeason": 1, + "fromEpisode": 14 + }, + "43284": { + "imdb_id": "tt12648404", + "title": "The iDOLM@STER Million Live!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8791": { + }, + "8812": { + "imdb_id": "tt7640880", + "title": "Wake Up, Girl Zoo!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8850": { + "imdb_id": "tt4219164", + "title": "Military!" + }, + "8884": { + "imdb_id": "tt21104890", + "title": "Gudetama: An Eggcellent Adventure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8891": { + "imdb_id": "tt4045510", + "title": "I Can't Understand What My Husband Is Saying", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8895": { + "imdb_id": "tt4046254", + "title": "Bonjour Sweet Love Pâtisserie" + }, + "8906": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 4, + "fromEpisode": 1 + }, + "8951": { + "imdb_id": "tt4219154", + "title": "Maria the Virgin Witch" + }, + "8952": { + "imdb_id": "tt6410184", + "title": "Triage X", + "fromSeason": 1, + "fromEpisode": 1 + }, + "8967": { + }, + "8971": { + "imdb_id": "tt5330596", + "title": "GARAKOWA - Restore the World" + }, + "9039": { + "imdb_id": "tt12826532", + "title": "Shimajiro No Wow", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9063": { + }, + "9100": { + "imdb_id": "tt8839572", + "title": "Karen Senki" + }, + "9130": { + "imdb_id": "tt5240222", + "title": "God Eater" + }, + "9136": { + "imdb_id": "tt3544556", + "title": "Aldnoah.Zero", + "fromSeason": 2, + "fromEpisode": 1 + }, + "9137": {}, + "9142": { + "imdb_id": "tt3342720", + "title": "Baby Steps", + "fromSeason": 2, + "fromEpisode": 1 + }, + "9153": { + "imdb_id": "tt4046842", + "title": "Tribe Cool Crew", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9175": { + "imdb_id": "tt3646574", + "title": "Shounen Hollywood", + "fromSeason": 2, + "fromEpisode": 1 + }, + "9215": { + }, + "9520": { + "imdb_id": "tt2391599", + "title": "Oshiri kajiri mushi", + "fromSeason": 3, + "fromEpisode": 1 + }, + "9538": { + "imdb_id": "tt4603222", + "title": "Plastic Memories" + }, + "9721": { + "imdb_id": "tt4337072", + "title": "Ghost in the Shell: The New Movie" + }, + "9729": { + "imdb_id": "tt4623928", + "title": "Show by Rock!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11494": { + "imdb_id": "tt4623928", + "title": "Show by Rock!!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11493": { + "imdb_id": "tt4623928", + "title": "Show by Rock!!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "9730": { + "imdb_id": "tt7415066", + "title": "Sword Gai: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9731": { + "imdb_id": "tt5236260", + "title": "Heavy Object", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9935": { + "imdb_id": "tt4266572", + "title": "Shaolin Wuzang", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9786": { + "imdb_id": "tt10787030", + "title": "Anime de Wakaru Shinryounaika", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9949": { + "imdb_id": "tt10245818", + "title": "Urawa no Usagi-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13334": { + "imdb_id": "tt10245818", + "title": "Urawa no Usagi-chan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "9961": { + "imdb_id": "tt4213580", + "title": "Tsukimonogatari" + }, + "9962": { + "imdb_id": "tt4728568", + "fanartLogoId": "92296", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "40599": { + "imdb_id": "tt4728568", + "fanartLogoId": "118623", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42583": { + "imdb_id": "tt4728568", + "fanartLogoId": "132923", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44031": { + "imdb_id": "tt4728568", + "fanartLogoId": "153849", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 4, + "fromEpisode": 1 + }, + "46556": { + "imdb_id": "tt4728568", + "fanartLogoId": "153849", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 4, + "fromEpisode": 12 + }, + "48216": { + "imdb_id": "tt4728568", + "fanartLogoId": "191003", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 5, + "fromEpisode": 1 + }, + "11851": { + "imdb_id": "tt4728568", + "fanartLogoId": "96778", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42441": { + "imdb_id": "tt4728568", + "fanartLogoId": "118623", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 0, + "fromEpisode": 3 + }, + "42584": { + "imdb_id": "tt4728568", + "fanartLogoId": "118623", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 0, + "fromEpisode": 4 + }, + "43858": { + "imdb_id": "tt4728568", + "fanartLogoId": "132923", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 0, + "fromEpisode": 5 + }, + "46404": { + "imdb_id": "tt4728568", + "fanartLogoId": "153850", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon?", + "fromSeason": 0, + "fromEpisode": 6 + }, + "9965": { + "imdb_id": "tt4869896", + "fanartLogoId": "127675", + "title": "Overlord", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13237": { + "imdb_id": "tt4869896", + "fanartLogoId": "90222", + "title": "Overlord", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41174": { + "imdb_id": "tt4869896", + "fanartLogoId": "90221", + "title": "Overlord", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44529": { + "imdb_id": "tt4869896", + "fanartLogoId": "127670", + "title": "Overlord", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11166": { + "imdb_id": "tt4869896", + "title": "Overlord", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12239": { + "imdb_id": "tt4869896", + "title": "Overlord", + "fromSeason": 0, + "fromEpisode": 9 + }, + "14269": { + "imdb_id": "tt4869896", + "title": "Overlord", + "fromSeason": 0, + "fromEpisode": 16 + }, + "41482": { + "imdb_id": "tt4869896", + "title": "Overlord", + "fromSeason": 0, + "fromEpisode": 29 + }, + "42044": { + "imdb_id": "tt4869896", + "title": "Overlord", + "fromSeason": 0, + "fromEpisode": 42 + }, + "9967": { + "imdb_id": "tt4731072", + "fanartLogoId": "91476", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11612": { + "imdb_id": "tt4731072", + "fanartLogoId": "91478", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13581": { + "imdb_id": "tt4731072", + "fanartLogoId": "91477", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 3, + "fromEpisode": 1 + }, + "14092": { + "imdb_id": "tt4731072", + "fanartLogoId": "91477", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 3, + "fromEpisode": 13 + }, + "42390": { + "imdb_id": "tt4731072", + "fanartLogoId": "104666", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 4, + "fromEpisode": 1 + }, + "42921": { + "imdb_id": "tt4731072", + "fanartLogoId": "132503", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 5, + "fromEpisode": 1 + }, + "11353": { + "imdb_id": "tt4731072", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 0, + "fromEpisode": 2 + }, + "13508": { + "imdb_id": "tt4731072", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 0, + "fromEpisode": 4 + }, + "14124": { + "imdb_id": "tt4731072", + "title": "Food Wars: Shokugeki no Soma", + "fromSeason": 0, + "fromEpisode": 6 + }, + "9969": { + "imdb_id": "tt4279012", + "title": "Death Parade" + }, + "9972": { + "imdb_id": "tt5023666", + "title": "Arslan Senki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "9976": { + "imdb_id": "tt4808010", + "title": "Etotama", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11121": { + "imdb_id": "tt4808010", + "title": "Etotama", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41362": { + "imdb_id": "tt4808010", + "title": "Etotama", + "fromSeason": 0, + "fromEpisode": 7 + }, + "9978": { + "imdb_id": "tt4125300", + "title": "The Murder Case of Hana & Alice" + }, + "9980": { + "imdb_id": "tt4384306", + "fanartLogoId": "91799", + "title": "Sound! Euphonium", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11474": { + "imdb_id": "tt4384306", + "fanartLogoId": "90934", + "title": "Sound! Euphonium", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42372": { + "imdb_id": "tt4384306", + "fanartLogoId": "188528", + "title": "Sound! Euphonium", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11137": { + "imdb_id": "tt4384306", + "title": "Sound! Euphonium", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11391": { + "imdb_id": "tt4384306", + "title": "Sound! Euphonium", + "fromSeason": 0, + "fromEpisode": 8 + }, + "13212": { + "imdb_id": "tt4384306", + "title": "Sound! Euphonium", + "fromSeason": 0, + "fromEpisode": 10 + }, + "9992": { + "imdb_id": "tt5827092", + "title": "Macross Delta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14151": { + "imdb_id": "tt7986790", + "title": "Gekijouban Macross Delta: Gekijou no Walküre" + }, + "45244": { + "imdb_id": "tt13898164", + "title": "Gekijouban Macross Delta: Zettai Live!!!!!!" + }, + "10011": { + "imdb_id": "tt4291128", + "title": "Yatterman Night", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10013": { + "imdb_id": "tt4219290", + "title": "Sengoku musou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10016": { + "imdb_id": "tt4616700", + "title": "My Love Story!!" + }, + "10017": { + "imdb_id": "tt5071764", + "title": "Castle Town Dandelion" + }, + "10018": { + "imdb_id": "tt4584754", + "title": "RIN-NE", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11366": { + "imdb_id": "tt4584754", + "title": "RIN-NE", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12561": { + "imdb_id": "tt4584754", + "title": "RIN-NE", + "fromSeason": 3, + "fromEpisode": 1 + }, + "10021": { + "imdb_id": "tt5354314", + "title": "Aokana: Four Rhythm Across the Blue" + }, + "10028": { + "imdb_id": "tt5323662", + "title": "A Silent Voice" + }, + "10029": { + "imdb_id": "tt4958610", + "title": "Rokka no Yuusha" + }, + "10035": { + "imdb_id": "tt4235644", + "title": "Shisha no teikoku" + }, + "10036": { + "imdb_id": "tt5556656", + "title": "Kotetsujo no Kabaneri" + }, + "10037": { + "imdb_id": "tt5247480", + "title": "The Perfect Insider" + }, + "10038": { + "imdb_id": "tt5160872", + "title": "Punch Line" + }, + "10039": { + "imdb_id": "tt5105422", + "title": "Ranpo Kitan: Game of Laplace" + }, + "10042": { + "imdb_id": "tt4623042", + "title": "Yamada-kun to 7-nin no Majo" + }, + "8735": { + "imdb_id": "tt4531412", + "title": "Beyond the Boundary Movie: I'll Be Here - Kako-hen" + }, + "10043": { + "imdb_id": "tt4539114", + "title": "Beyond the Boundary Movie: I'll Be Here - Mirai-hen" + }, + "10045": { + "imdb_id": "tt5420560", + "title": "Garo: Guren no tsuki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10049": { + "imdb_id": "tt2106179", + "title": "Space Warrior Baldios", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10051": { + "imdb_id": "tt5419278", + "title": "Shôwa Genroku rakugo shinjû" + }, + "3910": { + "imdb_id": "tt1356878", + "title": "Hetalia: Axis Powers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5351": { + "imdb_id": "tt1356878", + "title": "Hetalia: Axis Powers", + "fromSeason": 2, + "fromEpisode": 1 + }, + "7226": { + "imdb_id": "tt1356878", + "title": "Hetalia: Axis Powers", + "fromSeason": 3, + "fromEpisode": 1 + }, + "10057": { + "imdb_id": "tt1356878", + "title": "Hetalia: Axis Powers", + "fromSeason": 4, + "fromEpisode": 1 + }, + "4946": { + "imdb_id": "tt2653882", + "title": "Hetalia: Axis Powers - Paint It, White!" + }, + "10056": { + "imdb_id": "tt4489416", + "title": "The Anthem of the Heart" + }, + "10061": { + "imdb_id": "tt2820466", + "title": "Justice League: The Flashpoint Paradox" + }, + "10062": { + "imdb_id": "tt4537404", + "title": "Gunslinger Stratos: The Animation" + }, + "10065": { + "imdb_id": "tt4272866", + "title": "The Boy and the Beast" + }, + "10067": { + "imdb_id": "tt5059866", + "title": "Himouto! Umaruchan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13489": { + "imdb_id": "tt5059866", + "title": "Himouto! Umaru-chan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11203": { + "imdb_id": "tt5059866", + "title": "Himouto! Umaru-chan", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11079": { + "imdb_id": "tt5059866", + "title": "Himouto! Umaru-chan", + "fromSeason": 0, + "fromEpisode": 13 + }, + "10068": { + "imdb_id": "tt5263886", + "title": "Wake Up, Girls! Zoku gekijouban: Seishun no kage" + }, + "10069": { + "imdb_id": "tt5373222", + "title": "My Wife Is the Student Council President", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11784": { + "imdb_id": "tt5373222", + "title": "My Wife Is the Student Council President", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11669": { + "imdb_id": "tt5373222", + "title": "My Wife Is the Student Council President", + "fromSeason": 0, + "fromEpisode": 1 + }, + "10071": { + "imdb_id": "tt6302332", + "title": "Chein kuronikuru: Hekuseitasu no hikari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10072": { + "imdb_id": "tt6856790", + "title": "Mikagura School Suite" + }, + "10074": { + }, + "10077": { + "imdb_id": "tt5024410", + "title": "Aria the Scarlet Ammo AA" + }, + "10085": { + "imdb_id": "tt4958580", + "title": "Gate", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11376": { + "imdb_id": "tt4958580", + "title": "Gate", + "fromSeason": 1, + "fromEpisode": 13 + }, + "10095": { + "imdb_id": "tt5821698", + "title": "Rainy Cocoa", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11158": { + "imdb_id": "tt5821698", + "title": "Rainy Cocoa", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12109": { + "imdb_id": "tt5821698", + "title": "Rainy Cocoa", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13913": { + "imdb_id": "tt5821698", + "title": "Rainy Cocoa", + "fromSeason": 4, + "fromEpisode": 1 + }, + "42109": { + "imdb_id": "tt5821698", + "title": "Rainy Cocoa", + "fromSeason": 5, + "fromEpisode": 1 + }, + "10103": { + "imdb_id": "tt4574736", + "title": "Charlotte", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10138": { + "imdb_id": "tt2595492", + "title": "Wooser no Sono Higurashi", + "fromSeason": 3, + "fromEpisode": 1 + }, + "10144": {}, + "10148": { + "imdb_id": "tt4045510", + "title": "I Can't Understand What My Husband Is Saying", + "fromSeason": 2, + "fromEpisode": 1 + }, + "10153": { + "imdb_id": "tt5675392", + "title": "Seiyu's Life!" + }, + "7602": { + "imdb_id": "tt2636124", + "title": "Ghost in the Shell Arise: Border 1 - Ghost Pain" + }, + "7856": { + "imdb_id": "tt3017864", + "title": "Ghost in the Shell Arise: Border 2 - Ghost Whisper" + }, + "8182": { + "imdb_id": "tt3579524", + "title": "Ghost in the Shell Arise: Border 3 - Ghost Tears" + }, + "8183": { + "imdb_id": "tt4016942", + "title": "Ghost in the Shell Arise: Border 4 - Ghost Stands Alone" + }, + "10229": { + "imdb_id": "tt4508686", + "title": "Ghost in the Shell Arise: Alternative Architecture" + }, + "43876": { + "imdb_id": "tt5973984", + "title": "Ghost in the Shell Arise: Border 5 - Pyrophoric Cult" + }, + "10235": { + "imdb_id": "tt4928988", + "title": "He Is an Ultimate Teacher", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10339": { + "imdb_id": "tt5870832", + "title": "Tesagure! Bukatsu-mono", + "fromSeason": 3, + "fromEpisode": 1 + }, + "10344": { + "imdb_id": "tt5679248", + "title": "Taboo-Tattoo" + }, + "10347": { + "imdb_id": "tt5443130", + "title": "Haikyû!: Owari to hajimari" + }, + "10350": { + "imdb_id": "tt4689276", + "title": "Actually, I Am..." + }, + "10352": { + "imdb_id": "tt4967674", + "title": "Shimoneta to Iu gainen ga sonzai shinai taikutsu na sekai" + }, + "10359": { + "imdb_id": "tt4801510", + "title": "Ushio & Tora", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10422": { + "imdb_id": "tt6479836", + "title": "Ongaku shoujo" + }, + "10453": { + "imdb_id": "tt5324094", + "title": "Dance with Devils" + }, + "10454": { + "imdb_id": "tt3114350", + "title": "Diabolik Lovers", + "fromSeason": 2, + "fromEpisode": 1 + }, + "10464": { + "imdb_id": "tt5857720", + "title": "ReLIFE", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13502": { + "imdb_id": "tt5857720", + "title": "ReLIFE", + "fromSeason": 0, + "fromEpisode": 1 + }, + "10465": { + "imdb_id": "tt10257002", + "title": "Million Doll", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10466": { + "imdb_id": "tt5905148", + "title": "Momokuri", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10467": { + "imdb_id": "tt7382936", + "title": "Nanbaka", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12768": { + "imdb_id": "tt7382936", + "title": "Nanbaka", + "fromSeason": 2, + "fromEpisode": 1 + }, + "10619": { + "imdb_id": "tt4537640", + "title": "Chaos Dragon: Sekiryuu Sen'eki" + }, + "10620": { + "imdb_id": "tt5423904", + "title": "Danchigai" + }, + "10621": { + "imdb_id": "tt4542568", + "title": "Snow White with the Red Hair", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10672": { + }, + "10706": { + "imdb_id": "tt5194246", + "title": "Beautiful Bones: Sakurako's Investigation" + }, + "10716": { + "imdb_id": "tt6452968", + "title": "Aoharu X Machinegun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10732": { + "imdb_id": "tt1709198", + "title": "Sym-Bionic Titan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10734": { + "imdb_id": "tt4917066", + "title": "Prison School", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11619": { + "imdb_id": "tt4917066", + "title": "Prison School", + "fromSeason": 0, + "fromEpisode": 1 + }, + "10735": { + "imdb_id": "tt3061046", + "title": "Steven Universe", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13413": { + "imdb_id": "tt3061046", + "title": "Steven Universe", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13414": { + "imdb_id": "tt3061046", + "title": "Steven Universe", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13417": { + "imdb_id": "tt3061046", + "title": "Steven Universe", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13423": { + "imdb_id": "tt3061046", + "title": "Steven Universe", + "fromSeason": 5, + "fromEpisode": 1 + }, + "42605": { + "imdb_id": "tt13714610", + "title": "Steven Universe Future", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10740": { + "imdb_id": "tt4508902", + "title": "One Punch Man: Wanpanman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12566": { + "imdb_id": "tt4508902", + "title": "One Punch Man: Wanpanman", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11402": { + "imdb_id": "tt4508902", + "title": "One Punch Man: Wanpanman", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11430": { + "imdb_id": "tt4508902", + "title": "One Punch Man: Wanpanman", + "fromSeason": 0, + "fromEpisode": 2 + }, + "42703": { + "imdb_id": "tt4508902", + "title": "One Punch Man: Wanpanman", + "fromSeason": 0, + "fromEpisode": 9 + }, + "10742": { + "imdb_id": "tt2785038", + "title": "YuruYuri", + "fromSeason": 3, + "fromEpisode": 1 + }, + "10745": { + "imdb_id": "tt5100366", + "title": "Rakudai Kishi no Cavalry" + }, + "10748": { + "imdb_id": "tt4831392", + "title": "Monster Musume: Everyday Life with Monster Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11145": { + "imdb_id": "tt4831392", + "title": "Monster Musume: Everyday Life with Monster Girls", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11836": { + "imdb_id": "tt4831392", + "title": "Monster Musume: Everyday Life with Monster Girls", + "fromSeason": 0, + "fromEpisode": 73 + }, + "10766": { + "imdb_id": "tt5235870", + "title": "Valkyrie Drive: Mermaid", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10767": { + "imdb_id": "tt5591262", + "title": "Wakaba Girl" + }, + "10768": { + "imdb_id": "tt9001678", + "title": "Kuroko no Basket NG-shuu" + }, + "10769": { + "imdb_id": "tt4982154", + "title": "Yowamushi Pedal: The Movie" + }, + "10782": { + "imdb_id": "tt5066074", + "title": "Classroom Crisis" + }, + "10783": { + "imdb_id": "tt5086972", + "title": "Starmyu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10784": { + "imdb_id": "tt5076704", + "title": "Pikaia!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "40628": { + "imdb_id": "tt5076704", + "title": "Pikaia!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "10786": { + "imdb_id": "tt6813314", + "title": "Chaos;Child", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13526": { + "imdb_id": "tt7504716", + "title": "ChäoS;Child: Silent Sky" + }, + "10788": { + "imdb_id": "tt5514358", + "title": "Steins;Gate 0", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41443": { + "imdb_id": "tt5514358", + "title": "Steins;Gate 0", + "fromSeason": 0, + "fromEpisode": 2 + }, + "10844": { + "imdb_id": "tt4954596", + "title": "Wakako-zake" + }, + "10845": { + "imdb_id": "tt5263888", + "title": "Wake Up, Girls! Beyond the Bottom" + }, + "10846": { + "imdb_id": "tt5526028", + "title": "Dou Kyu Sei: Classmates" + }, + "10847": { + "imdb_id": "tt5445056", + "title": "Haikyû!: Shousha to haisha" + }, + "10857": { + "imdb_id": "tt5095466", + "title": "The Asterisk War: The Academy City on the Water", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11421": { + "imdb_id": "tt5095466", + "title": "The Asterisk War: The Academy City on the Water", + "fromSeason": 2, + "fromEpisode": 1 + }, + "10858": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 5, + "fromEpisode": 1 + }, + "10860": { + "imdb_id": "tt5419220", + "title": "Kagewani", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10872": { + }, + "10878": { + "imdb_id": "tt6343554", + "title": "Long Riders!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10879": { + "imdb_id": "tt4644488", + "title": "Dragon Ball Super", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44544": { + "imdb_id": "tt14614892", + "title": "Dragon Ball Super: Super Hero" + }, + "10880": { + "imdb_id": "tt2320220", + "title": "Kamisama Kiss", + "fromSeason": 0, + "fromEpisode": 3 + }, + "10902": { + "imdb_id": "tt7039224", + "title": "Rage of Bahamut: Virgin Soul", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10906": { + "imdb_id": "tt5419170", + "title": "Hacka Doll the Animation" + }, + "10907": { + "imdb_id": "tt8422138", + "title": "Makura no Danshi" + }, + "10913": { + "imdb_id": "tt5334364", + "title": "Undefeated Bahamut Chronicle" + }, + "10914": { + "imdb_id": "tt5289354", + "title": "Young Black Jack" + }, + "10920": { + "imdb_id": "tt5020030", + "title": "Bikini Warriors", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11216": { + "imdb_id": "tt5020030", + "title": "Bikini Warriors", + "fromSeason": 0, + "fromEpisode": 13 + }, + "12452": { + "imdb_id": "tt5020030", + "title": "Bikini Warriors", + "fromSeason": 0, + "fromEpisode": 14 + }, + "10922": { + "imdb_id": "tt6548966", + "title": "Fairy Tail: The Movie - Dragon Cry" + }, + "10924": { + "imdb_id": "tt5502130", + "title": "Magical Somera-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10938": { + "imdb_id": "tt5375996", + "title": "Schwarzesmarken" + }, + "10939": { + "imdb_id": "tt5535154", + "title": "Bakuon!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10941": { + "imdb_id": "tt5370118", + "fanartLogoId": "93550", + "title": "KonoSuba - God's Blessing on This Wonderful World!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11937": { + "imdb_id": "tt5370118", + "fanartLogoId": "143411", + "title": "KonoSuba - God's Blessing on This Wonderful World!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44911": { + "imdb_id": "tt5370118", + "fanartLogoId": "187484", + "title": "KonoSuba - God's Blessing on This Wonderful World!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11752": { + "imdb_id": "tt5370118", + "title": "KonoSuba - God's Blessing on This Wonderful World!", + "fromSeason": 0, + "fromEpisode": 3 + }, + "13136": { + "imdb_id": "tt5370118", + "title": "KonoSuba - God's Blessing on This Wonderful World!", + "fromSeason": 0, + "fromEpisode": 4 + }, + "10977": { + "imdb_id": "tt4694304", + "title": "Shin Atashinchi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "10978": { + }, + "11005": { + "imdb_id": "tt5833466", + "title": "SuzakiNishi: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11020": { + "imdb_id": "tt5321096", + "title": "Haruchika: Haruta & Chika" + }, + "11023": { + "imdb_id": "tt5861670", + "title": "Tales of Zestiria the X", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11028": { + "imdb_id": "tt5225764", + "title": "Drifters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13275": { + "imdb_id": "tt5225764", + "title": "Drifters", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12087": { + "imdb_id": "tt5225764", + "title": "Drifters", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41325": { + "imdb_id": "tt5225764", + "title": "Drifters", + "fromSeason": 0, + "fromEpisode": 2 + }, + "43449": { + "imdb_id": "tt5225764", + "title": "Drifters", + "fromSeason": 0, + "fromEpisode": 4 + }, + "11029": { + "imdb_id": "tt5271506", + "title": "Hundred" + }, + "11031": { + "imdb_id": "tt9058134", + "title": "Kengan Ashura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42501": { + "imdb_id": "tt9058134", + "title": "Kengan Ashura", + "fromSeason": 1, + "fromEpisode": 13 + }, + "45990": { + "imdb_id": "tt9058134", + "title": "Kengan Ashura", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47971": { + "imdb_id": "tt9058134", + "title": "Kengan Ashura", + "fromSeason": 2, + "fromEpisode": 13 + }, + "11107": { + "imdb_id": "tt0417299", + "title": "Avatar: The Last Airbender", + "fromSeason": 0, + "fromEpisode": 2 + }, + "11108": { + "imdb_id": "tt4163486", + "title": "Bee and PuppyCat", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11109": { + "imdb_id": "tt4163486", + "title": "Bee and PuppyCat", + "fromSeason": 1, + "fromEpisode": 0 + }, + "11110": { + "imdb_id": "tt5249462", + "title": "Erased", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11113": { + "imdb_id": "tt6348126", + "title": "Beyblade Burst", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11114": { + "imdb_id": "tt5675016", + "title": "Cyborg 009 vs Devilman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13510": { + "imdb_id": "tt6348126", + "title": "Beyblade Burst", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41128": { + "imdb_id": "tt6348126", + "title": "Beyblade Burst", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42360": { + "imdb_id": "tt6348126", + "title": "Beyblade Burst", + "fromSeason": 4, + "fromEpisode": 1 + }, + "43060": { + "imdb_id": "tt6348126", + "title": "Beyblade Burst", + "fromSeason": 5, + "fromEpisode": 1 + }, + "44957": { + "imdb_id": "tt6348126", + "title": "Beyblade Burst", + "fromSeason": 6, + "fromEpisode": 1 + }, + "11115": { + "imdb_id": "tt9044620", + "title": "Kuroko no Basket: Saikou no Present Desu" + }, + "11126": { + "imdb_id": "tt4801510", + "title": "Ushio & Tora", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11127": { + "imdb_id": "tt4717402", + "title": "Mutafukaz" + }, + "11133": { + "imdb_id": "tt2758770", + "title": "Star vs. the Forces of Evil", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11134": { + "imdb_id": "tt5657836", + "title": "Anne Happy" + }, + "11165": { + "imdb_id": "tt5241080", + "title": "Concrete Revolutio", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11170": { + "imdb_id": "tt5334292", + "title": "Dimension W", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11665": { + "imdb_id": "tt5334292", + "title": "Dimension W", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12079": { + "imdb_id": "tt5334292", + "title": "Dimension W", + "fromSeason": 0, + "fromEpisode": 6 + }, + "11172": { + "imdb_id": "tt6234680", + "title": "ClassicaLoid", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11174": { + "imdb_id": "tt5506866", + "title": "Onsen yôsei Hakone-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11178": { + "imdb_id": "tt4838372", + "title": "Osomatsu-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13326": { + "imdb_id": "tt4838372", + "title": "Osomatsu-san", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43551": { + "imdb_id": "tt4838372", + "title": "Osomatsu-san", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11179": { + "imdb_id": "tt4542568", + "title": "Snow White with the Red Hair", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11181": { + "imdb_id": "tt5926310", + "title": "Hatsukoi Monster", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11182": { + "imdb_id": "tt5274556", + "title": "Owarimonogatari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11200": { + "imdb_id": "tt5329190", + "title": "Phantasy Star Online 2: The Animation" + }, + "11204": { + "imdb_id": "tt5889338", + "title": "I Want to Let You Know That I Love You" + }, + "11206": { + "imdb_id": "tt5344382", + "title": "Mobile Suit Gundam: Iron-Blooded Orphans", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11207": { + "imdb_id": "tt9731082", + "title": "A Sister's All You Need", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41714": { + "imdb_id": "tt9731082", + "title": "A Sister's All You Need", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41715": { + "imdb_id": "tt9731082", + "title": "A Sister's All You Need", + "fromSeason": 0, + "fromEpisode": 7 + }, + "11208": { + "imdb_id": "tt5527048", + "title": "Komori-san Can't Decline", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11209": { + "imdb_id": "tt5607616", + "fanartLogoId": "92510", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42198": { + "imdb_id": "tt5607616", + "fanartLogoId": "194258", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43247": { + "imdb_id": "tt5607616", + "fanartLogoId": "194258", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 2, + "fromEpisode": 14 + }, + "47235": { + "imdb_id": "tt5607616", + "fanartLogoId": "194259", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12047": { + "imdb_id": "tt5607616", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12313": { + "imdb_id": "tt5607616", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 0, + "fromEpisode": 12 + }, + "13882": { + "imdb_id": "tt5607616", + "tmdb_id": "532321", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 0, + "fromEpisode": 26 + }, + "43300": { + "imdb_id": "tt5607616", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 0, + "fromEpisode": 30 + }, + "49258": { + "imdb_id": "tt5607616", + "title": "Re: Zero - Starting Life in Another World", + "fromSeason": 0, + "fromEpisode": 55 + }, + "42903": { + "imdb_id": "tt13906272", + "title": "Re: Zero kara Hajimeru Isekai Seikatsu: Shin Henshuu-ban", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42006": { + "imdb_id": "tt11285348", + "title": "Re: Zero kara Hajimeru Isekai Seikatsu: Hyouketsu no Kizuna" + }, + "11210": { + "imdb_id": "tt5861440", + "title": "Servamp" + }, + "11211": { + "imdb_id": "tt3620020", + "title": "Kindaichi Shounen no Jikenbo Returns", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11212": { + "imdb_id": "tt6931266", + "title": "Dies Irae", + "fromSeason": 1, + "fromEpisode": 1 + }, + "40566": { + "imdb_id": "tt6931266", + "title": "Dies Irae", + "fromSeason": 1, + "fromEpisode": 12 + }, + "11213": { + "imdb_id": "tt4864886", + "title": "Gekijouban Selector Destructed WIXOSS" + }, + "11215": {}, + "11217": { + "imdb_id": "tt2362887", + "title": "Uta no prince-sama - maji love 1000%" + }, + "11234": { + "imdb_id": "tt5238484", + "title": "Comet Lucifer" + }, + "11261": { + "imdb_id": "tt5461834", + "title": "Ojisan and Marshmallow", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11277": { + "imdb_id": "tt2871776", + "title": "Jungle Master" + }, + "11280": { + "imdb_id": "tt5142364", + "title": "Tantei Team KZ Jiken Note" + }, + "11292": { + "imdb_id": "tt6597356", + "title": "One Piece: Episode of Sabo - Bond of Three Brothers, a Miraculous Reunion and an Inherited Will" + }, + "11315": { + "imdb_id": "tt4906830", + "title": "Attack on Titan: Junior High" + }, + "11317": { + "imdb_id": "tt5621006", + "title": "Flying Witch", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11953": { + "imdb_id": "tt5621006", + "title": "Flying Witch", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11318": { + "imdb_id": "tt5674072", + "title": "Tonkatsu DJ Agetarou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11319": { + "imdb_id": "tt5643030", + "title": "Netoge no yome wa onnanoko ja nai to omotta?" + }, + "11320": { + "imdb_id": "tt5614180", + "title": "Joker Game", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12183": { + "imdb_id": "tt5614180", + "title": "Joker Game", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11323": { + "imdb_id": "tt5452096", + "title": "Rainbow Days" + }, + "9173": { + "imdb_id": "tt4219142", + "title": "Binan Koukou Chikyuu Bouei-bu Love!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11329": { + "imdb_id": "tt4219142", + "title": "Binan Koukou Chikyuu Bouei-bu Love!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11330": { + "imdb_id": "tt6436436", + "title": "Minami Kamakura High School Girls Cycling Club", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11331": { + "imdb_id": "tt7407236", + "title": "The Legend of the Galactic Heroes: The New Thesis - Encounter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13825": { + "imdb_id": "tt7407236", + "title": "The Legend of the Galactic Heroes: The New Thesis - Encounter", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42352": { + "imdb_id": "tt7407236", + "title": "The Legend of the Galactic Heroes: The New Thesis - Encounter", + "fromSeason": 2, + "fromEpisode": 5 + }, + "42353": { + "imdb_id": "tt7407236", + "title": "The Legend of the Galactic Heroes: The New Thesis - Encounter", + "fromSeason": 2, + "fromEpisode": 9 + }, + "44169": { + "imdb_id": "tt7407236", + "title": "The Legend of the Galactic Heroes: The New Thesis - Collision", + "fromSeason": 3, + "fromEpisode": 1 + }, + "46114": { + "imdb_id": "tt7407236", + "title": "The Legend of the Galactic Heroes: The New Thesis - Intrigue", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11332": { + "imdb_id": "tt5826266", + "title": "Wagamama High Spec" + }, + "11333": { + "imdb_id": "tt5321046", + "title": "Myriad Colors Phantom World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11686": { + "imdb_id": "tt5321046", + "title": "Myriad Colors Phantom World", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12128": { + "imdb_id": "tt5321046", + "title": "Myriad Colors Phantom World", + "fromSeason": 0, + "fromEpisode": 2 + }, + "11334": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 6, + "fromEpisode": 1 + }, + "11337": { + "imdb_id": "tt5276152", + "title": "Norn9" + }, + "11338": { + "imdb_id": "tt9724088", + "title": "Code: Realize - Guardian of Rebirth" + }, + "11339": { + "imdb_id": "tt5679720", + "title": "Bungou Stray Dogs", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11882": { + "imdb_id": "tt5679720", + "title": "Bungou Stray Dogs", + "fromSeason": 1, + "fromEpisode": 13 + }, + "41984": { + "imdb_id": "tt5679720", + "title": "Bungou Stray Dogs", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45460": { + "imdb_id": "tt5679720", + "title": "Bungou Stray Dogs", + "fromSeason": 3, + "fromEpisode": 1 + }, + "47258": { + "imdb_id": "tt5679720", + "title": "Bungou Stray Dogs", + "fromSeason": 3, + "fromEpisode": 14 + }, + "12051": { + "imdb_id": "tt5679720", + "title": "Bungou Stray Dogs", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11344": { + "imdb_id": "tt3894916", + "title": "Terra Formars", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11346": { + "imdb_id": "tt5567348", + "title": "High School Fleet", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12579": { + "imdb_id": "tt5567348", + "title": "High School Fleet", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41259": { + "imdb_id": "tt11639420", + "title": "High School Fleet the Movie" + }, + "11347": { + "imdb_id": "tt5515402", + "title": "Ani Tore! EX", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12459": { + "imdb_id": "tt5515402", + "title": "Ani Tore! EX", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11349": { + "imdb_id": "tt5674066", + "title": "Pan De Peace!" + }, + "11354": { + "imdb_id": "tt9203780", + "title": "Rage of Bahamut: Manaria Friends" + }, + "11358": { + "imdb_id": "tt5494078", + "title": "Sekkô Boys", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11363": { + "imdb_id": "tt6135388", + "title": "Magical Girl Raising Project", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11364": { + "imdb_id": "tt5321184", + "title": "Prince of Stride: Alternative" + }, + "11368": { + "imdb_id": "tt5537534", + "title": "Ajin", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11369": { + "imdb_id": "tt5513012", + "title": "JK meshi!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11373": { + "imdb_id": "tt6738600", + "title": "All Out" + }, + "11375": { + "imdb_id": "tt5603356", + "title": "Ace Attorney", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11380": { + "imdb_id": "tt6074794", + "title": "March Comes in Like a Lion", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11381": { + "imdb_id": "tt5346952", + "fanartLogoId": "98545", + "title": "Dagashi kashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13701": { + "imdb_id": "tt5346952", + "fanartLogoId": "98386", + "title": "Dagashi kashi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11382": { + "imdb_id": "tt6138612", + "title": "Granblue Fantasy: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14132": { + "imdb_id": "tt6138612", + "title": "Granblue Fantasy: The Animation", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13626": { + "imdb_id": "tt6138612", + "title": "Granblue Fantasy: The Animation", + "fromSeason": 0, + "fromEpisode": 2 + }, + "43058": { + "imdb_id": "tt6138612", + "title": "Granblue Fantasy: The Animation", + "fromSeason": 0, + "fromEpisode": 3 + }, + "11387": { + "imdb_id": "tt5483318", + "title": "Brave Beats", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11396": { + "imdb_id": "tt5650082", + "title": "Ooya-san wa shishunki!" + }, + "11399": { + "imdb_id": "tt6728390", + "title": "Kuroko's Basketball: Last Game" + }, + "11401": { + "imdb_id": "tt5671172", + "title": "Three Leaves, Three Colors" + }, + "11409": { + "imdb_id": "tt5330856", + "title": "Divine Gate" + }, + "11410": { + "imdb_id": "tt5683292", + "title": "Rewrite", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11415": { + "imdb_id": "tt3124992", + "title": "Sailor Moon Crystal", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11431": { + "imdb_id": "tt4431276", + "title": "Magi: Sinbad no Bouken" + }, + "11432": { + "imdb_id": "tt5871330", + "fanartLogoId": "90011", + "title": "Amanchu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14015": { + "imdb_id": "tt5871330", + "fanartLogoId": "177174", + "title": "Amanchu!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11433": { + "imdb_id": "tt5905350", + "title": "Alderamin on the Sky" + }, + "11437": { + "imdb_id": "tt5225712", + "title": "Kiznaiver" + }, + "11446": { + "imdb_id": "tt5630058", + "title": "Kumamiko - Girl Meets Bear", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11447": { + "imdb_id": "tt5341430", + "title": "Grimgar of Fantasy and Ash", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11450": { + "imdb_id": "tt15830626", + "title": "Irodorimidori", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11790": { + "imdb_id": "tt5341430", + "title": "Grimgar of Fantasy and Ash", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11449": { + "imdb_id": "tt5476944", + "title": "Black Butler: Book of the Atlantic" + }, + "11455": { + "imdb_id": "tt5686870", + "title": "Big Order", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11456": { + "imdb_id": "tt5329084", + "title": "Active Raid", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11457": { + "imdb_id": "tt5326434", + "title": "Girls Beyond the Wasteland", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11466": { + "imdb_id": "tt5903040", + "title": "This Art Club Has a Problem!" + }, + "11467": { + "imdb_id": "tt5862798", + "title": "New Game!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13236": { + "imdb_id": "tt5862798", + "title": "New Game!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12681": { + "imdb_id": "tt5862798", + "title": "New Game!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11469": { + "imdb_id": "tt5626028", + "title": "Boku no Hero Academia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12268": { + "imdb_id": "tt5626028", + "title": "Boku no Hero Academia", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13881": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41971": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 4, + "fromEpisode": 1 + }, + "43108": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 5, + "fromEpisode": 1 + }, + "45240": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 6, + "fromEpisode": 1 + }, + "47232": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 7, + "fromEpisode": 1 + }, + "12511": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 0, + "fromEpisode": 1 + }, + "13313": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 0, + "fromEpisode": 2 + }, + "14030": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 0, + "fromEpisode": 3 + }, + "42046": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 0, + "fromEpisode": 5 + }, + "43485": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 0, + "fromEpisode": 8 + }, + "46117": { + "imdb_id": "tt5626028", + "title": "Boku No Hero Academia", + "fromSeason": 0, + "fromEpisode": 13 + }, + "14084": { + "imdb_id": "tt7745068", + "title": "My Hero Academia: Two Heroes" + }, + "42205": { + "imdb_id": "tt11107074", + "title": "My Hero Academia: Heroes Rising" + }, + "44209": { + "imdb_id": "tt13544716", + "title": "My Hero Academia: World Heroes' Mission" + }, + "11473": { + "imdb_id": "tt5170006", + "title": "The Reflection" + }, + "11476": { + }, + "12755": { + }, + "11477": { + "imdb_id": "tt5023666", + "title": "Arslan Senki", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11485": { + "imdb_id": "tt5618002", + "title": "Super Lovers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11486": { + "imdb_id": "tt5335782", + "title": "Bubuki buranki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12004": { + "imdb_id": "tt5335782", + "title": "Bubuki buranki", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11487": { + "imdb_id": "tt5345050", + "title": "Please Tell Me! Galko-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12521": { + "imdb_id": "tt5345050", + "title": "Please Tell Me! Galko-chan", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11490": { + "imdb_id": "tt7001136", + "title": "KADO: The Right Answer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11498": { + "imdb_id": "tt5923962", + "title": "Gantz: O" + }, + "11517": { + "imdb_id": "tt5347634", + "title": "Nurse Witch Komugi-chan R", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11529": { + "imdb_id": "tt5867902", + "title": "Hybrid X Heart Magias Academy Ataraxia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12780": { + "imdb_id": "tt5867902", + "title": "Hybrid X Heart Magias Academy Ataraxia", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11536": { + "imdb_id": "tt5338758", + "title": "Luck & Logic" + }, + "11537": { + "imdb_id": "tt6574146", + "title": "Blame!" + }, + "11538": { + "imdb_id": "tt5531604", + "title": "Tanaka-kun Is Always Listless" + }, + "8684": { + "imdb_id": "tt4307880", + "title": "Digimon Adventure Tri. 1: Reunion" + }, + "11546": { + "imdb_id": "tt5216534", + "title": "Digimon Adventure Tri. 2: Decision" + }, + "11547": { + "imdb_id": "tt5468014", + "title": "Digimon Adventure Tri. 3: Confession" + }, + "11548": { + "imdb_id": "tt5468016", + "title": "Digimon Adventure Tri. 4: Loss" + }, + "11549": { + "imdb_id": "tt5468018", + "title": "Digimon Adventure Tri. 5: Coexistence" + }, + "11550": { + "imdb_id": "tt5468022", + "title": "Digimon Adventure Tri. 6: Future" + }, + "11552": { + "imdb_id": "tt5669064", + "title": "Mahô shôjo nante môiidesukara", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11553": { + "imdb_id": "tt5637108", + "title": "Twin Star Exorcists", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11562": { + "imdb_id": "tt5463002", + "title": "King of Prism by PrettyRhythm" + }, + "11570": { + "imdb_id": "tt5753374", + "title": "Shônen Maid", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12499": { + "imdb_id": "tt5753374", + "title": "Shônen Maid", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11571": {}, + "11572": { + "imdb_id": "tt2580046", + "title": "Miraculous: Tales of Ladybug & Cat Noir", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13425": { + "imdb_id": "tt2580046", + "title": "Miraculous: Tales of Ladybug & Cat Noir", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42156": { + "imdb_id": "tt2580046", + "title": "Miraculous: Tales of Ladybug & Cat Noir", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44436": { + "imdb_id": "tt2580046", + "title": "Miraculous: Tales of Ladybug & Cat Noir", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11578": { + "imdb_id": "tt5897304", + "fanartLogoId": "63740", + "title": "Mob Psycho 100", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41071": { + "imdb_id": "tt5897304", + "fanartLogoId": "91114", + "title": "Mob Psycho 100", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45338": { + "imdb_id": "tt5897304", + "fanartLogoId": "156547", + "title": "Mob Psycho 100", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11579": { + "imdb_id": "tt6016316", + "title": "Danganronpa 3: The End of Hope's Peak Academy - Future Arc", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11580": { + "imdb_id": "tt0278238", + "title": "Samurai Jack", + "fromSeason": 5, + "fromEpisode": 1 + }, + "11584": { + "imdb_id": "tt6763304", + "title": "Monster Hunter Stories: Ride On", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11587": { + "imdb_id": "tt5432596", + "title": "Pandora in the Crimson Shell: Ghost Urn" + }, + "11590": { + "imdb_id": "tt2391599", + "title": "Oshiri kajiri mushi", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11593": { + "imdb_id": "tt7724400", + "title": "Ange Vierge", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11595": { + "imdb_id": "tt10820286", + "title": "Ensemble Stars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11597": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 7, + "fromEpisode": 1 + }, + "11599": { + "imdb_id": "tt5532808", + "title": "This Boy Is a Professional Wizard", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11605": { + "imdb_id": "tt5895314", + "title": "Kuromukuro" + }, + "11610": { + "imdb_id": "tt6777074", + "title": "Love Tyrant" + }, + "11613": { + "imdb_id": "tt5483932", + "title": "Koyomimonogatari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11614": { + "imdb_id": "tt5311514", + "title": "Your Name." + }, + "11618": { + "imdb_id": "tt5329084", + "title": "Active Raid", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11621": { + "imdb_id": "tt3666024", + "title": "The Red Turtle" + }, + "11627": {}, + "11653": { + "imdb_id": "tt7243824", + "title": "Qualidea Code" + }, + "11654": { + "imdb_id": "tt5954268", + "title": "D.Gray-man Hallow", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11655": { + "imdb_id": "tt5847454", + "title": "Berserk", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12569": { + "imdb_id": "tt5847454", + "title": "Berserk", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11662": { + "imdb_id": "tt7120888", + "title": "Clockwork Planet" + }, + "11668": { + "imdb_id": "tt5527088", + "title": "Tabimachi Late Show" + }, + "11682": { + "imdb_id": "tt5614348", + "title": "The Lost Village" + }, + "11685": { + "imdb_id": "tt5829254", + "title": "Usakame" + }, + "11688": { + "imdb_id": "tt5296398", + "fanartLogoId": "106222", + "title": "Maho Tsukai PreCure!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47186": { + "imdb_id": "tt5296398", + "fanartLogoId": "197426", + "title": "Maho Tsukai PreCure!! MIRAI DAYS", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11737": { + "imdb_id": "tt5321682", + "title": "She and Her Cat: Everything Flows" + }, + "11745": { + "imdb_id": "tt5789296", + "title": "Love Live! Sunshine!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13299": { + "imdb_id": "tt5789296", + "title": "Love Live! Sunshine!!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "14188": { + "imdb_id": "tt8659948", + "title": "Love Live! Sunshine!! The School Idol Movie: Over The Rainbow" + }, + "11748": { + "imdb_id": "tt5897818", + "title": "Days" + }, + "11751": { + "imdb_id": "tt5701624", + "title": "Haven't You Heard? I'm Sakamoto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11756": { + "imdb_id": "tt6350902", + "title": "Magic of Stella" + }, + "11759": { + "imdb_id": "tt5989928", + "title": "Gintama: Aizome Kaori-hen" + }, + "11770": { + "imdb_id": "tt5921946", + "title": "Cheer Boys!!" + }, + "11779": { + "imdb_id": "tt5648400", + "title": "Cerberus", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11782": { + "imdb_id": "tt5749826", + "title": "12-Sai. Chiccha na Mune no Tokimeki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12270": { + "imdb_id": "tt5749826", + "title": "12-Sai. Chiccha na Mune no Tokimeki", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8481": { + "imdb_id": "tt5749826", + "title": "12-Sai. Chiccha na Mune no Tokimeki", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11785": { + "imdb_id": "tt5616582", + "title": "Onigiri" + }, + "11793": { + "imdb_id": "tt6353054", + "title": "Girlish Number" + }, + "11794": { + "imdb_id": "tt6455986", + "title": "Saga of Tanya the Evil", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13215": { + "imdb_id": "tt6455986", + "title": "Saga of Tanya the Evil", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44779": { + "imdb_id": "tt6455986", + "title": "Saga of Tanya the Evil", + "fromSeason": 0, + "fromEpisode": 17 + }, + "14173": { + "imdb_id": "tt9507276", + "title": "Saga of Tanya the Evil Movie" + }, + "11802": { + "imdb_id": "tt5878004", + "title": "Handa-kun" + }, + "11803": { + }, + "11806": { + "imdb_id": "tt5439612", + "title": "Noblesse: Awakening" + }, + "11807": { + "imdb_id": "tt5877116", + "title": "Endride", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11811": { + }, + "11818": { + "imdb_id": "tt5446578", + "title": "Space Patrol Luluco" + }, + "11822": { + "imdb_id": "tt5419220", + "title": "Kagewani", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11823": { + "imdb_id": "tt6344982", + "title": "Poco's Udon World" + }, + "11824": { + "imdb_id": "tt6220550", + "title": "Hip Whip Girl: Keijo!!!!!!" + }, + "11825": { + "imdb_id": "tt5580664", + "title": "Voltron", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11826": { + "imdb_id": "tt5839698", + "title": "The Morose Mononokean", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11829": { + }, + "11838": { + "imdb_id": "tt6765658", + "title": "Thunderbolt Fantasy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13609": { + "imdb_id": "tt6765658", + "title": "Thunderbolt Fantasy", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43201": { + "imdb_id": "tt6765658", + "title": "Thunderbolt Fantasy", + "fromSeason": 3, + "fromEpisode": 1 + }, + "49089": { + "imdb_id": "tt6765658", + "title": "Thunderbolt Fantasy", + "fromSeason": 4, + "fromEpisode": 1 + }, + "11839": { + "imdb_id": "tt1605838", + "title": "Avatar: The Last Airbender - The Legend So Far" + }, + "11844": { + "imdb_id": "tt5839732", + "title": "Orange" + }, + "11846": { + "imdb_id": "tt8256136", + "title": "Puzzle & Dragons X", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41143": { + "imdb_id": "tt8256136", + "title": "Puzzle & Dragons X", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11848": { + "imdb_id": "tt13117166", + "title": "Gekidol", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12541": { + "imdb_id": "tt13117166", + "title": "Gekidol", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11850": { + "imdb_id": "tt1587790", + "title": "Mobile Suit Gundam UC", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4525": { + "imdb_id": "tt1587790", + "title": "Mobile Suit Gundam UC", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11870": { + "imdb_id": "tt5853222", + "title": "Sweetness and Lightning" + }, + "11871": { + "imdb_id": "tt6114698", + "title": "Nobunaga No Shinobi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13303": { + "imdb_id": "tt6114698", + "title": "Nobunaga No Shinobi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "14207": { + "imdb_id": "tt6114698", + "title": "Nobunaga No Shinobi", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12672": { + "imdb_id": "tt6114698", + "title": "Nobunaga No Shinobi", + "fromSeason": 1, + "fromEpisode": 0 + }, + "11880": { + "imdb_id": "tt7944664", + "title": "B: The Beginning", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41401": { + "imdb_id": "tt7944664", + "title": "B: The Beginning", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3179": { + "imdb_id": "tt1300176", + "title": "Strike Witches", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4540": { + "imdb_id": "tt1300176", + "title": "Strike Witches", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41934": { + "imdb_id": "tt1300176", + "title": "Strike Witches", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11887": { + "imdb_id": "tt6354120", + "title": "Brave Witches", + "fromSeason": 1, + "fromEpisode": 1 + }, + "5851": { + "imdb_id": "tt2322603", + "title": "Strike Witches the Movie" + }, + "8658": { + "imdb_id": "tt5542418", + "title": "Strike Witches: Operation Victory Arrow" + }, + "11889": { + "imdb_id": "tt6597832", + "title": "Kuroko no Basket Movie 1: Winter Cup Soushuuhen - Kage to Hikari" + }, + "11891": { + "imdb_id": "tt6449216", + "title": "Kuroko No Basket Movie 3: Winter Cup Soushuuhen - Tobira No Mukou" + }, + "11894": { + "imdb_id": "tt6543300", + "title": "elDLIVE" + }, + "11899": {}, + "11902": { + "imdb_id": "tt6768600", + "title": "DanMachi: Is It Wrong to Try to Pick Up Girls in a Dungeon? On the Side - Sword Oratoria", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11910": { + "imdb_id": "tt5879454", + "title": "Kiss Him, Not Me" + }, + "11912": { + "imdb_id": "tt6631966", + "title": "Bananya", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42486": { + "imdb_id": "tt6631966", + "title": "Bananya", + "fromSeason": 2, + "fromEpisode": 1 + }, + "49155": { + "imdb_id": "tt6631966", + "title": "Bananya", + "fromSeason": 3, + "fromEpisode": 1 + }, + "11914": { + "imdb_id": "tt6783056", + "title": "Eromanga Sensei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14016": { + "imdb_id": "tt6783056", + "title": "Eromanga Sensei", + "fromSeason": 0, + "fromEpisode": 1 + }, + "11931": { + "imdb_id": "tt6580380", + "title": "The Irregular at Magic High School: The Movie - The Girl Who Summons the Stars" + }, + "11932": { + "imdb_id": "tt5754594", + "title": "Crane Game Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11934": { + "imdb_id": "tt6473260", + "title": "The Urara of Labyrinth Town" + }, + "11936": { + "imdb_id": "tt8425966", + "title": "The Silver Guardian", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11938": { + "imdb_id": "tt5878200", + "title": "Battery" + }, + "11939": { + "imdb_id": "tt6142628", + "title": "The Great Passage", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11940": { + "imdb_id": "tt6197170", + "title": "Scum's Wish" + }, + "11942": { + "imdb_id": "tt6845846", + "title": "Akashic Records of Bastard Magical Instructor" + }, + "11945": { + "imdb_id": "tt7571676", + "title": "Nyanbo!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11948": { + "imdb_id": "tt5891552", + "title": "Regalia: The Three Sacred Stars" + }, + "11949": { + "imdb_id": "tt6135350", + "title": "Occultic;Nine" + }, + "11951": { + "imdb_id": "tt6401430", + "title": "Hand Shakers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13599": { + "imdb_id": "tt6401430", + "title": "Hand Shakers", + "fromSeason": 0, + "fromEpisode": 3 + }, + "11956": { + "imdb_id": "tt7765890", + "title": "Aggressive Retsuko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11957": { + "imdb_id": "tt5839706", + "title": "91 Days", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12515": { + "imdb_id": "tt5839706", + "title": "91 Days", + "fromSeason": 0, + "fromEpisode": 1 + }, + "13598": { + "imdb_id": "tt5839706", + "title": "91 Days", + "fromSeason": 0, + "fromEpisode": 2 + }, + "41661": { + "imdb_id": "tt5839706", + "title": "91 Days", + "fromSeason": 0, + "fromEpisode": 3 + }, + "11965": { + "imdb_id": "tt8526106", + "title": "Island", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11966": { + "imdb_id": "tt6300838", + "title": "Tiger Mask W" + }, + "11994": { + "imdb_id": "tt8503628", + "title": "Katsugeki/Touken Ranbu" + }, + "11995": { + "imdb_id": "tt8424906", + "title": "Touken Ranbu: Hanamaru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11997": { + "imdb_id": "tt6139566", + "title": "Flip Flappers" + }, + "11998": { + "imdb_id": "tt8086086", + "title": "Tsukiuta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43558": { + "imdb_id": "tt8086086", + "title": "Tsukiuta", + "fromSeason": 2, + "fromEpisode": 1 + }, + "11999": { + "imdb_id": "tt6112556", + "title": "Yuri!!! On Ice" + }, + "12001": { + "imdb_id": "tt6327570", + "title": "The Moment You Fall in Love" + }, + "12005": { + "imdb_id": "tt5344382", + "title": "Mobile Suit Gundam: Iron-Blooded Orphans", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12006": { + "imdb_id": "tt7940468", + "title": "Fate/Extra Last Encore", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41396": { + "imdb_id": "tt7940468", + "title": "Fate/Extra Last Encore", + "fromSeason": 1, + "fromEpisode": 11 + }, + "12009": { + "imdb_id": "tt6350614", + "title": "Scorching Ping Pong Girls" + }, + "12019": { + "imdb_id": "tt5595178", + "title": "Brotherhood: Final Fantasy XV" + }, + "12022": { + "imdb_id": "tt6427166", + "title": "Descending Stories: Shôwa Genroku rakugo shinjû" + }, + "12023": { + "imdb_id": "tt6026166", + "title": "Planetarian: The Reverie of a Little Planet" + }, + "12053": { + "imdb_id": "tt6047388", + "title": "Planetarian: Hoshi no Hito" + }, + "12024": { + "imdb_id": "tt6176438", + "title": "WWW.Working!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12026": { + }, + "12038": { + "imdb_id": "tt5824736", + "title": "Shônen Ashibe GO! GO! Goma-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12064": { + "imdb_id": "tt13887556", + "title": "Thus Spoke Kishibe Rohan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12065": { + "imdb_id": "tt6342604", + "title": "Lostorage incited Wixoss", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12084": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12276": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12277": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13246": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13644": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 5, + "fromEpisode": 1 + }, + "14238": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 6, + "fromEpisode": 1 + }, + "42411": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 7, + "fromEpisode": 1 + }, + "42926": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 8, + "fromEpisode": 1 + }, + "43350": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 9, + "fromEpisode": 1 + }, + "43885": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 10, + "fromEpisode": 1 + }, + "12088": { + "imdb_id": "tt5915166", + "fanartLogoId": "91646", + "title": "B-Project", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41992": { + "imdb_id": "tt5915166", + "fanartLogoId": "91646", + "title": "B-Project", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44311": { + "imdb_id": "tt5915166", + "fanartLogoId": "182054", + "title": "B-Project", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12103": { + "imdb_id": "tt5853206", + "title": "The Highschool Life of a Fudanshi" + }, + "12105": { + "imdb_id": "tt6027642", + "title": "Danganronpa 3: The End of Hope's Peak Academy - Despair Arc" + }, + "12117": { + "imdb_id": "tt6858404", + "title": "Anonymous Noise" + }, + "12118": { + }, + "12119": { + }, + "12127": { + "imdb_id": "tt6354518", + "title": "The Disastrous Life of Saiki K.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13477": { + "imdb_id": "tt6354518", + "title": "The Disastrous Life of Saiki K.", + "fromSeason": 2, + "fromEpisode": 1 + }, + "8806": { + "imdb_id": "tt6354518", + "title": "The Disastrous Life of Saiki K.", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41940": { + "imdb_id": "tt6354518", + "title": "The Disastrous Life of Saiki K.", + "fromSeason": 0, + "fromEpisode": 2 + }, + "12138": { + "imdb_id": "tt7625514", + "title": "Is the Order a Rabbit?: Dear My Sister" + }, + "3293": { + "imdb_id": "tt1276525", + "title": "Chi's Sweet Home", + "fromSeason": 1, + "fromEpisode": 1 + }, + "4388": { + "imdb_id": "tt1276525", + "title": "Chi's Sweet Home", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12154": { + "imdb_id": "tt6356032", + "title": "Chi's Sweet Home", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13906": { + "imdb_id": "tt6356032", + "title": "Chi's Sweet Home", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48789": { + "imdb_id": "tt6356032", + "title": "Chi's Sweet Home", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12168": { + "imdb_id": "tt12838778", + "title": "Aware! Meisaku-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12182": { + "imdb_id": "tt6114684", + "title": "Magic Kyun! Renaissance", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12199": { + "imdb_id": "tt2320220", + "title": "Kamisama Kiss", + "fromSeason": 0, + "fromEpisode": 6 + }, + "12200": { + "imdb_id": "tt6382544", + "title": "Dream Festival", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12202": { + "imdb_id": "tt6401396", + "title": "ACCA: 13-Territory Inspection Dept." + }, + "12204": { + }, + "12228": { + "imdb_id": "tt6425816", + "title": "One Piece: Heart of Gold" + }, + "12230": { + "imdb_id": "tt7078180", + "title": "Violet Evergarden", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41155": { + "imdb_id": "tt7078180", + "title": "Violet Evergarden", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42340": { + "imdb_id": "tt10477558", + "title": "Violet Evergarden: Eternity and the Auto Memories Doll" + }, + "12233": { + "imdb_id": "tt7058854", + "title": "Haikara-San: Here Comes Miss Modern" + }, + "12234": { + "imdb_id": "tt8851064", + "title": "Trickster" + }, + "12235": { + "imdb_id": "tt6263302", + "title": "Atom the Beginning" + }, + "12236": { + "imdb_id": "tt10706734", + "title": "Time Travel Shoujo: Mari Waka to 8-nin no Kagakusha-tachi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12237": { + "imdb_id": "tt6279576", + "title": "Cardcaptor Sakura: Clear Card Arc", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12241": { + "imdb_id": "tt5086972", + "title": "Starmyu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12243": { + "imdb_id": "tt6185782", + "title": "Miss Kobayashi's Dragon Maid", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42149": { + "imdb_id": "tt6185782", + "title": "Miss Kobayashi's Dragon Maid", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13861": { + "imdb_id": "tt6185782", + "title": "Miss Kobayashi's Dragon Maid", + "fromSeason": 0, + "fromEpisode": 1 + }, + "13241": { + "imdb_id": "tt6185782", + "title": "Miss Kobayashi's Dragon Maid", + "fromSeason": 0, + "fromEpisode": 2 + }, + "44326": { + "imdb_id": "tt6185782", + "title": "Miss Kobayashi's Dragon Maid", + "fromSeason": 0, + "fromEpisode": 9 + }, + "45015": { + "imdb_id": "tt6185782", + "title": "Miss Kobayashi's Dragon Maid", + "fromSeason": 0, + "fromEpisode": 25 + }, + "45014": { + "imdb_id": "tt6185782", + "title": "Miss Kobayashi's Dragon Maid", + "fromSeason": 0, + "fromEpisode": 26 + }, + "12244": { + }, + "12245": { + "imdb_id": "tt5618002", + "title": "Super Lovers", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12247": { + "imdb_id": "tt0115108", + "title": "Beast Wars: Transformers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12248": { + "imdb_id": "tt0189315", + "title": "Beast Machines: Transformers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12250": { + "imdb_id": "tt12882132", + "title": "Hitori No Shita - The Outcast", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13885": { + "imdb_id": "tt12882132", + "title": "Hitori No Shita - The Outcast", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43105": { + "imdb_id": "tt12882132", + "title": "Hitori No Shita - The Outcast", + "fromSeason": 3, + "fromEpisode": 1 + }, + "45264": { + "imdb_id": "tt12882132", + "title": "Hitori No Shita - The Outcast", + "fromSeason": 4, + "fromEpisode": 1 + }, + "12260": { + "imdb_id": "tt6104656", + "title": "Izetta: The Last Witch" + }, + "12265": { + "imdb_id": "tt9013220", + "title": "Armed Girl's Machiavellism", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14261": { + "imdb_id": "tt9013220", + "title": "Armed Girl's Machiavellism", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12267": { + "imdb_id": "tt6402190", + "title": "Masamune-kun's Revenge", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46031": { + "imdb_id": "tt6402190", + "title": "Masamune-kun's Revenge", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41264": { + "imdb_id": "tt6402190", + "title": "Masamune-kun's Revenge", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12272": { + "imdb_id": "tt6352180", + "title": "Little Witch Academia" + }, + "12273": { + "imdb_id": "tt7591766", + "title": "UQ Holder", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12274": { + }, + "12291": { + "imdb_id": "tt11605032", + "title": "Zhen Hun Jie", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42933": { + "imdb_id": "tt11605032", + "title": "Zhen Hun Jie", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44340": { + "imdb_id": "tt11605032", + "title": "Zhen Hun Jie", + "fromSeason": 2, + "fromEpisode": 6 + }, + "12292": { + "imdb_id": "tt6475250", + "title": "Assassination Classroom: 365 Days" + }, + "12295": { + }, + "12297": { + "imdb_id": "tt8893554", + "title": "Last Hope", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12314": { + "imdb_id": "tt6114326", + "title": "Digimon Universe: App Monsters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12318": { + "imdb_id": "tt6994582", + "title": "Hitorijime My Hero" + }, + "12322": { + "imdb_id": "tt5891608", + "title": "Matoi the Sacred Slayer" + }, + "12324": { + "imdb_id": "tt6344696", + "title": "Trinity Seven: The Movie - Eternity Library and Alchemic Girl" + }, + "42057": { + "imdb_id": "tt9826484", + "title": "Trinity Seven: Heavens Library & Crimson Lord" + }, + "12325": { + "imdb_id": "tt5914996", + "title": "No Game, No Life: The Movie - Zero" + }, + "12330": { + "imdb_id": "tt6460600", + "title": "BanG Dream!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41289": { + "imdb_id": "tt6460600", + "title": "BanG Dream!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41290": { + "imdb_id": "tt6460600", + "title": "BanG Dream!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13753": { + "imdb_id": "tt6460600", + "title": "BanG Dream!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "45963": { + "imdb_id": "tt6460600", + "title": "BanG Dream!", + "fromSeason": 0, + "fromEpisode": 7 + }, + "41292": { + "imdb_id": "tt11834788", + "title": "BanG Dream!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43185": { + "imdb_id": "tt11834788", + "title": "BanG Dream!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44673": { + "imdb_id": "tt11834788", + "title": "BanG Dream!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43370": { + "imdb_id": "tt11056458", + "title": "BanG Dream! FILM LIVE" + }, + "43371": { + "imdb_id": "tt14264308", + "title": "Bang Dream! Film Live 2nd Stage" + }, + "44523": { + "imdb_id": "tt13911494", + "title": "Bang Dream! Episode of Roselia: Promise" + }, + "44524": { + "imdb_id": "tt14147078", + "title": "Bang Dream! Episode of Roselia: Song I Am." + }, + "12346": { + }, + "12448": { + }, + "12460": { + "imdb_id": "tt6422976", + "title": "Fuuka" + }, + "12463": { + }, + "12464": { + "imdb_id": "tt6994648", + "title": "Saiyuki Reload Blast" + }, + "12465": { + }, + "12467": { + "imdb_id": "tt5669064", + "title": "Mahô shôjo nante môiidesukara", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12473": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 8, + "fromEpisode": 1 + }, + "12477": { + "imdb_id": "tt6355700", + "title": "Aooni the Blue Monster" + }, + "12478": { + "imdb_id": "tt6531060", + "title": "Ao Oni: The Animation" + }, + "12482": { + }, + "12484": { + "imdb_id": "tt7161218", + "title": "ID-0" + }, + "12487": { + }, + "12489": { + "imdb_id": "tt7361794", + "title": "Marginal #4 Kiss Kara Tsukuru Big Bang", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12492": { + }, + "12497": { + "imdb_id": "tt6407994", + "title": "Gabriel DropOut", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13294": { + "imdb_id": "tt6407994", + "title": "Gabriel DropOut", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12504": { + "imdb_id": "tt6210806", + "title": "Monster Strike the Movie" + }, + "12509": { + "imdb_id": "tt13167222", + "title": "Megaton-kyuu Musashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45580": { + "imdb_id": "tt13167222", + "title": "Megaton-kyuu Musashi", + "fromSeason": 1, + "fromEpisode": 14 + }, + "12529": { + "imdb_id": "tt6435350", + "title": "Interviews with Monster Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13591": { + "imdb_id": "tt6435350", + "title": "Interviews with Monster Girls", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12532": { + "imdb_id": "tt6478612", + "title": "Akiba's Trip: The Animation" + }, + "12534": { + "imdb_id": "tt8372010", + "fanartLogoId": "94215", + "title": "Tsugumomo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42180": { + "imdb_id": "tt8372010", + "fanartLogoId": "188584", + "title": "Tsugumomo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42181": { + "imdb_id": "tt8372010", + "title": "Tsugumomo", + "fromSeason": 0, + "fromEpisode": 1 + }, + "12535": { + "imdb_id": "tt7224994", + "title": "Restaurant to Another World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44434": { + "imdb_id": "tt7224994", + "title": "Restaurant to Another World", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12536": { + "imdb_id": "tt10484890", + "title": "To Be Hero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "40592": { + "imdb_id": "tt10484890", + "title": "To Be Hero", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46672": { + "imdb_id": "tt10484890", + "title": "To Be Hero", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12538": { + "imdb_id": "tt6494518", + "title": "Onihei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12539": { + "imdb_id": "tt6362756", + "title": "Bloodivores" + }, + "12540": { + "imdb_id": "tt6901486", + "title": "Seven Mortal Sins", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13514": { + "imdb_id": "tt6901486", + "title": "Seven Mortal Sins", + "fromSeason": 0, + "fromEpisode": 2 + }, + "13435": { + "imdb_id": "tt6901486", + "title": "Seven Mortal Sins", + "fromSeason": 0, + "fromEpisode": 4 + }, + "13436": { + "imdb_id": "tt6901486", + "title": "Seven Mortal Sins", + "fromSeason": 0, + "fromEpisode": 16 + }, + "12542": { + "imdb_id": "tt14202290", + "title": "Cheating Craft", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12551": { + "imdb_id": "tt2909936", + "title": "The Eccentric Family", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12554": { + "imdb_id": "tt6100248", + "title": "Danganronpa 3: The End of Hope's Peak Academy - Hope Arc", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12556": { + "imdb_id": "tt6379606", + "title": "Miss Bernard Said", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12558": { + "imdb_id": "tt11834102", + "fanartLogoId": "92771", + "title": "IDOLiSH7", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42453": { + "imdb_id": "tt11834102", + "fanartLogoId": "131603", + "title": "IDOLiSH7", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44314": { + "imdb_id": "tt11834102", + "fanartLogoId": "132499", + "title": "IDOLiSH7", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44315": { + "imdb_id": "tt11834102", + "fanartLogoId": "132499", + "title": "IDOLiSH7", + "fromSeason": 3, + "fromEpisode": 14 + }, + "12563": { + "imdb_id": "tt2480498", + "title": "Life of Crime" + }, + "12565": { + "imdb_id": "tt6096128", + "title": "Orange: Future" + }, + "12567": { + }, + "12593": { + "imdb_id": "tt3104246", + "title": "Aoki Hagane no Arpeggio: Ars Nova" + }, + "12596": { + }, + "12598": { + "imdb_id": "tt6402046", + "title": "King of Prism: Pride the Hero" + }, + "12599": { + "imdb_id": "tt7537488", + "title": "Sagrada Reset", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12600": { + "imdb_id": "tt11471422", + "title": "Chiruran 1/2", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12611": { + "imdb_id": "tt6859260", + "title": "The King's Avatar", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41358": { + "imdb_id": "tt6859260", + "title": "The King's Avatar", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41158": { + "imdb_id": "tt6859260", + "title": "The King's Avatar", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42673": { + "imdb_id": "tt10736726", + "title": "The King's Avatar: For the Glory" + }, + "12623": { + "imdb_id": "tt6477270", + "title": "Grimoire of Zero" + }, + "12624": { + "imdb_id": "tt6477282", + "title": "Tenshi no 3P!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12626": { + "imdb_id": "tt9806640", + "title": "Dances with the Dragons", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12628": { + "imdb_id": "tt7833606", + "title": "Girls und Panzer das Finale: Part I" + }, + "42947": { + "imdb_id": "tt7834494", + "title": "Girls und Panzer das Finale: Part II" + }, + "44519": { + "imdb_id": "tt12286898", + "title": "Girls und Panzer das Finale: Part III" + }, + "44520": { + "imdb_id": "tt28821523", + "title": "Girls und Panzer das Finale: Part IV" + }, + "12634": { + "imdb_id": "tt5979874", + "title": "Godzilla: Planet of the Monsters" + }, + "13297": { + "imdb_id": "tt8015080", + "title": "Godzilla: City on the Edge of Battle" + }, + "13298": { + "imdb_id": "tt8478602", + "title": "Godzilla: The Planet Eater" + }, + "12640": { + "imdb_id": "tt6153026", + "fanartLogoId": "138529", + "title": "Tawawa on Monday", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45228": { + "imdb_id": "tt6153026", + "fanartLogoId": "138478", + "title": "Tawawa on Monday", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12932": { + "imdb_id": "tt6153026", + "title": "Tawawa on Monday", + "fromSeason": 0, + "fromEpisode": 1 + }, + "45375": { + "imdb_id": "tt6153026", + "title": "Tawawa on Monday", + "fromSeason": 0, + "fromEpisode": 3 + }, + "12641": { + "imdb_id": "tt6004864", + "title": "The Dragon Dentist" + }, + "12644": { + "imdb_id": "tt6844136", + "title": "Hinako Note" + }, + "12667": { + "imdb_id": "tt6424452", + "title": "Oushitsu kyoushi Haine" + }, + "12668": { + "imdb_id": "tt6443118", + "title": "Shelter" + }, + "12671": { + "imdb_id": "tt10863968", + "title": "Cinderella Girls Gekijou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13895": { + "imdb_id": "tt10863968", + "title": "Cinderella Girls Gekijou", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41377": { + "imdb_id": "tt10863968", + "title": "Cinderella Girls Gekijou", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42229": { + "imdb_id": "tt10863968", + "title": "Cinderella Girls Gekijou", + "fromSeason": 4, + "fromEpisode": 1 + }, + "12673": { + "imdb_id": "tt6453340", + "title": "Seiren" + }, + "12678": { + "imdb_id": "tt3981902", + "title": "Yuki Yuna Is a Hero", + "fromSeason": 2, + "fromEpisode": 1 + }, + "14029": { + "imdb_id": "tt3981902", + "title": "Yuki Yuna Is a Hero", + "fromSeason": 2, + "fromEpisode": 7 + }, + "13160": { + "imdb_id": "tt3981902", + "title": "Yuki Yuna Is a Hero", + "fromSeason": 2, + "fromEpisode": 8 + }, + "12685": { + "imdb_id": "tt6478640", + "title": "Schoolgirl Strikers: Animation Channel", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12687": { + "imdb_id": "tt7908372", + "title": "Nyanko Days" + }, + "12705": { + "imdb_id": "tt7897050", + "title": "Record of Grancrest War" + }, + "12707": { + "imdb_id": "tt6562940", + "title": "Kemono Friends", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12720": { + "imdb_id": "tt6237498", + "title": "Osomatsusan: Ouma de kobanashi" + }, + "12722": { + "imdb_id": "tt7211600", + "title": "Lost Song", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12726": { + "imdb_id": "tt6735466", + "title": "Alice & Zouroku" + }, + "12730": { + "imdb_id": "tt8051722", + "title": "Detective Conan: Episode One - The Great Detective Turned Small" + }, + "12732": { + "imdb_id": "tt6994700", + "title": "Vatican Miracle Examiner", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12737": { + "imdb_id": "tt7521578", + "title": "Citrus" + }, + "12754": { + "imdb_id": "tt7163698", + "title": "Gamers!" + }, + "12757": { + "imdb_id": "tt7122440", + "title": "NTR: Netsuzou Trap" + }, + "12758": { + "imdb_id": "tt7797662", + "title": "One Room", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12794": { + "imdb_id": "tt6317962", + "title": "Fireworks" + }, + "13905": { + "imdb_id": "tt7797662", + "title": "One Room", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43556": { + "imdb_id": "tt7797662", + "title": "One Room", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12759": { + "imdb_id": "tt6754410", + "title": "Room Mate", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12761": { + "imdb_id": "tt6538106", + "title": "Hajimete No Gal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12762": { + "imdb_id": "tt9162914", + "title": "Libra of Nil Admirari" + }, + "12767": { + "imdb_id": "tt6344664", + "title": "Code Geass: Re;Surrection" + }, + "12769": { + "imdb_id": "tt6819736", + "title": "WorldEnd: What Do You Do at the End of the World? Are You Busy? Will You Save Us?" + }, + "12793": { + "imdb_id": "tt6740188", + "title": "Sakura Quest" + }, + "12807": { + "imdb_id": "tt13871228", + "title": "Frame Arms Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12821": { + "imdb_id": "tt9642532", + "title": "Girl Beats Boys" + }, + "12862": { + }, + "12864": { + "imdb_id": "tt2575728", + "title": "Ai Mai Mi", + "fromSeason": 3, + "fromEpisode": 1 + }, + "12866": { + "imdb_id": "tt0805815", + "title": "Cory in the House" + }, + "12584": { + "imdb_id": "tt6634906", + "title": "Gekijouban soushuuhen Ôbârôdo: Fushisha no ou" + }, + "12915": { + "imdb_id": "tt6634910", + "title": "Gekijouban soushuuhen Ôbârôdo: Shikkoku no eiyuu" + }, + "12923": { + "imdb_id": "tt6050174", + "title": "Assassination Classroom: Koro-sensei Q!" + }, + "12945": { + }, + "12948": { + "imdb_id": "tt6382544", + "title": "Dream Festival", + "fromSeason": 2, + "fromEpisode": 1 + }, + "12951": { + "imdb_id": "tt13104352", + "title": "Warau Salesman NEW", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12971": { + "imdb_id": "tt9728290", + "title": "Jikan no Shihaisha (Chronos Ruler)", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13007": { + "imdb_id": "tt5699366", + "title": "French Open Live 2016" + }, + "13051": { + "imdb_id": "tt6342474", + "title": "Boruto: Naruto Next Generations", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13055": { + "imdb_id": "tt6755926", + "title": "Re: Creators" + }, + "13056": { + "imdb_id": "tt10223702", + "title": "Meiji Tokyo Renka", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13057": { + "imdb_id": "tt7230846", + "title": "No Activity" + }, + "13061": { + "imdb_id": "tt6336356", + "title": "Mary and the Witch's Flower" + }, + "13065": { + "imdb_id": "tt7726244", + "title": "Taishou Mebius Rain Chicchaisan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13066": { + "imdb_id": "tt6424454", + "title": "Fate/Apocrypha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13068": { + "imdb_id": "tt7161104", + "title": "Welcome to the Ballroom" + }, + "13078": { + "imdb_id": "tt11317074", + "title": "Full-Time Magister", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13841": { + "imdb_id": "tt11317074", + "title": "Full-Time Magister", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41997": { + "imdb_id": "tt11317074", + "title": "Full-Time Magister", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43232": { + "imdb_id": "tt11317074", + "title": "Full-Time Magister", + "fromSeason": 4, + "fromEpisode": 1 + }, + "44956": { + "imdb_id": "tt11317074", + "title": "Full-Time Magister", + "fromSeason": 5, + "fromEpisode": 1 + }, + "13096": { + "imdb_id": "tt6340502", + "title": "Inuyashiki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13115": { + "imdb_id": "tt7049526", + "title": "Battle Girl High School", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13138": { + "imdb_id": "tt6335734", + "title": "Night Is Short, Walk On Girl" + }, + "13140": { + "imdb_id": "tt6357658", + "title": "Baki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42206": { + "imdb_id": "tt6357658", + "title": "Baki", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13148": { + }, + "13170": { + "imdb_id": "tt2320220", + "title": "Kamisama Kiss", + "fromSeason": 0, + "fromEpisode": 7 + }, + "13189": { + "imdb_id": "tt5628740", + "title": "Yu-Gi-Oh! Vrains" + }, + "13209": { + "imdb_id": "tt7441658", + "title": "Black Clover", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12625": { + "imdb_id": "tt7441658", + "title": "Black Clover", + "fromSeason": 0, + "fromEpisode": 1 + }, + "47442": { + "imdb_id": "tt7441658", + "title": "Black Clover", + "fromSeason": 0, + "fromEpisode": 11 + }, + "44242": { + "imdb_id": "tt22868844", + "title": "Black Clover: Sword of the Wizard King" + }, + "13225": { + "imdb_id": "tt7694276", + "title": "Juuni Taisen" + }, + "13226": { + "imdb_id": "tt3306838", + "title": "Hozuki's Coolheadedness", + "fromSeason": 2, + "fromEpisode": 1 + }, + "14157": { + "imdb_id": "tt3306838", + "title": "Hozuki's Coolheadedness", + "fromSeason": 2, + "fromEpisode": 14 + }, + "13227": { + "imdb_id": "tt8075454", + "title": "Mitsuboshi Colors" + }, + "13228": { + "imdb_id": "tt7326322", + "title": "The Ancient Magus' Bride", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46436": { + "imdb_id": "tt7326322", + "title": "The Ancient Magus' Bride", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47649": { + "imdb_id": "tt7326322", + "title": "The Ancient Magus' Bride", + "fromSeason": 2, + "fromEpisode": 13 + }, + "11913": { + "imdb_id": "tt7326322", + "fanartLogoId": "98363", + "title": "The Ancient Magus' Bride", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44168": { + "imdb_id": "tt15400722", + "title": "Mahou Tsukai no Yome: Nishi no Shounen to Seiran no Kishi" + }, + "13229": { + "imdb_id": "tt7484994", + "title": "Children of the Whales", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14054": { + "imdb_id": "tt7484994", + "title": "Children of the Whales", + "fromSeason": 0, + "fromEpisode": 1 + }, + "13230": { + "imdb_id": "tt6660498", + "title": "Devilman: Crybaby" + }, + "13231": { + }, + "13234": { + "imdb_id": "tt6472710", + "title": "As the Moon, So Beautiful", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13245": { + "imdb_id": "tt8938030", + "title": "Ani ni Tsukeru Kusuri wa Nai!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41331": { + "imdb_id": "tt8938030", + "title": "Ani ni Tsukeru Kusuri wa Nai!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42399": { + "imdb_id": "tt8938030", + "title": "Ani ni Tsukeru Kusuri wa Nai!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43275": { + "imdb_id": "tt8938030", + "title": "Ani ni Tsukeru Kusuri wa Nai!", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13252": { + "imdb_id": "tt7131720", + "title": "Kakegurui", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14172": { + "imdb_id": "tt7131720", + "title": "Kakegurui", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42112": { + "imdb_id": "tt7131720", + "title": "Kakegurui", + "fromSeason": 0, + "fromEpisode": 1 + }, + "45471": { + "imdb_id": "tt15912380", + "title": "Kakegurui Twin", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13257": { + "imdb_id": "tt7158574", + "title": "Koi to uso", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13258": { + "imdb_id": "tt7155052", + "title": "Tsuredure Children" + }, + "13259": { + "imdb_id": "tt7136968", + "title": "Aho Girl" + }, + "13260": { + "imdb_id": "tt12510204", + "title": "Elegant Yokai Apartment Life", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13261": { + "imdb_id": "tt6692956", + "title": "Princess Principal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44679": { + "imdb_id": "tt8354164", + "title": "Princess Principal Crown Handler: Chapter 1" + }, + "44680": { + "imdb_id": "tt14031960", + "title": "Princess Principal Crown Handler: Chapter 2" + }, + "44962": { + "imdb_id": "tt23638846", + "title": "Princess Principal: Crown Handler: Chapter 3" + }, + "49568": { + "imdb_id": "tt35720302", + "title": "Princess Principal: Crown Handler: Chapter 4" + }, + "13263": { + "imdb_id": "tt7418688", + "title": "Fastest Finger First" + }, + "13265": { + "imdb_id": "tt7964088", + "title": "School Babysitters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13266": { + "imdb_id": "tt7283052", + "title": "Your Voice -KIMIKOE-" + }, + "13268": { + "imdb_id": "tt5274556", + "title": "Owarimonogatari", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13270": { + "imdb_id": "tt7858928", + "title": "A Centaur's Life" + }, + "13273": { + "imdb_id": "tt7222086", + "title": "Made in Abyss", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42951": { + "imdb_id": "tt7222086", + "title": "Made in Abyss", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13274": { + "imdb_id": "tt7124066", + "title": "Knight's & Magic" + }, + "13276": { + "imdb_id": "tt7712706", + "title": "Death March to the Parallel World Rhapsody" + }, + "13277": { + "imdb_id": "tt6591406", + "title": "After the Rain" + }, + "13280": { + "imdb_id": "tt7263380", + "title": "Clean Freak! Aoyama Kun" + }, + "13281": { + "imdb_id": "tt8020634", + "title": "18If" + }, + "13302": { + "imdb_id": "tt6813106", + "title": "Sekai no Yami Zukan" + }, + "13306": {}, + "10988": { + "imdb_id": "tt5603088", + "title": "Monster Strike", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13316": { + "imdb_id": "tt5603088", + "title": "Monster Strike", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13343": { + "imdb_id": "tt5603088", + "title": "Monster Strike", + "fromSeason": 2, + "fromEpisode": 0 + }, + "13970": { + "imdb_id": "tt5603088", + "title": "Monster Strike", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41498": { + "imdb_id": "tt5603088", + "title": "Monster Strike", + "fromSeason": 4, + "fromEpisode": 1 + }, + "41499": { + "imdb_id": "tt5603088", + "title": "Monster Strike", + "fromSeason": 4, + "fromEpisode": 0 + }, + "13317": { + "imdb_id": "tt6234680", + "title": "ClassicaLoid", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13319": { + "imdb_id": "tt7808370", + "title": "Pop Team Epic", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45651": { + "imdb_id": "tt7808370", + "title": "Pop Team Epic", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13320": { + }, + "13327": { + }, + "13331": { + "imdb_id": "tt2291137", + "title": "Furusato saisei: Nihon no mukashi banashi", + "fromSeason": 6, + "fromEpisode": 1 + }, + "13342": { + "imdb_id": "tt2390066", + "title": "Teekyû", + "fromSeason": 9, + "fromEpisode": 1 + }, + "13360": {}, + "13361": { + }, + "13401": { + "imdb_id": "tt6074794", + "title": "March Comes in Like a Lion", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13402": { + "imdb_id": "tt7839458", + "title": "Mahôjin guru guru ", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13426": { + "imdb_id": "tt5580664", + "title": "Voltron", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13427": { + "imdb_id": "tt5580664", + "title": "Voltron", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13429": { + "imdb_id": "tt2758770", + "title": "Star vs. the Forces of Evil", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13431": { + "imdb_id": "tt2758770", + "title": "Star vs. the Forces of Evil", + "fromSeason": 3, + "fromEpisode": 5 + }, + "13433": { + }, + "13434": { + }, + "13457": { + "imdb_id": "tt7088332", + "title": "Isekai wa smartphone to tomo ni.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46057": { + "imdb_id": "tt7088332", + "title": "Isekai wa smartphone to tomo ni.", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13463": { + "imdb_id": "tt8254088", + "title": "Jikken-hin Kazoku: Creatures Family Days" + }, + "13465": { + "imdb_id": "tt7657580", + "title": "Blend S" + }, + "13466": { + "imdb_id": "tt8278998", + "title": "Isekai Izakaya: Koto Aitheria no Izakaya Nobu" + }, + "13467": { + "imdb_id": "tt6638842", + "title": "Kino's Journey: The Beautiful World - The Animated Series", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13469": { + "imdb_id": "tt9826402", + "title": "Yu-No: A Girl Who Chants Love at the Bound of this World" + }, + "13470": { + "imdb_id": "tt10253816", + "title": "Kabaneri of the Iron Fortress: The Battle of Unato" + }, + "13478": { + "imdb_id": "tt8424906", + "title": "Touken Ranbu: Hanamaru", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13480": { + "imdb_id": "tt7742120", + "fanartLogoId": "140329", + "title": "Laid-Back Camp", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41976": { + "imdb_id": "tt7742120", + "fanartLogoId": "140327", + "title": "Laid-Back Camp", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46649": { + "imdb_id": "tt7742120", + "fanartLogoId": "188527", + "title": "Laid-Back Camp", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41068": { + "imdb_id": "tt7742120", + "title": "Laid-Back Camp", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44601": { + "imdb_id": "tt7742120", + "title": "Laid-Back Camp", + "fromSeason": 0, + "fromEpisode": 18 + }, + "41977": { + "imdb_id": "tt14364238", + "title": "Laid-Back Camp Movie" + }, + "13484": { + }, + "13485": { + "imdb_id": "tt8253268", + "title": "Uma Musume: Pretty Derby", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43576": { + "imdb_id": "tt8253268", + "title": "Uma Musume: Pretty Derby", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46711": { + "imdb_id": "tt8253268", + "title": "Uma Musume: Pretty Derby", + "fromSeason": 3, + "fromEpisode": 1 + }, + "46101": { + "imdb_id": "tt27522506", + "title": "Uma Musume: Pretty Derby - Road to the Top", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13503": { + "imdb_id": "tt7263328", + "fanartLogoId": "93063", + "title": "Classroom of the Elite", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45925": { + "imdb_id": "tt7263328", + "fanartLogoId": "149318", + "title": "Classroom of the Elite", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45951": { + "imdb_id": "tt7263328", + "fanartLogoId": "186286", + "title": "Classroom of the Elite", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13521": { + "imdb_id": "tt7790776", + "title": "Land of the Lustrous" + }, + "13524": { + "imdb_id": "tt6915208", + "title": "Love, Chunibyo & Other Delusions! Take on Me" + }, + "13529": { + "imdb_id": "tt6517102", + "title": "Castlevania", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13627": { + "imdb_id": "tt6517102", + "title": "Castlevania", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41990": { + "imdb_id": "tt6517102", + "title": "Castlevania", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44387": { + "imdb_id": "tt6517102", + "title": "Castlevania", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13530": { + "imdb_id": "tt7513452", + "title": "Just Because" + }, + "13531": { + "imdb_id": "tt7829962", + "title": "Ms. Koizumi Loves Ramen Noodles" + }, + "13533": { + "imdb_id": "tt2758770", + "title": "Star vs. the Forces of Evil", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13535": { + "imdb_id": "tt7785128", + "title": "Non Non Biyori: The Movie - Vacation" + }, + "13537": { + "imdb_id": "tt9728264", + "title": "Konbini Kareshi (Convenience Store Boyfriends)" + }, + "13539": { + "imdb_id": "tt10879722", + "title": "Action Heroine Cheer Fruits", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13545": { + "imdb_id": "tt9735448", + "title": "Hina Logic: From Luck & Logic", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13561": { + "imdb_id": "tt7013036", + "title": "The Irresponsible Galaxy Tylor", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13563": { + "imdb_id": "tt26737616", + "title": "Pluto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13570": { + "imdb_id": "tt8391976", + "title": "Bungou Stray Dogs: Dead Apple" + }, + "13572": { + }, + "13573": { + "imdb_id": "tt8425966", + "title": "The Silver Guardian", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13592": { + "imdb_id": "tt8836500", + "title": "Chio's School Road" + }, + "13593": { + "imdb_id": "tt9529546", + "fanartLogoId": "91785", + "title": "The Rising of the Shield Hero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42530": { + "imdb_id": "tt9529546", + "fanartLogoId": "145608", + "title": "The Rising of the Shield Hero", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42531": { + "imdb_id": "tt9529546", + "fanartLogoId": "172179", + "title": "The Rising of the Shield Hero", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13597": { + "imdb_id": "tt7474942", + "title": "Girls' Last Tour" + }, + "13600": { + "imdb_id": "tt7865090", + "title": "DARLING in the FRANXX" + }, + "13601": { + "imdb_id": "tt8747928", + "title": "SSSS.Gridman" + }, + "13602": { + "imdb_id": "tt9116358", + "title": "Promare" + }, + "42588": { + "imdb_id": "tt11803654", + "title": "Promare: Lio-hen" + }, + "42587": { + "imdb_id": "tt11803614", + "title": "Promare: Galo-hen" + }, + "13612": { + "imdb_id": "tt7339826", + "title": "Maquia: When the Promised Flower Blooms" + }, + "13613": { + "imdb_id": "tt10662504", + "title": "RErideD - Derrida, who leaps through time" + }, + "13614": { + "imdb_id": "tt8673808", + "title": "Angolmois: Genkou Kassenki" + }, + "13615": { + "imdb_id": "tt7836688", + "title": "Sora yori mo Tooi Basho" + }, + "13616": { + "imdb_id": "tt9089548", + "title": "Fox Spirit Matchmaker", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13618": { + "imdb_id": "tt7089878", + "title": "Liz and the Blue Bird" + }, + "13619": { + "imdb_id": "tt7089882", + "title": "Sound! Euphonium the Movie - Our Promise: A Brand New Day" + }, + "13621": { + "imdb_id": "tt6562940", + "title": "Kemono Friends", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13623": {}, + "13635": { + "imdb_id": "tt7808344", + "title": "Karakai Jouzu no Takagi-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42110": { + "imdb_id": "tt7808344", + "title": "Karakai Jouzu no Takagi-san", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45022": { + "imdb_id": "tt7808344", + "title": "Karakai Jouzu no Takagi-san", + "fromSeason": 3, + "fromEpisode": 1 + }, + "45023": { + "imdb_id": "tt15313532", + "title": "Karakai Jouzu no Takagi-san Movie" + }, + "13638": { + "imdb_id": "tt7351734", + "title": "Urahara" + }, + "13639": { + "imdb_id": "tt10563920", + "title": "Hakubo" + }, + "13642": { + }, + "13651": { + "imdb_id": "tt7283046", + "title": "Binan koukou chikyuu boueibu Love! Love! Love!" + }, + "13655": { + "imdb_id": "tt7328554", + "title": "Haikyû!!: Sainou to sensu" + }, + "13656": { + "imdb_id": "tt7328556", + "title": "Haikyû!! Concept no Tatakai" + }, + "13659": { + "imdb_id": "tt8530992", + "title": "Harukana Receive" + }, + "13660": { + "imdb_id": "tt8254880", + "title": "Wotakoi: Love Is Hard for Otaku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13661": { + "imdb_id": "tt8271972", + "title": "The Ryuo's Work Is Never Done!" + }, + "13663": { + "imdb_id": "tt5580664", + "title": "Voltron", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13676": { + "imdb_id": "tt7848474", + "title": "Basilisk: Ouka Ninpouchou" + }, + "13679": { + "imdb_id": "tt8278732", + "title": "Alice or Alice: Siscon Niisan to Futago no Imouto" + }, + "13680": { + "imdb_id": "tt7545002", + "title": "Twocar" + }, + "13684": { + "imdb_id": "tt8010544", + "title": "Persona 5: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "11602": { + "imdb_id": "tt8010544", + "title": "Persona 5: The Animation", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41972": { + "imdb_id": "tt8010544", + "title": "Persona 5: The Animation", + "fromSeason": 0, + "fromEpisode": 3 + }, + "42090": { + "imdb_id": "tt8010544", + "title": "Persona 5: The Animation", + "fromSeason": 0, + "fromEpisode": 4 + }, + "42354": { + "imdb_id": "tt8010544", + "title": "Persona 5: The Animation", + "fromSeason": 0, + "fromEpisode": 5 + }, + "43338": { + "imdb_id": "tt8010544", + "title": "Persona 5: The Animation", + "fromSeason": 0, + "fromEpisode": 6 + }, + "13686": { + "imdb_id": "tt7742090", + "title": "Hakyu Hoshin Engi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13689": { + "imdb_id": "tt8225204", + "title": "Golden Kamuy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41442": { + "imdb_id": "tt8225204", + "title": "Golden Kamuy", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42435": { + "imdb_id": "tt8225204", + "title": "Golden Kamuy", + "fromSeason": 3, + "fromEpisode": 1 + }, + "45556": { + "imdb_id": "tt8225204", + "title": "Golden Kamuy", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13693": { + "imdb_id": "tt8644562", + "title": "Boku no Kanojo ga Majimesugiru Sho-bitch na Ken" + }, + "13695": { + "imdb_id": "tt6908976", + "title": "Knights of the Zodiac: Saint Seiya", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46220": { + "imdb_id": "tt6908976", + "title": "Knights of the Zodiac: Saint Seiya", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46920": { + "imdb_id": "tt6908976", + "title": "Knights of the Zodiac: Saint Seiya", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13696": { + "imdb_id": "tt8116380", + "title": "A.I.C.O. Incarnation" + }, + "13697": { + "imdb_id": "tt5066664", + "title": "Cannon Busters", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13698": { + "imdb_id": "tt9348716", + "title": "Rilakkuma and Kaoru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13699": { + "imdb_id": "tt7535706", + "title": "Anime-Gataris" + }, + "13700": { + "imdb_id": "tt7814540", + "title": "Meruhen Medohen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13703": { + "imdb_id": "tt7662364", + "title": "Recovery of an MMO Junkie", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14061": { + "imdb_id": "tt7662364", + "title": "Recovery of an MMO Junkie", + "fromSeason": 0, + "fromEpisode": 1 + }, + "13706": { + }, + "13707": { + "imdb_id": "tt3199306", + "title": "Wake Up, Girls!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13708": { + "imdb_id": "tt8314920", + "title": "Devils Line", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13710": { + "imdb_id": "tt7829656", + "title": "Katana Maidens", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13711": { + }, + "13712": { + "imdb_id": "tt7899036", + "title": "Slow Start" + }, + "13713": { + "imdb_id": "tt7254486", + "title": "The King of Fighters: Destiny", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13714": { + "imdb_id": "tt14563172", + "title": "Sanrio Boys", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13715": { + "imdb_id": "tt8670784", + "title": "Angels of Death", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41963": { + "imdb_id": "tt8670784", + "title": "Angels of Death", + "fromSeason": 1, + "fromEpisode": 13 + }, + "13717": { + "imdb_id": "tt7814574", + "title": "Junji Ito Collection", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14130": { + "imdb_id": "tt7814574", + "title": "Junji Ito Collection: Tomie", + "fromSeason": 0, + "fromEpisode": 1 + }, + "13719": { + "imdb_id": "tt7727278", + "title": "Osake wa Fuufu ni Natte kara" + }, + "13720": { + "imdb_id": "tt6342604", + "title": "Lostorage incited Wixoss", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13721": { + "imdb_id": "tt11628636", + "title": "Tsukipro the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43890": { + "imdb_id": "tt11628636", + "title": "Tsukipro the Animation", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13722": { + "imdb_id": "tt8253158", + "title": "Comic Girls" + }, + "13723": { + "imdb_id": "tt7236034", + "title": "I Want to Eat Your Pancreas" + }, + "13727": { + "imdb_id": "tt7462702", + "title": "Osama Game", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14115": { + "imdb_id": "tt7462702", + "title": "Osama Game", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13729": { + "imdb_id": "tt8693220", + "title": "How to Keep a Mummy" + }, + "13730": { + "imdb_id": "tt7963070", + "title": "Garo: Vanishing Line" + }, + "13752": { + "imdb_id": "tt7535746", + "title": "Konohana Kitan" + }, + "13755": { + }, + "13756": { + }, + "13760": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13762": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13763": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 3, + "fromEpisode": 1 + }, + "13764": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 4, + "fromEpisode": 1 + }, + "13765": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 5, + "fromEpisode": 1 + }, + "13766": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 6, + "fromEpisode": 1 + }, + "13767": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 7, + "fromEpisode": 1 + }, + "13768": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 8, + "fromEpisode": 1 + }, + "13769": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 9, + "fromEpisode": 1 + }, + "13780": { + "imdb_id": "tt7456468", + "title": "Asagao to Kase-san" + }, + "13784": { + "imdb_id": "tt8941186", + "title": "Sengoku Night Blood" + }, + "13788": { + "imdb_id": "tt7351628", + "title": "Our love has always been 10cm apart." + }, + "13811": { + "imdb_id": "tt7428594", + "title": "Blade Runner: Black Out 2022" + }, + "13816": { + "imdb_id": "tt6921524", + "title": "Cyborg 009: Call of Justice", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13821": { + "imdb_id": "tt9100954", + "title": "Gaikotsu Shotenin Honda-san" + }, + "13824": { + "imdb_id": "tt7918846", + "title": "Evil or Live" + }, + "13850": { + "imdb_id": "tt8100900", + "title": "Code Geass: Lelouch of the Rebellion I - Initiation" + }, + "13851": { + "imdb_id": "tt9598270", + "title": "Code Geass: Lelouch of the Rebellion II - Transgression" + }, + "13852": { + "imdb_id": "tt9844256", + "title": "Code Geass: Lelouch of the Rebellion III - Glorification" + }, + "13888": { + "imdb_id": "tt8249034", + "title": "Tada Never Falls in Love" + }, + "13889": { + "imdb_id": "tt13091238", + "title": "Kud Wafter" + }, + "13892": { + "imdb_id": "tt7058854", + "title": "Haikara-San: Here Comes Miss Modern" + }, + "13901": { + }, + "13908": { + }, + "13911": { + "imdb_id": "tt7451284", + "title": "Batman Ninja" + }, + "13932": { + "imdb_id": "tt7725942", + "title": "Rokuhoudou Yotsuio Biyori", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13939": { + "imdb_id": "tt7900936", + "title": "Beatless", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41407": { + "imdb_id": "tt7900936", + "title": "Beatless", + "fromSeason": 1, + "fromEpisode": 21 + }, + "13940": { + "imdb_id": "tt9081300", + "title": "Natsume's Book of Friends The Movie: Tied to the Temporal World" + }, + "13949": { + "imdb_id": "tt7965802", + "title": "Megalo Box", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42720": { + "imdb_id": "tt7965802", + "title": "Megalo Box", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13950": { + "imdb_id": "tt7806844", + "title": "Hakumei and Mikochi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14203": { + "imdb_id": "tt7806844", + "title": "Hakumei and Mikochi", + "fromSeason": 0, + "fromEpisode": 1 + }, + "13952": { + "imdb_id": "tt12486080", + "title": "Major 2nd", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43109": { + "imdb_id": "tt12486080", + "title": "Major 2nd", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13958": { + "imdb_id": "tt7933666", + "title": "Kokkoku" + }, + "13981": { + "imdb_id": "tt13469436", + "title": "Gurazeni", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41948": { + "imdb_id": "tt13469436", + "title": "Gurazeni", + "fromSeason": 2, + "fromEpisode": 1 + }, + "3676": { + "imdb_id": "tt1308847", + "title": "Legends of the Dark King: A Fist of the North Star Story", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13988": { + "imdb_id": "tt8515016", + "title": "Banana Fish" + }, + "13984": { + "imdb_id": "tt8043492", + "title": "Forest of Piano", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41461": { + "imdb_id": "tt8043492", + "title": "Forest of Piano", + "fromSeason": 2, + "fromEpisode": 1 + }, + "13990": { + "imdb_id": "tt8994044", + "title": "Tsurune: Kazemai koukou kyuudoubu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46368": { + "imdb_id": "tt8994044", + "title": "Tsurune: Kazemai koukou kyuudoubu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42355": { + "imdb_id": "tt8994044", + "title": "Tsurune: Kazemai koukou kyuudoubu", + "fromSeason": 0, + "fromEpisode": 1 + }, + "13991": { + "imdb_id": "tt8574388", + "title": "Tsukumogami Kashimasu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13992": { + "imdb_id": "tt7863986", + "title": "Takunomi" + }, + "13994": { + "imdb_id": "tt8800144", + "title": "Ulysses: Jeanne d'Arc and the Alchemist Knight" + }, + "13995": { + "imdb_id": "tt7945066", + "title": "Gen: Lock", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13999": { + "imdb_id": "tt6296094", + "title": "Lastman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14018": { + "imdb_id": "tt8253044", + "title": "Hinamatsuri" + }, + "14019": { + "imdb_id": "tt8303808", + "title": "Caligula" + }, + "14024": { + "imdb_id": "tt8129662", + "title": "Hakata Tonkotsu Ramens" + }, + "14027": { + "imdb_id": "tt10068916", + "title": "Made in Abyss: Dawn of the Deep Soul" + }, + "14037": { + "imdb_id": "tt12017010", + "title": "Butlers: Chitose Momotose Monogatari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14041": { + "imdb_id": "tt12357636", + "title": "Sorcery in the Big City" + }, + "14042": { + "imdb_id": "tt8528256", + "title": "Dragon Pilot: Hisone and Masotan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14043": { + "imdb_id": "tt10431290", + "title": "Arifureta: From Commonplace to World's Strongest", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42611": { + "imdb_id": "tt10431290", + "title": "Arifureta: From Commonplace to World's Strongest", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46454": { + "imdb_id": "tt10431290", + "title": "Arifureta: From Commonplace to World's Strongest", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42493": { + "imdb_id": "tt10431290", + "title": "Arifureta: From Commonplace to World's Strongest", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42446": { + "imdb_id": "tt10431290", + "title": "Arifureta: From Commonplace to World's Strongest", + "fromSeason": 0, + "fromEpisode": 2 + }, + "14072": { + "imdb_id": "tt8322496", + "title": "Magical Girl Ore", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14082": { + "imdb_id": "tt7879138", + "title": "KILLING BITES" + }, + "14083": { + "imdb_id": "tt6900448", + "title": "Mirai" + }, + "14090": { + "imdb_id": "tt8948304", + "title": "Yuuna and the Haunted Hot Springs", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14091": { + "imdb_id": "tt8948304", + "title": "Yuuna and the Haunted Hot Springs", + "fromSeason": 0, + "fromEpisode": 1 + }, + "14093": { + "imdb_id": "tt7847678", + "title": "Gdgd Men's Party", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14116": { + "imdb_id": "tt12409194", + "title": "Battle Through the Heavens", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41206": { + "imdb_id": "tt12409194", + "title": "Battle Through the Heavens", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42663": { + "imdb_id": "tt12409194", + "title": "Battle Through the Heavens", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44606": { + "imdb_id": "tt12409194", + "title": "Battle Through the Heavens", + "fromSeason": 4, + "fromEpisode": 1 + }, + "40595": { + "imdb_id": "tt12409194", + "title": "Battle Through the Heavens", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42665": { + "imdb_id": "tt12409194", + "title": "Battle Through the Heavens", + "fromSeason": 0, + "fromEpisode": 3 + }, + "14125": { + "imdb_id": "tt8699270", + "title": "Ultraman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42384": { + "imdb_id": "tt8699270", + "title": "Ultraman", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46068": { + "imdb_id": "tt8699270", + "title": "Ultraman", + "fromSeason": 3, + "fromEpisode": 1 + }, + "14129": { + "imdb_id": "tt9266104", + "title": "After Owarimonogatari" + }, + "14131": { + "imdb_id": "tt11954426", + "title": "The Seven Heavenly Virtues", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41486": { + "imdb_id": "tt11954426", + "title": "The Seven Heavenly Virtues", + "fromSeason": 0, + "fromEpisode": 1 + }, + "14137": { + "imdb_id": "tt8250240", + "title": "Magical Girl Site", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14142": { + "imdb_id": "tt7826102", + "title": "Cutie Honey Universe" + }, + "14144": { + }, + "14152": { + }, + "14154": { + "imdb_id": "tt7954970", + "title": "Today's Menu for the Emiya Family" + }, + "14161": { + }, + "14162": { + }, + "14170": { + "imdb_id": "tt19811740", + "title": "Otoppe", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14174": { + "imdb_id": "tt8400680", + "title": "Shoujo Kageki Revue Starlight", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14182": { + "imdb_id": "tt7784442", + "fanartLogoId": "92542", + "title": "Captain Tsubasa", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47229": { + "imdb_id": "tt7784442", + "fanartLogoId": "181979", + "title": "Captain Tsubasa", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41897": { + "imdb_id": "tt8400680", + "title": "Shoujo Kageki Revue Starlight", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42681": { + "imdb_id": "tt13593042", + "title": "Gekijouban Shoujo Kageki Revue Starlight" + }, + "14185": { + "imdb_id": "tt7146054", + "title": "The Guardian" + }, + "14190": { + "imdb_id": "tt8086718", + "title": "Grand Blue" + }, + "14202": { + "imdb_id": "tt10580768", + "title": "My Sweet Tyrant", + "fromSeason": 1, + "fromEpisode": 1 + }, + "14212": { + "imdb_id": "tt8673610", + "title": "Cells at Work!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42202": { + "imdb_id": "tt8673610", + "title": "Cells at Work!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42007": { + "imdb_id": "tt8673610", + "title": "Cells at Work!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42341": { + "imdb_id": "tt8673610", + "title": "Cells at Work!", + "fromSeason": 0, + "fromEpisode": 2 + }, + "14246": { + "imdb_id": "tt7899522", + "title": "Gegege no Kitaro", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41973": { + "imdb_id": "tt7112156", + "title": "3D Kanojo Real Girl", + "fromSeason": 2, + "fromEpisode": 1 + }, + "14276": { + "imdb_id": "tt7112156", + "title": "3D Kanojo Real Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "40565": { + "imdb_id": "tt8631370", + "title": "Gundam Build Divers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "40568": { + "imdb_id": "tt5580664", + "title": "Voltron", + "fromSeason": 5, + "fromEpisode": 1 + }, + "40576": { + "imdb_id": "tt8646234", + "title": "Hanebado: The Badminton Play of Ayano Hanesaki!" + }, + "40580": { + "imdb_id": "tt8228732", + "title": "Kakuriyo: Bed & Breakfast for Spirits" + }, + "40589": { + "imdb_id": "tt7735462", + "title": "Thunderbolt Fantasy: The Sword of Life and Death" + }, + "40593": { + "imdb_id": "tt8611552", + "title": "A Day Before Us", + "fromSeason": 1, + "fromEpisode": 1 + }, + "40597": { + "imdb_id": "tt8690728", + "fanartLogoId": "126487", + "title": "Goblin Slayer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44010": { + "imdb_id": "tt8690728", + "fanartLogoId": "175723", + "title": "Goblin Slayer", + "fromSeason": 2, + "fromEpisode": 1 + }, + "40600": { + "imdb_id": "tt11418324", + "title": "Plunderer" + }, + "40643": { + "imdb_id": "tt8685672", + "title": "Aragne: Sign of Vermillion" + }, + "40856": { + "imdb_id": "tt7179032", + "title": "Sora to umi no aida" + }, + "40875": { + "imdb_id": "tt8631252", + "title": "Space Battleship Tiramisu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41926": { + "imdb_id": "tt8631252", + "title": "Space Battleship Tiramisu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "40893": { + "imdb_id": "tt8343748", + "title": "Seven Senses of the Re'Union" + }, + "40944": { + "imdb_id": "tt9828724", + "title": "Wise Man's Grandchild" + }, + "40960": { + "imdb_id": "tt8273192", + "title": "Dorei-ku The Animation" + }, + "40964": { + "imdb_id": "tt5086972", + "title": "Starmyu", + "fromSeason": 3, + "fromEpisode": 1 + }, + "40988": { + "imdb_id": "tt8611552", + "title": "A Day Before Us", + "fromSeason": 2, + "fromEpisode": 1 + }, + "40998": { + "imdb_id": "tt2150751", + "title": "Chihayafuru", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42100": { + "imdb_id": "tt11296252", + "title": "A Destructive God Sits Next to Me", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41004": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42037": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44607": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44609": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 4, + "fromEpisode": 1 + }, + "44611": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 5, + "fromEpisode": 1 + }, + "44616": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 6, + "fromEpisode": 1 + }, + "44617": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 7, + "fromEpisode": 1 + }, + "44624": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 8, + "fromEpisode": 1 + }, + "44625": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 9, + "fromEpisode": 1 + }, + "45032": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 10, + "fromEpisode": 1 + }, + "45661": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 11, + "fromEpisode": 1 + }, + "46149": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 12, + "fromEpisode": 1 + }, + "46150": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 13, + "fromEpisode": 1 + }, + "46536": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 14, + "fromEpisode": 1 + }, + "46535": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 15, + "fromEpisode": 1 + }, + "46537": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 16, + "fromEpisode": 1 + }, + "46538": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 17, + "fromEpisode": 1 + }, + "46539": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 18, + "fromEpisode": 1 + }, + "46557": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 19, + "fromEpisode": 1 + }, + "46558": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 20, + "fromEpisode": 1 + }, + "46813": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 21, + "fromEpisode": 1 + }, + "47595": { + "imdb_id": "tt8948436", + "title": "Douluo Dalu", + "fromSeason": 22, + "fromEpisode": 1 + }, + "41007": { + "imdb_id": "tt8076344", + "title": "Penguin Highway" + }, + "41012": { + "imdb_id": "tt5580664", + "title": "Voltron", + "fromSeason": 6, + "fromEpisode": 1 + }, + "41016": { + "imdb_id": "tt8795248", + "title": "Tachibanakan Triangle" + }, + "41017": { + "imdb_id": "tt8096510", + "title": "Sarazanmai" + }, + "41018": { + "imdb_id": "tt4219142", + "title": "Binan Koukou Chikyuu Bouei-bu Love!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41021": { + "imdb_id": "tt8693818", + "title": "Back Street Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41023": { + "imdb_id": "tt8113938", + "title": "Chuukan Kanriroku Tonegawa" + }, + "41024": { + "imdb_id": "tt9054364", + "fanartLogoId": "182316", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42196": { + "imdb_id": "tt9054364", + "fanartLogoId": "145682", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43361": { + "imdb_id": "tt9054364", + "fanartLogoId": "145682", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 2, + "fromEpisode": 13 + }, + "46729": { + "imdb_id": "tt9054364", + "fanartLogoId": "189051", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42212": { + "imdb_id": "tt9054364", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42022": { + "imdb_id": "tt9054364", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 0, + "fromEpisode": 2 + }, + "43897": { + "imdb_id": "tt9054364", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 0, + "fromEpisode": 7 + }, + "44852": { + "imdb_id": "tt9054364", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 0, + "fromEpisode": 8 + }, + "47088": { + "imdb_id": "tt9054364", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 0, + "fromEpisode": 10 + }, + "48689": { + "imdb_id": "tt9054364", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 0, + "fromEpisode": 13 + }, + "49100": { + "imdb_id": "tt9054364", + "title": "That Time I Got Reincarnated as a Slime", + "fromSeason": 0, + "fromEpisode": 14 + }, + "45231": { + "imdb_id": "tt15467380", + "title": "That Time I Got Reincarnated as a Slime the Movie: Scarlet Bond" + }, + "42207": { + "imdb_id": "tt10981202", + "title": "Her Blue Sky" + }, + "41025": { + "imdb_id": "tt8107988", + "title": "Carole & Tuesday" + }, + "41026": { + "imdb_id": "tt9522354", + "title": "Revisions", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41030": { + "imdb_id": "tt9561968", + "title": "Ingress: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41032": { + "imdb_id": "tt9458372", + "title": "Boogiepop and Others" + }, + "41036": { + "imdb_id": "tt9005728", + "title": "Mo Dao Zu Shi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42163": { + "imdb_id": "tt9005728", + "title": "Mo Dao Zu Shi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43083": { + "imdb_id": "tt9005728", + "title": "Mo Dao Zu Shi", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41052": { + "imdb_id": "tt9042408", + "title": "The Master of Ragnarok and Blesser of Einherjar" + }, + "41053": { + "imdb_id": "tt9050366", + "title": "Karakuri Circus" + }, + "41056": { + "imdb_id": "tt8993398", + "title": "Rascal Does Not Dream of Bunny Girl Senpai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42064": { + "imdb_id": "tt9348718", + "title": "7Seeds", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42639": { + "imdb_id": "tt9348718", + "title": "7Seeds", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41065": { + "imdb_id": "tt8496638", + "title": "Boarding School Juliet" + }, + "41066": { + "imdb_id": "tt8773498", + "title": "Ongaku shoujo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41069": { + "imdb_id": "tt5603356", + "title": "Ace Attorney", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41075": { + "imdb_id": "tt8489330", + "title": "Double Decker! Doug & Kirill", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42224": { + "imdb_id": "tt8489330", + "title": "Double Decker! Doug & Kirill", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41076": { + "imdb_id": "tt9286928", + "title": "Muhyo & Roji's Bureau of Supernatural Investigation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43295": { + "imdb_id": "tt9286928", + "title": "Muhyo & Roji's Bureau of Supernatural Investigation", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41077": { + "imdb_id": "tt12052708", + "title": "W'z", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41080": { + "imdb_id": "tt10068158", + "title": "Made in Abyss: Journey's Dawn" + }, + "41081": { + "imdb_id": "tt10068544", + "title": "Made in Abyss: Wandering Twilight" + }, + "41082": { + "imdb_id": "tt8161914", + "title": "City Hunter: Shinjuku Private Eyes" + }, + "41083": { + "imdb_id": "tt9458304", + "title": "Dororo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41084": { + "imdb_id": "tt10233448", + "fanartLogoId": "139065", + "title": "Vinland Saga", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44875": { + "imdb_id": "tt10233448", + "fanartLogoId": "158412", + "title": "Vinland Saga", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41085": { + "imdb_id": "tt10937632", + "title": "Babylon" + }, + "41086": { + "imdb_id": "tt8278692", + "title": "Fumikiri Jikan" + }, + "41089": { + "imdb_id": "tt10496580", + "title": "Pet", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41091": { + "imdb_id": "tt8565136", + "title": "Sirius the Jaeger", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41093": { + "imdb_id": "tt8774888", + "title": "Planet With" + }, + "41097": { + "imdb_id": "tt8696458", + "title": "Happy Sugar Life" + }, + "41099": { + "imdb_id": "tt9225320", + "title": "Radiant", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41101": { + "imdb_id": "tt9050480", + "title": "Iroduku: The World in Colors" + }, + "41102": { + "imdb_id": "tt8816016", + "title": "Blackfox" + }, + "41111": { + "imdb_id": "tt9085330", + "title": "Ms. Vampire Who Lives in My Neighborhood" + }, + "41112": { + "imdb_id": "tt13759914", + "title": "BAKUMATSU", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41115": { + "imdb_id": "tt12305568", + "title": "Lapis Re: LiGHTs", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41118": { + "imdb_id": "tt1305826", + "title": "Adventure Time", + "fromSeason": 10, + "fromEpisode": 1 + }, + "41119": { + "imdb_id": "tt8657808", + "title": "The Thousand Musketeers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41120": { + "imdb_id": "tt8189276", + "title": "Phantom in the Twilight" + }, + "41121": { + "imdb_id": "tt8385224", + "title": "Lord of Vermilion: The Crimson King" + }, + "41124": { + "imdb_id": "tt9828562", + "title": "Hitori Bocchi's OO Lifestyle" + }, + "41131": { + "imdb_id": "tt5619276", + "title": "Last Period", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41133": { + "imdb_id": "tt8438524", + "title": "How NOT to Summon a Demon Lord", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43118": { + "imdb_id": "tt8438524", + "title": "How NOT to Summon a Demon Lord", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41141": { + "imdb_id": "tt12209234", + "title": "Kiratto Pri Chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42114": { + "imdb_id": "tt12209234", + "title": "Kiratto Pri Chan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43369": { + "imdb_id": "tt12209234", + "title": "Kiratto Pri Chan", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41142": { + "imdb_id": "tt12826588", + "title": "Yo-kai Watch Shadowside", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41146": { + "imdb_id": "tt6511320", + "title": "Omae wa mada Gunma wo shiranai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41148": { + "imdb_id": "tt10066026", + "title": "Hinomaru Sumo" + }, + "41149": { + "imdb_id": "tt8515062", + "title": "Asobi Asobase: Workshop of Fun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41879": { + "imdb_id": "tt8515062", + "title": "Asobi Asobase: Workshop of Fun", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41877": { + "imdb_id": "tt8515062", + "title": "Asobi Asobase: Workshop of Fun", + "fromSeason": 0, + "fromEpisode": 3 + }, + "41151": { + "imdb_id": "tt9085692", + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu." + }, + "41159": { + "imdb_id": "tt2758770", + "title": "Star vs. the Forces of Evil", + "fromSeason": 4, + "fromEpisode": 1 + }, + "41463": { + "imdb_id": "tt12598008", + "title": "So I'm a Spider, So What?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41165": { + "imdb_id": "tt8400662", + "fanartLogoId": "87761", + "title": "Dropkick on My Devil!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42126": { + "imdb_id": "tt8400662", + "fanartLogoId": "138488", + "title": "Jashin-chan Dropkick", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43611": { + "imdb_id": "tt8400662", + "fanartLogoId": "138489", + "title": "Jashin-chan Dropkick", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41970": { + "imdb_id": "tt8400662", + "title": "Jashin-chan Dropkick", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43163": { + "imdb_id": "tt8400662", + "title": "Jashin-chan Dropkick", + "fromSeason": 0, + "fromEpisode": 2 + }, + "48357": { + "imdb_id": "tt8400662", + "title": "Jashin-chan Dropkick", + "fromSeason": 0, + "fromEpisode": 17 + }, + "41175": { + "imdb_id": "tt7415066", + "title": "Sword Gai: The Animation", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41189": { + "imdb_id": "tt8231064", + "title": "Shinya! Tensai Bakabon" + }, + "41204": { + "imdb_id": "tt8019444", + "title": "Aggretsuko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41464": { + "imdb_id": "tt8019444", + "title": "Aggretsuko", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43407": { + "imdb_id": "tt8019444", + "title": "Aggretsuko", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43846": { + "imdb_id": "tt8019444", + "title": "Aggretsuko", + "fromSeason": 4, + "fromEpisode": 1 + }, + "46540": { + "imdb_id": "tt8019444", + "title": "Aggretsuko", + "fromSeason": 5, + "fromEpisode": 1 + }, + "42027": { + "imdb_id": "tt8019444", + "title": "Aggretsuko", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41209": { + "imdb_id": "tt8993614", + "title": "UzaMaid: Our Maid Is Way Too Annoying!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41218": { + "imdb_id": "tt9522024", + "title": "Beelzebub-jou no Okinimesu mama.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41240": { + "imdb_id": "tt8993464", + "title": "Bloom into You" + }, + "41224": { + "imdb_id": "tt13288678", + "title": "Mobile Suit Gundam: Hathaway" + }, + "41255": { + "imdb_id": "tt8346438", + "title": "Shirobako: The Movie" + }, + "41250": { + "imdb_id": "tt15856874", + "title": "Cinderella Chef", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45232": { + "imdb_id": "tt15856874", + "title": "Cinderella Chef", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45720": { + "imdb_id": "tt15856874", + "title": "Cinderella Chef", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41254": { + "imdb_id": "tt8354164", + "title": "Princess Principal Crown Handler: Chapter 1" + }, + "41263": { + "imdb_id": "tt13760402", + "title": "Gakuen Basara - Samurai High School", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41265": { + "imdb_id": "tt9826314", + "title": "Magmel of the Sea Blue", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41268": { + "imdb_id": "tt10106108", + "title": "Seis Manos", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41269": { + "imdb_id": "tt8403818", + "title": "Conception: Please Give Birth to My Child!" + }, + "41303": { + }, + "41309": { + "imdb_id": "tt11147864", + "title": "Oshi ga Budôkan ittekuretara shinu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41311": { + "imdb_id": "tt13351614", + "title": "The Orbital Children", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41312": { + "imdb_id": "tt8788458", + "title": "The Promised Neverland", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42220": { + "imdb_id": "tt8788458", + "title": "The Promised Neverland", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44076": { + "imdb_id": "tt8788458", + "title": "The Promised Neverland", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41313": { + "imdb_id": "tt8755254", + "title": "Hangyakusei Million Arthur", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41319": { + "imdb_id": "tt8433216", + "title": "Super Dragon Ball Heroes", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42039": { + "imdb_id": "tt8755254", + "title": "Hangyakusei Million Arthur", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41336": { + "imdb_id": "tt10452436", + "title": "Naka no Hito Genome", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42637": { + "imdb_id": "tt10452436", + "title": "Naka no Hito Genome", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41342": { + "imdb_id": "tt9567240", + "title": "How Clumsy You Are, Miss Ueno." + }, + "41353": { + "imdb_id": "tt2785038", + "title": "YuruYuri", + "fromSeason": 3, + "fromEpisode": 13 + }, + "41361": { + "imdb_id": "tt12953630", + "title": "Fog Hill of Five Elements", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41363": { + "imdb_id": "tt12923874", + "title": "The Wonderland of Ten Thousands", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43100": { + "imdb_id": "tt12923874", + "title": "The Wonderland of Ten Thousands", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43101": { + "imdb_id": "tt12923874", + "title": "The Wonderland of Ten Thousands", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43892": { + "imdb_id": "tt12923874", + "title": "The Wonderland of Ten Thousands", + "fromSeason": 4, + "fromEpisode": 1 + }, + "41370": { + "imdb_id": "tt9335498", + "fanartLogoId": "98300", + "title": "Demon Slayer: Kimetsu No Yaiba", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45249": { + "imdb_id": "tt9335498", + "fanartLogoId": "144806", + "title": "Demon Slayer: Kimetsu No Yaiba", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44081": { + "imdb_id": "tt9335498", + "fanartLogoId": "144804", + "title": "Demon Slayer: Kimetsu No Yaiba", + "fromSeason": 3, + "fromEpisode": 1 + }, + "45866": { + "imdb_id": "tt9335498", + "fanartLogoId": "174808", + "title": "Demon Slayer: Kimetsu No Yaiba", + "fromSeason": 4, + "fromEpisode": 1 + }, + "47635": { + "imdb_id": "tt9335498", + "title": "Demon Slayer: Kimetsu No Yaiba", + "fromSeason": 5, + "fromEpisode": 1 + }, + "44063": { + "imdb_id": "tt9335498", + "title": "Kimetsu Gakuen: Valentine-hen", + "fromSeason": 0, + "fromEpisode": 3 + }, + "45828": { + "imdb_id": "tt9335498", + "title": "Kimetsu Gakuen: Valentine-hen", + "fromSeason": 0, + "fromEpisode": 12 + }, + "44388": { + "imdb_id": "tt14888860", + "title": "Demon Slayer: Kimetsu no Yaiba Sibling`s Bond" + }, + "44389": { + "imdb_id": "tt14888874", + "title": "Demon Slayer: Kimetsu no Yaiba - Mt. Natagumo Arc" + }, + "44390": { + "imdb_id": "tt14882302", + "title": "Demon Slayer: Kimetsu no Yaiba - The Hashira Meeting Arc" + }, + "45253": { + "imdb_id": "tt16492636", + "title": "Demon Slayer: Kimetsu no Yaiba Asakusa Arc" + }, + "45254": { + "imdb_id": "tt16492678", + "title": "Demon Slayer: Kimetsu no Yaiba Tsuzumi Mansion Arc" + }, + "41372": { + "imdb_id": "tt9402026", + "title": "Run with the Wind" + }, + "41373": { + "imdb_id": "tt9522300", + "fanartLogoId": "91793", + "title": "Kaguya-sama: Love Is War", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42632": { + "imdb_id": "tt9522300", + "fanartLogoId": "115878", + "title": "Kaguya-sama: Love Is War", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43691": { + "imdb_id": "tt9522300", + "fanartLogoId": "149579", + "title": "Kaguya-sama: Love Is War", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43731": { + "imdb_id": "tt9522300", + "fanartLogoId": "91793", + "title": "Kaguya-sama: Love Is War", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46206": { + "imdb_id": "tt23770418", + "title": "Kaguya-sama: Love Is War - The First Kiss That Never Ends" + }, + "41379": { + "imdb_id": "tt10265146", + "title": "Miss Caretaker of Sunohara-sou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41375": { + "imdb_id": "tt9575040", + "title": "Girly Air Force", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41376": { + }, + "41378": { + "imdb_id": "tt13293368", + "title": "100 Sleeping Princes and the Kingdom of Dreams", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41381": { + "imdb_id": "tt8683066", + "title": "Holmes of Kyoto" + }, + "41399": { + "imdb_id": "tt10937602", + "title": "Ahiru no Sora", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41403": { + "imdb_id": "tt9622614", + "title": "Wataten! An Angel Flew Down to Me", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41404": { + "imdb_id": "tt8176578", + "title": "Flavors of Youth" + }, + "41405": { + "imdb_id": "tt9238088", + "title": "Release the Spyce" + }, + "41408": { + "imdb_id": "tt9573902", + "title": "Kemurikusa.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41412": { + "imdb_id": "tt11417856", + "title": "The Deer King" + }, + "41423": { + "imdb_id": "tt9278360", + "title": "Anima Yell!" + }, + "41430": { + "imdb_id": "tt9520752", + "title": "Pastel Memories" + }, + "41431": { + "imdb_id": "tt13077966", + "title": "Iya na Kao sare nagara Opantsu Misete Moraitai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42091": { + "imdb_id": "tt13077966", + "title": "Iya na Kao sare nagara Opantsu Misete Moraitai", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46942": { + "imdb_id": "tt13077966", + "title": "Iya na Kao sare nagara Opantsu Misete Moraitai", + "fromSeason": 3, + "fromEpisode": 1 + }, + "41440": { + "imdb_id": "tt9239552", + "title": "Konosuba!: God's Blessing on This Wonderful World! - Legend of Crimson" + }, + "41441": { + "imdb_id": "tt7964088", + "title": "School Babysitters", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41450": { + "imdb_id": "tt8652818", + "title": "Violet Evergarden: The Movie" + }, + "41451": { + "imdb_id": "tt8660606", + "title": "Afterlost: Where I End and You Begin" + }, + "41459": { + "imdb_id": "tt9054354", + "title": "Zombieland Saga", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42467": { + "imdb_id": "tt9054354", + "title": "Zombieland Saga", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41460": { + "imdb_id": "tt8223844", + "title": "Modest Heroes" + }, + "41465": { + "imdb_id": "tt10022916", + "title": "Midnight Occult Civil Servants", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41466": { + "imdb_id": "tt8800848", + "title": "Starlight Promises" + }, + "41479": { + "imdb_id": "tt9817980", + "title": "Domestic Girlfriend" + }, + "41487": { + "imdb_id": "tt7941892", + "title": "Attack on Titan: The Roar of Awakening" + }, + "41490": { + "imdb_id": "tt8731478", + "title": "Magical Girl Special Ops Asuka" + }, + "41491": { + "imdb_id": "tt5580664", + "title": "Voltron", + "fromSeason": 7, + "fromEpisode": 1 + }, + "41504": { + "imdb_id": "tt6587046", + "title": "Kimitachi wa dô ikiru ka" + }, + "41778": { + "imdb_id": "tt9526152", + "title": "Is It Wrong to Try to Pick Up Girls in a Dungeon - Arrow of the Orion" + }, + "41489": { + "imdb_id": "tt9850064", + "title": "Children of the Sea" + }, + "41761": { + "imdb_id": "tt9715318", + "title": "Tagatame no Alchemist" + }, + "41925": { + "imdb_id": "tt10147790", + "title": "Mix: Meisei Story", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46308": { + "imdb_id": "tt10147790", + "title": "Mix: Meisei Story", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41938": { + "imdb_id": "tt9050410", + "title": "My Sister, My Writer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41939": { + "imdb_id": "tt9885888", + "title": "Kabukichou Sherlock", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43391": { + "imdb_id": "tt9885888", + "title": "Kabukichou Sherlock", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41941": { + "imdb_id": "tt10044772", + "title": "Joshi Kausei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41942": { + "imdb_id": "tt9646438", + "title": "Voice of Fox" + }, + "41943": { + "imdb_id": "tt9073902", + "title": "The Girl in Twilight", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41946": { + "imdb_id": "tt9214568", + "title": "Ken En Ken: Aoki Kagayaki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41950": { + "imdb_id": "tt10443362", + "title": "Demon Lord, Retry!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47881": { + "imdb_id": "tt10443362", + "title": "Demon Lord, Retry!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41951": { + "imdb_id": "tt9150104", + "title": "Jingai-san no Yome", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41954": { + }, + "41956": { + "imdb_id": "tt9883676", + "title": "We Never Learn: Bokuben", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42414": { + "imdb_id": "tt9883676", + "title": "We Never Learn: Bokuben", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41957": { + "imdb_id": "tt9510780", + "title": "Endro~!" + }, + "41958": { + }, + "41959": { + "imdb_id": "tt9314454", + "title": "Koya no Kotobuki Hikotai" + }, + "41961": { + "imdb_id": "tt9074304", + "title": "Himote House", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42759": { + "imdb_id": "tt9074304", + "title": "Himote House", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41962": { + "imdb_id": "tt9642578", + "title": "I'm glad I could keep running", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41965": { + "imdb_id": "tt9182894", + "title": "Merc Storia: Yujutsushi to Suzu no Shirabe" + }, + "41966": { + "imdb_id": "tt9584920", + "title": "The Quintessential Quintuplets", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42324": { + "imdb_id": "tt9584920", + "title": "The Quintessential Quintuplets", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47275": { + "imdb_id": "tt9584920", + "title": "The Quintessential Quintuplets", + "fromSeason": 0, + "fromEpisode": 2 + }, + "41974": { + "imdb_id": "tt13067512", + "title": "Armor Shop for Ladies and Gentlemen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43569": { + "imdb_id": "tt13067512", + "title": "Armor Shop for Ladies and Gentlemen", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41978": { + "imdb_id": "tt10814148", + "title": "Heya Camp", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42072": { + "imdb_id": "tt11405370", + "title": "Nekopara", + "fromSeason": 1, + "fromEpisode": 1 + }, + "13121": { + "imdb_id": "tt11405370", + "title": "Nekopara", + "fromSeason": 0, + "fromEpisode": 1 + }, + "41980": { + "imdb_id": "tt10256918", + "title": "A Certain Scientific Accelerator" + }, + "41991": { + "imdb_id": "tt10472884", + "title": "Rascal Does Not Dream of Bunny Girl Senpai The Movie" + }, + "46530": { + "imdb_id": "tt27348312", + "title": "Rascal Does Not Dream of a Sister Venturing Out" + }, + "41995": { + "imdb_id": "tt9304350", + "title": "Fruits Basket", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42554": { + "imdb_id": "tt9304350", + "title": "Fruits Basket", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43578": { + "imdb_id": "tt9304350", + "title": "Fruits Basket", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44829": { + "imdb_id": "tt15799550", + "title": "Fruits Basket: Prelude" + }, + "41998": { + "imdb_id": "tt9359796", + "title": "Blade Runner: Black Lotus", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41999": { + }, + "42000": { + "imdb_id": "tt9522316", + "title": "My Roommate Is a Cat" + }, + "42001": { + "imdb_id": "tt9553076", + "title": "The Price of Smiles" + }, + "42002": { + "imdb_id": "tt5839698", + "title": "The Morose Mononokean", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42004": { + "imdb_id": "tt9585568", + "title": "Grimms Notes The Animation" + }, + "42008": { + "imdb_id": "tt9899068", + "title": "3 Nen A Kumi: Ima kara Mina-san wa, Hitojichi Desu" + }, + "42015": { + "imdb_id": "tt9316078", + "title": "Hero Mask", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42510": { + "imdb_id": "tt9316078", + "title": "Hero Mask", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42016": { + "imdb_id": "tt9547400", + "fanartLogoId": "110822", + "title": "Magia Record: Puella Magi Madoka Magica Side Story", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43090": { + "imdb_id": "tt9547400", + "fanartLogoId": "141588", + "title": "Magia Record: Puella Magi Madoka Magica Side Story", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44813": { + "imdb_id": "tt9547400", + "title": "Magia Record: Puella Magi Madoka Magica Side Story", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42018": { + }, + "42024": { + "imdb_id": "tt9828696", + "title": "Ao-chan Can't Study" + }, + "42025": { + "imdb_id": "tt10417586", + "title": "O Maidens in Your Savage Season" + }, + "42026": { + "imdb_id": "tt9883346", + "title": "The Helpful Fox Senko-san" + }, + "42028": { + "imdb_id": "tt9426210", + "title": "Weathering with You" + }, + "42030": { + "imdb_id": "tt9418812", + "title": "Hello World" + }, + "42031": { + "imdb_id": "tt9193612", + "title": "Ride Your Wave" + }, + "42032": { + "imdb_id": "tt9193770", + "title": "Isekai Quartet", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42410": { + "imdb_id": "tt9193770", + "title": "Isekai Quartet", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42036": { + "imdb_id": "tt9466298", + "title": "Ghost in the Shell SAC_2045", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43142": { + "imdb_id": "tt9466298", + "title": "Ghost in the Shell SAC_2045", + "fromSeason": 1, + "fromEpisode": 13 + }, + "42042": { + "imdb_id": "tt9567240", + "title": "How Clumsy You Are, Miss Ueno." + }, + "42043": { + "imdb_id": "tt11428630", + "title": "Bofuri: I Don't Want to Get Hurt, So I'll Max Out My Defense", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43086": { + "imdb_id": "tt11428630", + "title": "Bofuri: I Don't Want to Get Hurt, So I'll Max Out My Defense", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42047": { + "imdb_id": "tt10883006", + "title": "Oresuki: Are You the Only One Who Loves Me?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42902": { + "imdb_id": "tt10883006", + "title": "Oresuki: Are You the Only One Who Loves Me?", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42915": { + "imdb_id": "tt10883006", + "title": "Oresuki: Are You the Only One Who Loves Me?", + "fromSeason": 0, + "fromEpisode": 2 + }, + "42051": { + "imdb_id": "tt8254880", + "title": "Wotakoi: Love Is Hard for Otaku", + "fromSeason": 1, + "fromEpisode": 12 + }, + "42060": { + "imdb_id": "tt9826344", + "title": "Why the Hell are You Here, Teacher!?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42499": { + "imdb_id": "tt9826344", + "title": "Why the Hell are You Here, Teacher!?", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42068": { + "imdb_id": "tt9307686", + "fanartLogoId": "100161", + "title": "Fire Force", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42909": { + "imdb_id": "tt9307686", + "fanartLogoId": "145933", + "title": "Fire Force", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46119": { + "imdb_id": "tt9307686", + "fanartLogoId": "197482", + "title": "Fire Force", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42070": { + "imdb_id": "tt9828800", + "title": "Senryuu Girl" + }, + "42074": { + "imdb_id": "tt13549930", + "title": "Strike Witches: 501 Butai Hasshin Shimasu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42077": { + "imdb_id": "tt13580730", + "title": "Sakugan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43428": { + "imdb_id": "tt13549930", + "title": "Strike Witches: 501 Butai Hasshin Shimasu!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42078": { + "imdb_id": "tt10711718", + "title": "Miru Tights", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42473": { + "imdb_id": "tt10711718", + "title": "Miru Tights", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42079": { + "imdb_id": "tt10974198", + "title": "Cautious Hero: The Hero Is Overpowered but Overly Cautious" + }, + "42080": { + "imdb_id": "tt9679542", + "fanartLogoId": "99616", + "title": "Dr. Stone", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42867": { + "imdb_id": "tt9679542", + "fanartLogoId": "128970", + "title": "Dr. Stone", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44289": { + "imdb_id": "tt9679542", + "fanartLogoId": "169323", + "title": "Dr. Stone", + "fromSeason": 3, + "fromEpisode": 1 + }, + "47246": { + "imdb_id": "tt9679542", + "fanartLogoId": "169323", + "title": "Dr. Stone", + "fromSeason": 3, + "fromEpisode": 12 + }, + "48342": { + "imdb_id": "tt9679542", + "fanartLogoId": "196889", + "title": "Dr. Stone", + "fromSeason": 4, + "fromEpisode": 1 + }, + "43682": { + "imdb_id": "tt9679542", + "fanartLogoId": "128970", + "title": "Dr. Stone", + "fromSeason": 0, + "fromEpisode": 1 + }, + "45615": { + "imdb_id": "tt9679542", + "tvdb_id": "1019555", + "title": "Dr. Stone", + "fromSeason": 0, + "fromEpisode": 2 + }, + "42082": { + "imdb_id": "tt10427926", + "title": "Magical Sempai" + }, + "42084": { + "imdb_id": "tt11764320", + "title": "Yatogame-chan Kansatsu Nikki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42398": { + "imdb_id": "tt11764320", + "title": "Yatogame-chan Kansatsu Nikki", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43593": { + "imdb_id": "tt11764320", + "title": "Yatogame-chan Kansatsu Nikki", + "fromSeason": 3, + "fromEpisode": 1 + }, + "45523": { + "imdb_id": "tt11764320", + "title": "Yatogame-chan Kansatsu Nikki", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42085": { + "imdb_id": "tt12384506", + "title": "Ex-Arm", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42092": { + "imdb_id": "tt9573854", + "title": "Lord El-Melloi II's Case Files: Rail Zeppelin Grace Note", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42076": { + "imdb_id": "tt9573854", + "title": "Lord El-Melloi II's Case Files: Rail Zeppelin Grace Note", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42083": { + "imdb_id": "tt10443344", + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki Desuka?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42450": { + "imdb_id": "tt10443344", + "title": "Tsuujou Kougeki ga Zentai Kougeki de Ni-kai Kougeki no Okaasan wa Suki Desuka?", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42089": { + "imdb_id": "tt9288892", + "title": "Mushikago no Cagaster", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42093": { + "imdb_id": "tt10671412", + "title": "Nobunaga teacher's young bride", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42094": { + "imdb_id": "tt11008522", + "title": "Stars Align" + }, + "42097": { + "imdb_id": "tt8688814", + "title": "The Dragon Prince", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42101": { + "imdb_id": "tt9886006", + "title": "Kono Oto Tomare!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42106": { + "imdb_id": "tt9563632", + "title": "The Wonderland" + }, + "42107": { + "imdb_id": "tt9288848", + "title": "Pacific Rim: The Black", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44418": { + "imdb_id": "tt9288848", + "title": "Pacific Rim: The Black", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42108": { + "imdb_id": "tt9310328", + "title": "Altered Carbon: Resleeved" + }, + "42120": { + "imdb_id": "tt11033998", + "title": "Young Disease Outburst Boy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42121": { + }, + "42127": { + "imdb_id": "tt9635464", + "title": "Kemono Michi: Rise Up" + }, + "42130": { + "imdb_id": "tt9828600", + "title": "Fairy gone", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42131": { + "imdb_id": "tt11295582", + "title": "Infinite Dendrogram", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42358": { + "imdb_id": "tt9828600", + "title": "Fairy gone", + "fromSeason": 1, + "fromEpisode": 13 + }, + "42134": { + "imdb_id": "tt10362632", + "title": "How Heavy Are the Dumbbells You Lift?" + }, + "42137": { + "imdb_id": "tt10417572", + "fanartLogoId": "100950", + "title": "The Demon Girl Next Door", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43547": { + "imdb_id": "tt10417572", + "fanartLogoId": "150509", + "title": "The Demon Girl Next Door", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42143": { + "imdb_id": "tt12735338", + "title": "Words Bubble Up Like Soda Pop" + }, + "42144": { + "imdb_id": "tt9836798", + "title": "Cinderella Nine" + }, + "42147": { + "imdb_id": "tt11043632", + "fanartLogoId": "103988", + "title": "Beastars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42904": { + "imdb_id": "tt11043632", + "fanartLogoId": "103988", + "title": "Beastars", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44914": { + "imdb_id": "tt11043632", + "fanartLogoId": "195246", + "title": "Beastars", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42148": { + "imdb_id": "tt10483250", + "title": "Kanata no Astra" + }, + "42150": { + "imdb_id": "tt10530266", + "title": "Frame Arms Girl Movie: Kya Kya Ufufu na Wonderland" + }, + "42157": { + "imdb_id": "tt15374364", + "title": "Xie Wang Zhui Qi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43815": { + "imdb_id": "tt15374364", + "title": "Xie Wang Zhui Qi", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44592": { + "imdb_id": "tt15374364", + "title": "Xie Wang Zhui Qi", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42159": { + "imdb_id": "tt10395126", + "title": "Granbelm" + }, + "42161": { + }, + "42171": { + "imdb_id": "tt10427920", + "title": "Are You Lost?" + }, + "42173": { + "imdb_id": "tt11988478", + "title": "Gleipnir", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42174": { + "imdb_id": "tt10347516", + "title": "Cop Craft", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42570": { + "imdb_id": "tt10347516", + "title": "Cop Craft", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42175": { + "imdb_id": "tt10423424", + "title": "BEM" + }, + "42182": { + "imdb_id": "tt10409756", + "title": "Gorgeous Butterfly: Young Nobunaga" + }, + "42184": { + "imdb_id": "tt9232810", + "title": "Laidbackers" + }, + "42188": { + "imdb_id": "tt10011314", + "title": "Vampire in the Garden", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42189": { + "imdb_id": "tt14272628", + "title": "Super Crooks", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42190": { + "imdb_id": "tt9561862", + "title": "Love, Death & Robots", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42191": { + "imdb_id": "tt10011298", + "title": "Dragon's Dogma", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42195": { + "imdb_id": "tt11343974", + "title": "Fragtime" + }, + "42197": { + "imdb_id": "tt10981954", + "title": "No Guns Life", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42880": { + "imdb_id": "tt10981954", + "title": "No Guns Life", + "fromSeason": 1, + "fromEpisode": 13 + }, + "8158": { + "imdb_id": "tt8963328", + "title": "Hi Score Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42199": { + "imdb_id": "tt8963328", + "title": "Hi Score Girl", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42200": { + "imdb_id": "tt8963328", + "title": "Hi Score Girl", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42201": { + "imdb_id": "tt11428586", + "title": "Somali and the Forest Spirit", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42203": { + "imdb_id": "tt10347622", + "title": "If It's for My Daughter, I'd Even Defeat a Demon Lord", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42208": { + "imdb_id": "tt10619444", + "title": "Levius", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42209": { + "imdb_id": "tt11428620", + "title": "Number 24", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42210": { + "imdb_id": "tt10622220", + "title": "Ningen shikkaku" + }, + "42211": { + "imdb_id": "tt10470356", + "title": "Hensuki: Are You Willing to Fall in Love with a Pervert, as Long as She's a Cutie?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42451": { + "imdb_id": "tt10470356", + "title": "Hensuki: Are you willing to fall in love with a pervert, as long as she's a cutie?", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42214": { + "imdb_id": "tt9883660", + "title": "Namuamida Butsu! Rendai Utena" + }, + "42216": { + "imdb_id": "tt12044608", + "title": "Ochikobore Fruit Tart", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42218": { + "imdb_id": "tt4633694", + "title": "Spider-Man: Into the Spider-Verse" + }, + "42221": { + "imdb_id": "tt10470444", + "title": "Wasteful Days of High School Girls" + }, + "42222": { + "imdb_id": "tt10671282", + "title": "High School Prodigies Have It Easy Even in Another World!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42226": { + "imdb_id": "tt9308014", + "title": "RobiHachi" + }, + "42228": { + "imdb_id": "tt10696020", + "title": "Over Drive Girl 1/6 - Amazing Stranger", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42232": { + "imdb_id": "tt8688814", + "title": "The Dragon Prince", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42241": { + "imdb_id": "tt10885406", + "title": "Ascendance of a Bookworm", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42838": { + "imdb_id": "tt10885406", + "title": "Ascendance of a Bookworm", + "fromSeason": 1, + "fromEpisode": 15 + }, + "43607": { + "imdb_id": "tt10885406", + "title": "Ascendance of a Bookworm", + "fromSeason": 1, + "fromEpisode": 27 + }, + "43048": { + "imdb_id": "tt10885406", + "title": "Ascendance of a Bookworm", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46075": { + "imdb_id": "tt10885406", + "title": "Ascendance of a Bookworm", + "fromSeason": 0, + "fromEpisode": 3 + }, + "42444": { + "imdb_id": "tt12373578", + "title": "Maesetsu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42825": { + "imdb_id": "tt12879624", + "title": "Josee, the Tiger and the Fish" + }, + "42826": { + "imdb_id": "tt12362302", + "title": "Hypnosis Mic: Division Rap Battle - Rhyme Anima", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47266": { + "imdb_id": "tt12362302", + "title": "Hypnosis Mic: Division Rap Battle - Rhyme Anima", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42849": { + "imdb_id": "tt12390430", + "title": "Skate Leading Stars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42900": { + "imdb_id": "tt11858104", + "title": "Dragon Quest: The Adventure of Dai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42242": { + "imdb_id": "tt12899130", + "title": "Mobile Suit Gundam: The Origin - Advent of the Red Comet", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42248": { + "imdb_id": "tt10127562", + "title": "Dragon Quest: Your Story" + }, + "42260": { + "imdb_id": "tt11405390", + "title": "Darwin's Game", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42267": { + "imdb_id": "tt10545250", + "title": "Eden", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42268": { + "imdb_id": "tt10431310", + "title": "To the Abandoned Sacred Beasts" + }, + "42269": { + "imdb_id": "tt9525238", + "title": "Fate/Grand Order: Zettai Maju Sensen Babylonia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "12710": { + "imdb_id": "tt9525238", + "title": "Fate/Grand Order: Zettai Maju Sensen Babylonia", + "fromSeason": 0, + "fromEpisode": 1 + }, + "14096": { + "imdb_id": "tt9525238", + "title": "Fate/Grand Order: Zettai Maju Sensen Babylonia", + "fromSeason": 0, + "fromEpisode": 2 + }, + "14097": { + "imdb_id": "tt9525238", + "title": "Fate/Grand Order: Zettai Maju Sensen Babylonia", + "fromSeason": 0, + "fromEpisode": 3 + }, + "42099": { + "imdb_id": "tt9525238", + "title": "Fate/Grand Order: Zettai Maju Sensen Babylonia", + "fromSeason": 0, + "fromEpisode": 4 + }, + "42475": { + "imdb_id": "tt9525238", + "title": "Fate/Grand Order: Zettai Maju Sensen Babylonia", + "fromSeason": 0, + "fromEpisode": 5 + }, + "42270": { + "imdb_id": "tt9525238", + "title": "Fate/Grand Order: Zettai Maju Sensen Babylonia", + "fromSeason": 0, + "fromEpisode": 6 + }, + "42271": { + "imdb_id": "tt9525238", + "title": "Fate/Grand Order: Zettai Maju Sensen Babylonia", + "fromSeason": 0, + "fromEpisode": 7 + }, + "43857": { + "imdb_id": "tt13749554", + "title": "Fate/Grand Carnival", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42272": { + "imdb_id": "tt10054654", + "title": "Tokunana" + }, + "42273": { + "imdb_id": "tt11418344", + "title": "Drifting Dragons", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42274": { + "imdb_id": "tt9760504", + "title": "NiNoKuni" + }, + "42278": { + }, + "42279": { + "imdb_id": "tt5274556", + "title": "Owarimonogatari", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42280": { + "imdb_id": "tt10395156", + "title": "Re: Stage! Dream Days" + }, + "42281": { + "imdb_id": "tt13799316", + "title": "Try Knights", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42292": { + "imdb_id": "tt10707854", + "title": "Chidori RSC", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42295": { + "imdb_id": "tt10675392", + "title": "Saezuru Tori Wa Habatakanai: The Clouds Gather" + }, + "42297": { + "imdb_id": "tt10635210", + "fanartLogoId": "107755", + "title": "Science Fell in Love, So I Tried to Prove It", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43681": { + "imdb_id": "tt10635210", + "title": "Science Fell in Love, So I Tried to Prove It", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42306": { + "imdb_id": "tt9886006", + "title": "Kono Oto Tomare!", + "fromSeason": 1, + "fromEpisode": 14 + }, + "42307": { + "imdb_id": "tt11070000", + "title": "Z/X: Code Reunion", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42308": { + "imdb_id": "tt11535764", + "title": "Actors: Songs Connection", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42309": { + "imdb_id": "tt11157544", + "title": "Stand My Heroes: Piece of Truth", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44543": { + "imdb_id": "tt11157544", + "title": "Stand My Heroes: Piece of Truth", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42310": { + "imdb_id": "tt11034066", + "title": "Welcome to Demon-School, Iruma-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43047": { + "imdb_id": "tt11034066", + "title": "Welcome to Demon-School, Iruma-kun", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45154": { + "imdb_id": "tt11034066", + "title": "Welcome to Demon-School, Iruma-kun", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42319": { + "imdb_id": "tt10431262", + "title": "Isekai Cheat Magician", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44871": { + "imdb_id": "tt10431262", + "title": "Isekai Cheat Magician", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42321": { + "imdb_id": "tt32863895", + "title": "Mahoutsukai ni Narenakatta Onnanoko no Hanashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42322": { + "imdb_id": "tt10777610", + "fanartLogoId": "107159", + "title": "Toilet-Bound Hanako-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46924": { + "imdb_id": "tt10777610", + "fanartLogoId": "197190", + "title": "Toilet-Bound Hanako-kun", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42323": { + "imdb_id": "tt13293588", + "fanartLogoId": "126175", + "title": "Mushoku Tensei: Jobless Reincarnation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43907": { + "imdb_id": "tt13293588", + "fanartLogoId": "126175", + "title": "Mushoku Tensei: Jobless Reincarnation", + "fromSeason": 1, + "fromEpisode": 12 + }, + "45950": { + "imdb_id": "tt13293588", + "fanartLogoId": "174171", + "title": "Mushoku Tensei: Jobless Reincarnation", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47694": { + "imdb_id": "tt13293588", + "fanartLogoId": "174171", + "title": "Mushoku Tensei: Jobless Reincarnation", + "fromSeason": 2, + "fromEpisode": 13 + }, + "45492": { + "imdb_id": "tt13293588", + "title": "Mushoku Tensei: Jobless Reincarnation", + "fromSeason": 0, + "fromEpisode": 1 + }, + "47683": { + "imdb_id": "tt13293588", + "title": "Mushoku Tensei: Jobless Reincarnation", + "fromSeason": 0, + "fromEpisode": 2 + }, + "42328": { + "imdb_id": "tt10973152", + "title": "Assassins Pride" + }, + "42329": { + "imdb_id": "tt11349866", + "fanartLogoId": "107750", + "title": "Sorcerous Stabber Orphen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43097": { + "imdb_id": "tt11349866", + "fanartLogoId": "169942", + "title": "Sorcerous Stabber Orphen", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46549": { + "imdb_id": "tt11349866", + "fanartLogoId": "169324", + "title": "Sorcerous Stabber Orphen", + "fromSeason": 3, + "fromEpisode": 1 + }, + "47282": { + "imdb_id": "tt11349866", + "fanartLogoId": "107750", + "title": "Sorcerous Stabber Orphen", + "fromSeason": 4, + "fromEpisode": 1 + }, + "43117": { + "imdb_id": "tt11349866", + "title": "Sorcerous Stabber Orphen: Battle of Kimluck", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42330": { + "imdb_id": "tt9442120", + "title": "Shikizakura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42339": { + "imdb_id": "tt9310330", + "title": "Yasuke", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42342": { + "imdb_id": "tt12728882", + "title": "Adachi and Shimamura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42343": { + "imdb_id": "tt10320398", + "title": "Eizouken ni wa Te wo Dasu na!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42344": { + "imdb_id": "tt10974256", + "title": "Val x Love" + }, + "42345": { + "imdb_id": "tt11033944", + "title": "Afterschool Dice Club" + }, + "42346": { + "imdb_id": "tt10778040", + "title": "Blade of the Immortal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42369": { + }, + "42379": { + "imdb_id": "tt10479420", + "title": "Given" + }, + "42397": { + "imdb_id": "tt10675070", + "title": "Uchi Tama?! Uchi no Tama Shirimasen ka?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "41073": { + "imdb_id": "tt10317978", + "title": "Mob Psycho 100 REIGEN - The Miracle Psychic that Nobody Knows" + }, + "42404": { + "imdb_id": "tt12150560", + "title": "Tamayomi: The Baseball Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42413": { + "imdb_id": "tt10545652", + "title": "Vlad Love", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42416": { + "imdb_id": "tt11010142", + "title": "Mob Psycho 100 II: The First Spirits and Such Company Trip ~A Journey that Mends the Heart and Heals the Soul~" + }, + "42420": { + "imdb_id": "tt10980934", + "title": "Azur Lane", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42734": { + "imdb_id": "tt10980934", + "title": "Azur Lane", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46461": { + "imdb_id": "tt10980934", + "title": "Azur Lane", + "fromSeason": 0, + "fromEpisode": 3 + }, + "42423": { + "imdb_id": "tt10882992", + "title": "Didn't I Say to Make My Abilities Average in the Next Life?!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42429": { + "imdb_id": "tt10635042", + "title": "Sailor Moon Eternal" + }, + "42431": { + "imdb_id": "tt10827146", + "title": "Ling Cage", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42434": { + "imdb_id": "tt12013558", + "title": "BNA", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42436": { + "imdb_id": "tt10954274", + "title": "ID:Invaded", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42438": { + "imdb_id": "tt11680468", + "title": "Great Pretender", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48236": { + "imdb_id": "tt11680468", + "title": "Great Pretender", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42445": { + "imdb_id": "tt10621032", + "title": "Lupin III: The First" + }, + "42456": { + "imdb_id": "tt12024510", + "title": "22/7", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42469": { + "imdb_id": "tt13004300", + "title": "Null & Peta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42702": { + "imdb_id": "tt13004300", + "title": "Null & Peta", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42472": { + "imdb_id": "tt10718334", + "title": "SD Gundam World Sangoku Soketsuden", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42476": { + "imdb_id": "tt10978032", + "title": "Kandagawa Jet Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42487": { + "imdb_id": "tt13214882", + "title": "Scumbag System", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42488": { + "imdb_id": "tt11480896", + "title": "The Case Files of Jeweler Richard", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42711": { + "imdb_id": "tt10978032", + "title": "Kandagawa Jet Girls", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42986": { + "imdb_id": "tt10978032", + "title": "Kandagawa Jet Girls", + "fromSeason": 0, + "fromEpisode": 2 + }, + "42503": { + "imdb_id": "tt11503082", + "title": "Scissor Seven", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42969": { + "imdb_id": "tt11503082", + "title": "Scissor Seven", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43905": { + "imdb_id": "tt11503082", + "title": "Scissor Seven", + "fromSeason": 3, + "fromEpisode": 1 + }, + "46919": { + "imdb_id": "tt11503082", + "title": "Scissor Seven", + "fromSeason": 4, + "fromEpisode": 1 + }, + "49223": { + "imdb_id": "tt11503082", + "title": "Scissor Seven", + "fromSeason": 5, + "fromEpisode": 1 + }, + "42504": { + "imdb_id": "tt11503082", + "title": "Scissor Seven", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42521": { + "imdb_id": "tt9225320", + "title": "Radiant", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42525": { + "imdb_id": "tt10905902", + "title": "Uzumaki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42532": { + "imdb_id": "tt12311920", + "title": "Gal & Dino", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42533": { + "imdb_id": "tt12642634", + "title": "Ikebukuro West Gate Park", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42546": { + "imdb_id": "tt13070158", + "title": "Days of Urashimasakatasen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42548": { + "imdb_id": "tt10814346", + "title": "Phantasy Star Online 2: Episode Oracle", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42549": { + "imdb_id": "tt13049890", + "title": "Shin Chuuka Ichiban!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43825": { + "imdb_id": "tt13049890", + "title": "Shin Chuuka Ichiban!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42550": { + "imdb_id": "tt11157604", + "title": "Africa no Salaryman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42551": { + "imdb_id": "tt12402550", + "title": "Sleepy Princess in the Demon Castle", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42562": { + "imdb_id": "tt11398800", + "title": "Obsolete", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42572": { + "imdb_id": "tt11802992", + "title": "Given" + }, + "42585": { + "imdb_id": "tt11100658", + "title": "Gundam Build Divers Re: Rise", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43144": { + "imdb_id": "tt11100658", + "title": "Gundam Build Divers Re: Rise", + "fromSeason": 2, + "fromEpisode": 1 + }, + "41994": { + "imdb_id": "tt7745956", + "title": "She-Ra and the Princesses of Power", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42133": { + "imdb_id": "tt7745956", + "title": "She-Ra and the Princesses of Power", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42417": { + "imdb_id": "tt7745956", + "title": "She-Ra and the Princesses of Power", + "fromSeason": 3, + "fromEpisode": 1 + }, + "42601": { + "imdb_id": "tt11428682", + "title": "Murenase! Seton Gakuen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42616": { + "imdb_id": "tt12879646", + "title": "Dragon, Ie o Kau.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42621": { + "imdb_id": "tt13103028", + "fanartLogoId": "124491", + "title": "Bottom-tier Character Tomozaki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45761": { + "imdb_id": "tt13103028", + "fanartLogoId": "179534", + "title": "Bottom-tier Character Tomozaki", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44077": { + "imdb_id": "tt13103028", + "title": "Bottom-tier Character Tomozaki", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42627": { + "imdb_id": "tt12457334", + "title": "Wandering Witch: The Journey of Elaina", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42628": { + "imdb_id": "tt13248062", + "title": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45717": { + "imdb_id": "tt13248062", + "title": "I've Been Killing Slimes for 300 Years and Maxed Out My Level", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42649": { + "imdb_id": "tt7745956", + "title": "She-Ra and the Princesses of Power", + "fromSeason": 4, + "fromEpisode": 1 + }, + "43082": { + "imdb_id": "tt7745956", + "title": "She-Ra and the Princesses of Power", + "fromSeason": 5, + "fromEpisode": 1 + }, + "42682": { + "imdb_id": "tt12699782", + "title": "Shoujo Kageki Revue Starlight: Rondo Rondo Rondo" + }, + "42356": { + "imdb_id": "tt9883676", + "title": "We Never Learn: Bokuben", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42653": { + "imdb_id": "tt10380814", + "title": "Dino Girl Gauko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43088": { + "imdb_id": "tt10380814", + "title": "Dino Girl Gauko", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42040": { + "imdb_id": "tt11147852", + "title": "Dorohedoro", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42911": { + "imdb_id": "tt11587812", + "title": "Oda Cinnamon Nobunaga", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42552": { + "imdb_id": "tt11177400", + "title": "Smile at the Runway", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42586": { + "imdb_id": "tt11032374", + "title": "Demon Slayer the Movie: Mugen Train" + }, + "42658": { + "imdb_id": "tt11192890", + "title": "Uramichi Oniisan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42659": { + "imdb_id": "tt11193002", + "title": "Umibe no Étranger" + }, + "42470": { + "imdb_id": "tt11405408", + "title": "Asteroid in Love", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43013": { + "imdb_id": "tt11405408", + "title": "Asteroid in Love", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42391": { + "imdb_id": "tt10487750", + "title": "Listeners", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42614": { + "imdb_id": "tt11785582", + "title": "Wave, Listen to Me!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42684": { + "imdb_id": "tt12105596", + "title": "Yes, No, or Maybe Half?" + }, + "42701": { + "imdb_id": "tt0177443", + "title": "Godzilla: The Series", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42722": { + "imdb_id": "tt11299538", + "title": "Kakushigoto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42723": { + "imdb_id": "tt12518378", + "title": "Deemo" + }, + "42732": { + "imdb_id": "tt13370404", + "title": "Redo of Healer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42736": { + "imdb_id": "tt12285778", + "title": "Super Cub", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42733": { + "imdb_id": "tt13033818", + "title": "Dounika naru hibi" + }, + "43004": { + "imdb_id": "tt12057106", + "title": "Tower of God", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46312": { + "imdb_id": "tt12057106", + "title": "Tower of God", + "fromSeason": 2, + "fromEpisode": 1 + }, + "49244": { + "imdb_id": "tt12057106", + "title": "Tower of God", + "fromSeason": 2, + "fromEpisode": 14 + }, + "43059": { + "imdb_id": "tt11886172", + "title": "The Eighth Son? That Can't Be Right!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42474": { + "imdb_id": "tt9507234", + "title": "Digimon Adventure: Last Evolution Kizuna" + }, + "42479": { + "imdb_id": "tt11754514", + "title": "Arte", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42729": { + "imdb_id": "tt11301554", + "title": "Natsunagu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42744": { + "imdb_id": "tt11595706", + "title": "Interspecies Reviewers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42797": { + "imdb_id": "tt10011306", + "title": "Spriggan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42850": { + "imdb_id": "tt11863226", + "title": "President, It's Time for Battle!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42868": { + "imdb_id": "tt13009190", + "title": "Idoly Pride", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42885": { + "imdb_id": "tt11455784", + "title": "Show by Rock!! Mashumairesh!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42888": { + "imdb_id": "tt11443824", + "title": "SSSS.Dynazenon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42941": { + "imdb_id": "tt11585560", + "title": "The Island of Giant Insects" + }, + "42954": { + "imdb_id": "tt11645760", + "title": "Digimon Adventure (2020)", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42966": { + "imdb_id": "tt10954084", + "title": "Sakura Wars: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43022": { + "imdb_id": "tt13533532", + "title": "Tokyo 7th Sisters: Bokura wa Aozora ni Naru" + }, + "43063": { + "imdb_id": "tt10204658", + "title": "Yesterday o Utatte", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42296": { + "imdb_id": "tt12065758", + "title": "Houkago Teibou Nisshi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42892": { + "imdb_id": "tt11886236", + "title": "Princess Connect! Re: Dive", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43600": { + "imdb_id": "tt11886236", + "title": "Princess Connect! Re: Dive", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42613": { + "imdb_id": "tt12100946", + "fanartLogoId": "115615", + "title": "Shadowverse", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45296": { + "imdb_id": "tt12100946", + "fanartLogoId": "150118", + "title": "Shadowverse Flame", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47251": { + "imdb_id": "tt12100946", + "fanartLogoId": "150118", + "title": "Shadowverse Flame", + "fromSeason": 2, + "fromEpisode": 51 + }, + "48386": { + "imdb_id": "tt12100946", + "fanartLogoId": "150118", + "title": "Shadowverse Flame", + "fromSeason": 2, + "fromEpisode": 76 + }, + "43084": { + "imdb_id": "tt11688122", + "title": "Shironeko Project: Zero Chronicle", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42622": { + "imdb_id": "tt11714178", + "title": "Appare-Ranman! ", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42277": { + "imdb_id": "tt11822984", + "title": "My Next Life as a Villainess: All Routes Lead to Doom!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43238": { + "imdb_id": "tt11822984", + "title": "My Next Life as a Villainess: All Routes Lead to Doom!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44910": { + "imdb_id": "tt11822984", + "title": "My Next Life as a Villainess: All Routes Lead to Doom!", + "fromSeason": 0, + "fromEpisode": 8 + }, + "45213": { + "imdb_id": "tt15447084", + "title": "My Next Life as a Villainess: All Routes Lead to Doom! Movie" + }, + "42602": { + "imdb_id": "tt11731712", + "title": "Woodpecker Detective's Office", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42638": { + "imdb_id": "tt12331304", + "fanartLogoId": "134245", + "title": "Our Last Crusade or the Rise of a New World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45272": { + "imdb_id": "tt12331304", + "fanartLogoId": "190883", + "title": "Our Last Crusade or the Rise of a New World", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42146": { + "imdb_id": "tt11094154", + "title": "A3! Season Spring & Summer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42508": { + "imdb_id": "tt11094154", + "title": "A3! Season Spring & Summer", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42034": { + "imdb_id": "tt12675742", + "title": "Umayon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42401": { + "imdb_id": "tt13099214", + "title": "Yubisaki kara Honki no Netsujou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44016": { + "imdb_id": "tt13099214", + "title": "Yubisaki kara Honki no Netsujou", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42433": { + "imdb_id": "tt12443322", + "title": "Deca-Dence", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42563": { + "imdb_id": "tt12464204", + "fanartLogoId": "116408", + "title": "Peter Grill and the Philosopher's Time", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45490": { + "imdb_id": "tt12464204", + "fanartLogoId": "155084", + "title": "Peter Grill and the Philosopher's Time", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42623": { + "imdb_id": "tt11163352", + "title": "The Disastrous Life of Saiki K.: Reawakened", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42635": { + "imdb_id": "tt12898990", + "title": "Suppose a Kid from the Last Dungeon Boonies Moved to a Starter Town?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42019": { + "imdb_id": "tt13620226", + "title": "Star Twinkle PreCure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42650": { + "imdb_id": "tt11708996", + "title": "Healin' Good PreCure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42657": { + "imdb_id": "tt12448470", + "title": "Dokyuu Hentai HxEros", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43544": { + "imdb_id": "tt12448470", + "title": "Dokyuu Hentai HxEros", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42764": { + "imdb_id": "tt13457122", + "title": "Bishounen Tanteidan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42765": { + "imdb_id": "tt12343534", + "title": "Jujutsu Kaisen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45857": { + "imdb_id": "tt12343534", + "title": "Jujutsu Kaisen", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43886": { + "imdb_id": "tt12343534", + "title": "Jujutsu Kaisen", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42724": { + "imdb_id": "tt12312004", + "title": "Monster Girl Doctor", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42851": { + "imdb_id": "tt10627720", + "title": "Ne Zha" + }, + "49524": { + "imdb_id": "tt34956443", + "title": "Ne Zha 2" + }, + "42879": { + "imdb_id": "tt13752200", + "title": "ARP Backstage Pass", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42899": { + "imdb_id": "tt12098786", + "title": "Yu-Gi-Oh! Sevens", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43005": { + "imdb_id": "tt12432936", + "fanartLogoId": "117540", + "title": "The Misfit of Demon King Academy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44125": { + "imdb_id": "tt12432936", + "fanartLogoId": "164489", + "title": "The Misfit of Demon King Academy", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45081": { + "imdb_id": "tt12432936", + "title": "The Misfit of Demon King Academy", + "fromSeason": 2, + "fromEpisode": 13 + }, + "43014": { + "imdb_id": "tt11755260", + "fanartLogoId": "157606", + "title": "The Daily Life of the Immortal King", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43795": { + "imdb_id": "tt11755260", + "fanartLogoId": "157607", + "title": "The Daily Life of the Immortal King", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45524": { + "imdb_id": "tt11755260", + "fanartLogoId": "157608", + "title": "The Daily Life of the Immortal King", + "fromSeason": 3, + "fromEpisode": 1 + }, + "48349": { + "imdb_id": "tt11755260", + "fanartLogoId": "157608", + "title": "The Daily Life of the Immortal King", + "fromSeason": 4, + "fromEpisode": 1 + }, + "43018": { + "imdb_id": "tt12227418", + "title": "The God of High School", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43028": { + "imdb_id": "tt11448214", + "title": "Rent-A-Girlfriend", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43588": { + "imdb_id": "tt11448214", + "title": "Rent-A-Girlfriend", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46489": { + "imdb_id": "tt11448214", + "title": "Rent-A-Girlfriend", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43038": { + "imdb_id": "tt12390492", + "title": "Hakushon Daimaou 2020", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43042": { + "imdb_id": "tt13067534", + "title": "Otherside Picnic", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43056": { + "imdb_id": "tt12117218", + "title": "The Millionaire Detective: Balance - Unlimited", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43057": { + "imdb_id": "tt13344602", + "title": "Eiga Precure Miracle Leap: Minna to no Fushigi na Ichinichi" + }, + "43089": { + "imdb_id": "tt14408130", + "title": "Tensura Nikki: Tensei shitara Slime Datta Ken", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43094": { + "imdb_id": "tt12464182", + "title": "Uzaki-chan Wants to Hang Out!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43581": { + "imdb_id": "tt12464182", + "title": "Uzaki-chan Wants to Hang Out!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43102": { + "imdb_id": "tt12855254", + "title": "Guraburu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43103": { + "imdb_id": "tt11616778", + "tvdb_id": "376126", + "fanartLogoId": "115872", + "title": "Future's Folktales", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49130": { + "imdb_id": "tt11616778", + "tvdb_id": "376126", + "fanartLogoId": "194588", + "title": "Future's Folktales", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43121": { + "imdb_id": "tt11311968", + "title": "Sumikko Gurashi the Movie: The Unexpected Picture Book and the Secret Child" + }, + "43124": { + "imdb_id": "tt12350092", + "title": "Gibiate", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43146": { + "imdb_id": "tt12011442", + "title": "Burn the Witch" + }, + "43184": { + "imdb_id": "tt12809744", + "title": "All Saints Street", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43614": { + "imdb_id": "tt12809744", + "title": "All Saints Street", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44980": { + "imdb_id": "tt12809744", + "title": "All Saints Street", + "fromSeason": 3, + "fromEpisode": 1 + }, + "46867": { + "imdb_id": "tt12809744", + "title": "All Saints Street", + "fromSeason": 4, + "fromEpisode": 1 + }, + "43198": { + "imdb_id": "tt13411814", + "title": "Shuumatsu no Harem", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43204": { + "imdb_id": "tt12305588", + "title": "The Day I Became a God", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43222": { + "imdb_id": "tt12502782", + "fanartLogoId": "133040", + "title": "Shaman King", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43228": { + "imdb_id": "tt12471116", + "title": "Pokétoon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43240": { + "imdb_id": "tt12694572", + "title": "Koi to Producer: Evol x Love", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43236": { + "imdb_id": "tt12706364", + "title": "Ninja Collection", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43248": { + "imdb_id": "tt12590266", + "title": "Cyberpunk: Edgerunners", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43268": { + "imdb_id": "tt13943462", + "title": "Meikyuu Black Company", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42204": { + "imdb_id": "tt11151982", + "title": "Goblin Slayer: Goblin's Crown" + }, + "42117": { + "imdb_id": "tt11328872", + "fanartLogoId": "107171", + "title": "In/Spectre", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43755": { + "imdb_id": "tt11328872", + "fanartLogoId": "169319", + "title": "In/Spectre", + "fromSeason": 1, + "fromEpisode": 13 + }, + "42524": { + "imdb_id": "tt12213092", + "title": "Mewkledreamy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44172": { + "imdb_id": "tt12213092", + "title": "Mewkledreamy", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42615": { + "imdb_id": "tt12031040", + "title": "Japan Sinks: 2020", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42625": { + "imdb_id": "tt12407004", + "title": "Assault Lily: Bouquet", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42865": { + "imdb_id": "tt13375866", + "title": "Heaven Official's Blessing", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45488": { + "imdb_id": "tt13375866", + "title": "Heaven Official's Blessing", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42872": { + "imdb_id": "tt12792684", + "title": "Love Live! Nijigasaki High School Idol Club", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44537": { + "imdb_id": "tt12792684", + "title": "Love Live! Nijigasaki High School Idol Club", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46774": { + "imdb_id": "tt12792684", + "title": "Love Live! Nijigasaki High School Idol Club", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42922": { + "imdb_id": "tt13186542", + "title": "Kemono Jihen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42923": { + "imdb_id": "tt13198632", + "title": "Hige o Soru. Soshite Joshikousei o Hirou.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42924": { + "imdb_id": "tt13528102", + "title": "Bokutachi no Remake", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44990": { + "imdb_id": "tt13528102", + "title": "Bokutachi no Remake", + "fromSeason": 0, + "fromEpisode": 1 + }, + "42935": { + "imdb_id": "tt12367868", + "title": "Higurashi: When They Cry - New", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44184": { + "imdb_id": "tt12367868", + "title": "Higurashi no Naku Koro ni Sotsu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "42965": { + "imdb_id": "tt11958344", + "title": "A Whisker Away" + }, + "42990": { + "imdb_id": "tt8050756", + "title": "The Owl House", + "fromSeason": 1, + "fromEpisode": 1 + }, + "42991": { + "imdb_id": "tt8050756", + "title": "The Owl House", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43019": { + "imdb_id": "tt12885610", + "title": "Noblesse", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43029": { + "imdb_id": "tt12373592", + "title": "Warlords of Sigrdrifa", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43034": { + "imdb_id": "tt12311976", + "fanartLogoId": "116419", + "title": "TONIKAWA: Over the Moon for You", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45415": { + "imdb_id": "tt12311976", + "fanartLogoId": "169317", + "title": "TONIKAWA: Over the Moon for You", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43833": { + "imdb_id": "tt12311976", + "title": "TONIKAWA: Over the Moon for You", + "fromSeason": 0, + "fromEpisode": 13 + }, + "43832": { + "imdb_id": "tt12311976", + "title": "TONIKAWA: Over the Moon for You", + "fromSeason": 0, + "fromEpisode": 14 + }, + "45455": { + "imdb_id": "tt12311976", + "title": "TONIKAWA: Over the Moon for You", + "fromSeason": 0, + "fromEpisode": 15 + }, + "47622": { + "imdb_id": "tt12311976", + "title": "TONIKAWA: Over the Moon for You", + "fromSeason": 0, + "fromEpisode": 16 + }, + "43062": { + "imdb_id": "tt12080774", + "title": "Bungou to Alchemist: Shinpan no Haguruma", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43066": { + "imdb_id": "tt13718450", + "title": "86", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44398": { + "imdb_id": "tt13718450", + "title": "86", + "fromSeason": 1, + "fromEpisode": 12 + }, + "44788": { + "imdb_id": "tt13718450", + "title": "86", + "fromSeason": 0, + "fromEpisode": 1 + }, + "45545": { + "imdb_id": "tt13718450", + "title": "86", + "fromSeason": 0, + "fromEpisode": 3 + }, + "43067": { + "imdb_id": "tt12331342", + "title": "Akudama Drive", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43069": { + "imdb_id": "tt12094170", + "title": "Extra Olympia Kyklos", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43115": { + "imdb_id": "tt12156162", + "title": "Zashiki-Warashi no Tatami-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43126": { + "imdb_id": "tt15811920", + "title": "Futsal Boys!!!!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43137": { + "imdb_id": "tt12745218", + "title": "Heaven's Design Team", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44276": { + "imdb_id": "tt12745218", + "title": "Heaven's Design Team", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43167": { + "imdb_id": "tt12150836", + "title": "Cells at Work! Code Black", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43176": { + "imdb_id": "tt15250594", + "title": "Fairies Album", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43789": { + "imdb_id": "tt15250594", + "title": "Fairies Album", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45711": { + "imdb_id": "tt15250594", + "title": "Fairies Album", + "fromSeason": 3, + "fromEpisode": 1 + }, + "48627": { + "imdb_id": "tt15250594", + "title": "Fairies Album", + "fromSeason": 4, + "fromEpisode": 1 + }, + "43180": { + "imdb_id": "tt12287748", + "title": "Yashahime: Princess Half-Demon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44199": { + "imdb_id": "tt12287748", + "title": "Yashahime: Princess Half-Demon", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43212": { + "imdb_id": "tt12415546", + "title": "Attack on Titan: Chronicle" + }, + "43214": { + "imdb_id": "tt12415504", + "title": "Kuma Kuma Kuma Bear", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43863": { + "imdb_id": "tt12415504", + "title": "Kuma Kuma Kuma Bear", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43211": { + "imdb_id": "tt12063450", + "fanartLogoId": "131858", + "title": "Fumetsu no Anata e", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45045": { + "imdb_id": "tt12063450", + "fanartLogoId": "159784", + "title": "Fumetsu no Anata e", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43213": { + "imdb_id": "tt12396208", + "title": "Yuuki Yuuna wa Yuusha de Aru Churutto!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43234": { + "imdb_id": "tt10487722", + "title": "On-Gaku: Our Sound" + }, + "43237": { + "imdb_id": "tt12220526", + "title": "Girl Gaku. Hijiri Girls Square Gakuin", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45549": { + "imdb_id": "tt12220526", + "title": "Girl Gaku. Hijiri Girls Square Gakuin", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43244": { + "imdb_id": "tt12441478", + "title": "Earwig and the Witch" + }, + "43251": { + "imdb_id": "tt12643520", + "title": "Subarashiki Kono Sekai the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43252": { + "imdb_id": "tt13009154", + "title": "Battle Athletess Daiundoukai Restart!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43256": { + "imdb_id": "tt12787182", + "title": "Fushigi Dagashiya: Zenitendou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43271": { + "imdb_id": "tt12635162", + "fanartLogoId": "131649", + "title": "Don't Toy with Me, Miss Nagatoro", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45355": { + "imdb_id": "tt12635162", + "fanartLogoId": "156537", + "title": "Don't Toy with Me, Miss Nagatoro", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43273": { + "imdb_id": "tt12642654", + "title": "By the Grace of the Gods", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44665": { + "imdb_id": "tt12642654", + "title": "By the Grace of the Gods", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43278": { + "imdb_id": "tt13695606", + "title": "Yi Nian Yong Heng 2020", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48055": { + "imdb_id": "tt13695606", + "title": "Yi Nian Yong Heng 2020", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48056": { + "imdb_id": "tt13695606", + "title": "Yi Nian Yong Heng 2020", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43294": { + "imdb_id": "tt9789660", + "title": "Transformers: War for Cybertron", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43597": { + "imdb_id": "tt9789660", + "title": "Transformers: War for Cybertron", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44942": { + "imdb_id": "tt9789660", + "title": "Transformers: War for Cybertron", + "fromSeason": 3, + "fromEpisode": 1 + }, + "43296": { + "imdb_id": "tt10734928", + "title": "The Legend of Hei" + }, + "43301": { + "imdb_id": "tt12728856", + "title": "The Hidden Dungeon Only I Can Enter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44295": { + "imdb_id": "tt12728856", + "title": "The Hidden Dungeon Only I Can Enter", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43302": { + "imdb_id": "tt12415634", + "title": "Mars Red", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43313": { + "imdb_id": "tt15192340", + "title": "Senpai ga Uzai Kouhai no Hanashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44251": { + "imdb_id": "tt12415634", + "title": "Mars Red", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43304": { + "imdb_id": "tt12007484", + "title": "Fate Grand Order: The Grand Temple of Time" + }, + "43305": { + "imdb_id": "tt13192574", + "title": "Bungo Stray Dogs Wan!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43307": { + "imdb_id": "tt13415416", + "title": "I-Chu: Halfway Through the Idol", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43309": { + "imdb_id": "tt13221420", + "title": "Shakunetsu Kabaddi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43321": { + "imdb_id": "tt13196080", + "title": "Tokyo Revengers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45607": { + "imdb_id": "tt13196080", + "title": "Tokyo Revengers", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47278": { + "imdb_id": "tt13196080", + "title": "Tokyo Revengers", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44526": { + "imdb_id": "tt13196080", + "title": "Tokyo Revengers", + "fromSeason": 0, + "fromEpisode": 2 + }, + "43348": { + "imdb_id": "tt11177804", + "title": "Legend of Deification" + }, + "43393": { + "imdb_id": "tt11427380", + "title": "Omoi, Omoware, Furi, Furare" + }, + "43444": { + "imdb_id": "tt24076348", + "title": "The Feast of Amrita" + }, + "43448": { + "imdb_id": "tt12831098", + "title": "Moriarty the Patriot", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43708": { + "imdb_id": "tt12831098", + "title": "Moriarty the Patriot", + "fromSeason": 1, + "fromEpisode": 12 + }, + "45069": { + "imdb_id": "tt12831098", + "title": "Moriarty the Patriot", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43505": { + "imdb_id": "tt13057626", + "title": "Kamiarizuki no Kodomo" + }, + "43521": { + "imdb_id": "tt13167196", + "title": "Edens Zero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45847": { + "imdb_id": "tt13167196", + "title": "Edens Zero", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43530": { + "imdb_id": "tt13042440", + "title": "Shenmue the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43534": { + "imdb_id": "tt12312018", + "title": "Talentless Nana", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43535": { + "imdb_id": "tt12767982", + "title": "Iwa Kakeru! Sport Climbing Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43537": { + "imdb_id": "tt13064272", + "title": "Ai no Utagoe wo Kikasete" + }, + "43367": { + "imdb_id": "tt12706854", + "title": "I'm Standing on a Million Lives", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43883": { + "imdb_id": "tt12706854", + "title": "I'm Standing on a Million Lives", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43456": { + "imdb_id": "tt12779780", + "title": "Fena: Pirate Princess", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43464": { + "imdb_id": "tt13286958", + "title": "2.43: Seiin High School Boys Volleyball Team", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43481": { + "imdb_id": "tt13749654", + "title": "Aria the Crepuscolo" + }, + "43538": { + "imdb_id": "tt9731266", + "title": "The Idhun Chronicles", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43834": { + "imdb_id": "tt9731266", + "title": "The Idhun Chronicles", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43545": { + "imdb_id": "tt13103134", + "title": "Horimiya", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43546": { + "imdb_id": "tt13424422", + "title": "Sword Art Online: Progressive Movie - Hoshi Naki Yoru no Aria" + }, + "45400": { + "imdb_id": "tt15830702", + "title": "Sword Art Online: Progressive Movie - Scherzo of Deep Night" + }, + "43549": { + "imdb_id": "tt13109788", + "title": "Sore dake ga Neck", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43550": { + "imdb_id": "tt13041826", + "title": "King's Raid: Successors of the Will", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43552": { + "imdb_id": "tt12787170", + "title": "Inu to Neko Docchi mo Katteru to Mainichi Tanoshii", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43553": { + "imdb_id": "tt12584900", + "fanartLogoId": "116430", + "title": "Rail Romanesque", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43860": { + "imdb_id": "tt12584900", + "fanartLogoId": "179555", + "title": "Rail Romanesque", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43554": { + "imdb_id": "tt12885584", + "title": "The Gymnastics Samurai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43555": { + "imdb_id": "tt12798538", + "title": "Magatsu Wahrheit: Zuerst", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43557": { + "imdb_id": "tt12768008", + "title": "D4DJ: First Mix", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46507": { + "imdb_id": "tt12768008", + "title": "D4DJ: First Mix", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45974": { + "imdb_id": "tt12768008", + "title": "D4DJ: First Mix", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43599": { + "imdb_id": "tt13357140", + "title": "Baki Hanma", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45984": { + "imdb_id": "tt13357140", + "title": "Baki Hanma", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43560": { + "imdb_id": "tt12767988", + "title": "Saikyo Kamizmode!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43568": { + "imdb_id": "tt13266422", + "title": "Hortensia Saga", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43589": { + "imdb_id": "tt12803708", + "title": "Dogeza de Tanondemita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43605": { + "imdb_id": "tt12803708", + "title": "Dogeza de Tanondemita", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43595": { + "imdb_id": "tt13129190", + "title": "SK8 the Infinity", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44177": { + "imdb_id": "tt13129190", + "title": "SK8 the Infinity", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44870": { + "imdb_id": "tt13129190", + "title": "SK8 the Infinity", + "fromSeason": 0, + "fromEpisode": 2 + }, + "43608": { + "imdb_id": "tt13420070", + "title": "Himitsukessha Taka no Tsume: Golden Spell", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43612": { + "imdb_id": "tt12390384", + "title": "Cheat Kusushi no Slow Life: Isekai ni Tsukurou Drug Store", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43613": { + "imdb_id": "tt13399402", + "title": "How a Realist Hero Rebuilt the Kingdom", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45252": { + "imdb_id": "tt13399402", + "title": "How a Realist Hero Rebuilt the Kingdom", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43620": { + "imdb_id": "tt13248076", + "title": "Wonder Egg Priority", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44260": { + "imdb_id": "tt13248076", + "title": "Wonder Egg Priority", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43623": { + "imdb_id": "tt10009170", + "title": "Blood of Zeus", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43651": { + "imdb_id": "tt13102918", + "title": "Cap Kakumei Bottleman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46046": { + "imdb_id": "tt13102918", + "title": "Cap Kakumei Bottleman", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43653": { + "imdb_id": "tt13173456", + "title": "Resident Evil: Infinite Darkness", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43662": { + "imdb_id": "tt13041916", + "title": "Scar on the Praeter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43667": { + "imdb_id": "tt13229934", + "title": "Godzilla: Singular Point", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43683": { + "imdb_id": "tt10766468", + "title": "Gintama: The Final" + }, + "43689": { + "imdb_id": "tt13344434", + "title": "Hetalia: World Stars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43690": { + "imdb_id": "tt12421676", + "title": "Muv-Luv Alternative", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45656": { + "imdb_id": "tt12421676", + "title": "Muv-Luv Alternative", + "fromSeason": 1, + "fromEpisode": 13 + }, + "43702": { + "imdb_id": "tt13357234", + "title": "Thermae Romae Novae", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43703": { + "imdb_id": "tt13352232", + "title": "High-Rise Invasion", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43704": { + "imdb_id": "tt9310336", + "title": "Trese", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43712": { + "imdb_id": "tt13417144", + "title": "Getter Robo Ark", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43716": { + "imdb_id": "tt13405062", + "title": "Back Arrow", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43717": { + "imdb_id": "tt13404868", + "title": "The House of the Lost on the Cape" + }, + "43718": { + "imdb_id": "tt13357124", + "title": "Gokushufudo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46542": { + "imdb_id": "tt13357124", + "title": "Gokushufudo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44336": { + "imdb_id": "tt13357124", + "title": "Gokushufudo", + "fromSeason": 1, + "fromEpisode": 6 + }, + "43730": { + "imdb_id": "tt11657662", + "title": "The Witcher: Nightmare of the Wolf" + }, + "43734": { + "imdb_id": "tt13409388", + "title": "Heion Sedai no Idaten-tachi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43740": { + "imdb_id": "tt15447298", + "title": "Holo no Graffiti", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43750": { + "imdb_id": "tt13884016", + "title": "Maiko-san Chi no Makanai-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43798": { + "imdb_id": "tt12912752", + "title": "Tototsu ni Egypt Kami", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44945": { + "imdb_id": "tt12912752", + "title": "Tototsu ni Egypt Kami", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43801": { + "imdb_id": "tt12895414", + "title": "The SpongeBob SquarePants Anime", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43806": { + "imdb_id": "tt13616990", + "title": "Chainsaw Man", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43804": { + "imdb_id": "tt13622982", + "title": "Star Wars: Visions", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46145": { + "imdb_id": "tt13622982", + "title": "Star Wars: Visions", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43807": { + "imdb_id": "tt12415562", + "title": "LBX Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43808": { + "imdb_id": "tt13651628", + "title": "Belle: The Dragon and the Freckled Princess" + }, + "43810": { + "imdb_id": "tt14402928", + "title": "Gekijou Henshuuban Kakushigoto: Himegoto wa Nandesuka" + }, + "43817": { + "imdb_id": "tt13677314", + "title": "Taishou Otome Otogibanashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43818": { + "imdb_id": "tt13308820", + "title": "Kai Byoui Ramune", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43820": { + "imdb_id": "tt13362302", + "fanartLogoId": "143565", + "title": "Shadows House", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45155": { + "imdb_id": "tt13362302", + "fanartLogoId": "142532", + "title": "Shadows House", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43821": { + "imdb_id": "tt13721276", + "title": "Tropical-Rouge! Precure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43822": { + "imdb_id": "tt13084120", + "title": "Azur Lane: Bisoku Zenshin!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43823": { + "imdb_id": "tt13795144", + "title": "Wave!!: Surfing Yappe!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43824": { + "imdb_id": "tt13142936", + "title": "Wixoss Diva(A)Live", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43830": { + "imdb_id": "tt13027558", + "title": "Sayonara Watashi no Cramer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43831": { + "imdb_id": "tt13618148", + "title": "Koi to Yobu ni wa Kimochi Warui", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43837": { + "imdb_id": "tt13758670", + "title": "Sentouin, Hakenshimasu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43839": { + "imdb_id": "tt13567394", + "title": "Cute Executive Officer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46532": { + "imdb_id": "tt13567394", + "title": "Cute Executive Officer", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43845": { + "imdb_id": "tt27417791", + "title": "Alice Gear Aegis Expansion", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47257": { + "imdb_id": "tt27417791", + "title": "Alice Gear Aegis Expansion", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43847": { + "imdb_id": "tt13715764", + "title": "Mahouka Koukou no Yuutousei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43849": { + "imdb_id": "tt13409432", + "title": "Ousama Ranking", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43853": { + "imdb_id": "tt13592988", + "title": "Idolls!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43855": { + "imdb_id": "tt13592980", + "title": "Code Geass: Dakkan no Z", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43861": { + "imdb_id": "tt13593022", + "title": "Kyuukyoku Shinka Shita Full Dive RPG ga Genjitsu yori mo Kusogee Dattara", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43862": { + "imdb_id": "tt13676300", + "title": "Platinum End", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43870": { + "imdb_id": "tt13022022", + "title": "Peach Boy Riverside", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43875": { + "imdb_id": "tt12798548", + "title": "Yakunara Mug Cup mo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44787": { + "imdb_id": "tt12798548", + "title": "Yakunara Mug Cup mo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "43880": { + "imdb_id": "tt13628864", + "title": "Puraore! Pride of Orange", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43888": { + "imdb_id": "tt14115912", + "title": "Blue Period", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43894": { + "imdb_id": "tt13405764", + "title": "Night Head 2041", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43909": { + "imdb_id": "tt14979456", + "title": "Soredemo Ayumu wa Yosetekuru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43911": { + "imdb_id": "tt13628870", + "title": "Harem in the Labyrinth of Another World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46222": { + "imdb_id": "tt13628870", + "title": "Harem in the Labyrinth of Another World", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43929": { + "imdb_id": "tt13898130", + "title": "Dolls' Frontline", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43932": { + "imdb_id": "tt14134550", + "title": "Oddtaxi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43933": { + "imdb_id": "tt13851958", + "title": "Vivy: Fluorite Eye's Song", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44828": { + "imdb_id": "tt13851958", + "title": "Vivy: Fluorite Eye's Song", + "fromSeason": 0, + "fromEpisode": 1 + }, + "43944": { + "imdb_id": "tt13929756", + "title": "Skull Island", + "fromSeason": 1, + "fromEpisode": 1 + }, + "43966": { + "imdb_id": "tt13211062", + "title": "Osananajimi ga Zettai ni Makenai Love Come", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44011": { + "imdb_id": "tt13956452", + "title": "Shokei Shoujo no Virgin Road", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44012": { + "imdb_id": "tt13911284", + "title": "Jigokuraku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44013": { + "imdb_id": "tt21929436", + "title": "Niehime to Kemono no Ou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44020": { + "imdb_id": "tt13956466", + "title": "The Genius Prince's Guide to Raising a Nation Out of Debt", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44022": { + "imdb_id": "tt13884052", + "title": "Tantei wa Mou, Shindeiru.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44024": { + "imdb_id": "tt15026576", + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46033": { + "imdb_id": "tt15026576", + "title": "Shinka no Mi: Shiranai Uchi ni Kachigumi Jinsei", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44025": { + "imdb_id": "tt15441424", + "title": "Shikkakumon no Saikyou Kenja", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44015": { + "imdb_id": "tt15441076", + "title": "My Isekai Life: I Gained a Second Character Class and Became the Strongest Sage in the World!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44032": { + "imdb_id": "tt15686254", + "title": "Sama Taimu Renda", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44035": { + "imdb_id": "tt13971512", + "title": "Shinigami Bocchan to Kuro Maid", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45229": { + "imdb_id": "tt13971512", + "title": "Shinigami Bocchan to Kuro Maid", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47984": { + "imdb_id": "tt13971512", + "title": "Shinigami Bocchan to Kuro Maid", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44064": { + "imdb_id": "tt13984000", + "title": "Seven Knights Revolution: Eiyuu no Keishousha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44075": { + "imdb_id": "tt14368970", + "title": "Thousand Autumns", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44084": { + "imdb_id": "tt14043600", + "title": "Blue Reflection Ray", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44087": { + "imdb_id": "tt14069590", + "title": "Dota: Dragon's Blood", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44091": { + "imdb_id": "tt14022814", + "title": "Jouran: The Princess of Snow and Blood", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44099": { + "imdb_id": "tt15052770", + "title": "Summer Ghost" + }, + "44106": { + "imdb_id": "tt12814598", + "title": "Mashiro no Oto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44107": { + "imdb_id": "tt14115938", + "fanartLogoId": "170441", + "title": "The Eminence in Shadow", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47099": { + "imdb_id": "tt14115938", + "fanartLogoId": "178266", + "title": "The Eminence in Shadow", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46901": { + "imdb_id": "tt14115938", + "fanartLogoId": "178266", + "title": "The Eminence in Shadow", + "fromSeason": 0, + "fromEpisode": 1 + }, + "48198": { + "imdb_id": "tt14115938", + "fanartLogoId": "178266", + "title": "The Eminence in Shadow", + "fromSeason": 0, + "fromEpisode": 18 + }, + "44114": { + "imdb_id": "tt14228078", + "title": "Totsukuni no shôjo" + }, + "44115": { + "imdb_id": "tt13049906", + "title": "Seijo no Maryoku wa Bannou Desu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45957": { + "imdb_id": "tt13049906", + "title": "Seijo no Maryoku wa Bannou Desu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44116": { + "imdb_id": "tt13851952", + "title": "Shiroi Suna no Aquatope", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44121": { + "imdb_id": "tt14960284", + "title": "She Professed Herself Pupil of the Wise Man", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44122": { + "imdb_id": "tt14201334", + "title": "Re-Main", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44124": { + "imdb_id": "tt13840232", + "title": "Love Live! Superstar!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45360": { + "imdb_id": "tt13840232", + "title": "Love Live! Superstar!!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46602": { + "imdb_id": "tt13840232", + "title": "Love Live! Superstar!!", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44123": { + "imdb_id": "tt13412606", + "title": "Bakuten!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44159": { + "imdb_id": "tt15529074", + "title": "Kawaii dake ja nai Shikimori-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44165": { + "imdb_id": "tt13463778", + "fanartLogoId": "130796", + "title": "Kanojo mo Kanojo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46486": { + "imdb_id": "tt13463778", + "fanartLogoId": "181409", + "title": "Kanojo mo Kanojo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44167": { + "imdb_id": "tt13483212", + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46686": { + "imdb_id": "tt13483212", + "title": "Shin no Nakama ja Nai to Yuusha no Party wo Oidasareta node, Henkyou de Slow Life suru Koto ni Shimashita", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44174": { + "imdb_id": "tt13544802", + "fanartLogoId": "138486", + "title": "Seirei Gensouki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45420": { + "imdb_id": "tt13544802", + "fanartLogoId": "194211", + "title": "Seirei Gensouki", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44176": { + "imdb_id": "tt12378990", + "title": "Megami-ryou no Ryoubo-kun.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44171": { + "imdb_id": "tt14292584", + "title": "Aria the Benedizione" + }, + "44179": { + "imdb_id": "tt13409412", + "title": "Cestvs: The Roman Fighter", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44180": { + "imdb_id": "tt13807542", + "title": "Fairy Ranmaru: Anata no Kokoro Otasuke Shimasu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44185": { + "imdb_id": "tt14271890", + "title": "Mieruko-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44186": { + "imdb_id": "tt14506186", + "title": "In the Land of Leadale", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44187": { + "imdb_id": "tt15447890", + "title": "The Greatest Demon Lord Is Reborn as a Typical Nobody", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44189": { + "imdb_id": "tt14187728", + "title": "Sabikui Bisco", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44192": { + "imdb_id": "tt14264160", + "title": "Tsuki to Laika to Nosferatu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44195": { + "imdb_id": "tt14271876", + "title": "Scarlet Nexus", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44196": { + "imdb_id": "tt17158756", + "title": "Bocchi the Rock!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49245": { + "imdb_id": "tt17158756", + "title": "Bocchi the Rock!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "47470": { + "imdb_id": "tt32561659", + "title": "Theater Compilation Bocchi the Rock! Re:" + }, + "48210": { + "imdb_id": "tt32576588", + "title": "Theater Compilation Bocchi the Rock! Re: Re:" + }, + "44197": { + "imdb_id": "tt15128210", + "title": "Kyoukai Senki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45703": { + "imdb_id": "tt15128210", + "title": "Kyoukai Senki", + "fromSeason": 1, + "fromEpisode": 14 + }, + "44198": { + "imdb_id": "tt14264200", + "title": "D_Cide Traumerei the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44200": { + "imdb_id": "tt13444580", + "title": "Deatte 5-byou de Battle", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44205": { + "imdb_id": "tt15170340", + "title": "Orient", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45993": { + "imdb_id": "tt15170340", + "title": "Orient", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44206": { + "imdb_id": "tt13351056", + "title": "Kageki Shoujo!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44207": { + "imdb_id": "tt13676344", + "title": "Shuumatsu no Valkyrie", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44988": { + "imdb_id": "tt13676344", + "title": "Shuumatsu no Valkyrie", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47495": { + "imdb_id": "tt13676344", + "title": "Shuumatsu no Valkyrie", + "fromSeason": 2, + "fromEpisode": 11 + }, + "44208": { + "imdb_id": "tt14979604", + "title": "Bara Ou no Souretsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44210": { + "imdb_id": "tt15533674", + "title": "Akebi-chan no Sailor-fuku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44211": { + "imdb_id": "tt14278890", + "title": "Selection Project", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44212": { + "imdb_id": "tt14331144", + "title": "Jujutsu Kaisen 0 Movie" + }, + "44213": { + "imdb_id": "tt14827932", + "title": "Gloomy the Naughty Grizzly", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44215": { + "imdb_id": "tt26765296", + "title": "Yo-kai Watch: reborn", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44218": { + "imdb_id": "tt15280514", + "title": "Mazica Party", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44221": { + "imdb_id": "tt13084262", + "title": "Uchuu Nanchara Kotetsu-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44226": { + "imdb_id": "tt15018116", + "title": "Koroshi Ai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44227": { + "imdb_id": "tt13032878", + "title": "Luminous Witches", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44229": { + "imdb_id": "tt15721650", + "title": "Eiga Go-Toubun no Hanayome" + }, + "44233": { + "imdb_id": "tt14935960", + "title": "Takt Op. Destiny", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44234": { + "imdb_id": "tt15024322", + "title": "Visual Prison", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44236": { + "imdb_id": "tt14338604", + "title": "Muteking the Dancing Hero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44237": { + "imdb_id": "tt14323890", + "title": "Do It Yourself!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44241": { + "imdb_id": "tt14641098", + "title": "Vanitas no Carte", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44672": { + "imdb_id": "tt14641098", + "title": "Vanitas no Carte", + "fromSeason": 1, + "fromEpisode": 13 + }, + "45736": { + "imdb_id": "tt14641098", + "title": "Vanitas no Carte", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44297": { + "imdb_id": "tt13311344", + "title": "Tsukimichi - Moonlit Fantasy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45235": { + "imdb_id": "tt13311344", + "title": "Tsukimichi - Moonlit Fantasy", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44300": { + "imdb_id": "tt14979584", + "title": "Gyakuten Sekai no Denchi Shoujo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44301": { + "imdb_id": "tt15077804", + "title": "Obey Me!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46177": { + "imdb_id": "tt15077804", + "title": "Obey Me!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45992": { + "imdb_id": "tt15077804", + "title": "Obey Me!", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44310": { + "imdb_id": "tt14400866", + "title": "Kakkou no Iinazuke", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44312": { + "imdb_id": "tt13870312", + "title": "Sankaku Mado no Sotogawa wa Yoru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44313": { + "imdb_id": "tt14396202", + "title": "Koi wa Sekai Seifuku no Ato de", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44319": { + "imdb_id": "tt13819192", + "title": "Saiyuuki Reload: Zeroin", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44323": { + "imdb_id": "tt14377292", + "title": "Fuuto PI", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44333": { + "imdb_id": "tt15614646", + "title": "Yuuki Yuuna wa Yuusha de Aru: Dai Mankai no Shou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44337": { + "imdb_id": "tt28100910", + "title": "Liar Liar", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44338": { + "imdb_id": "tt13210990", + "title": "Natsume Yuujinchou: Ishi Okoshi to Ayashiki Raihousha" + }, + "44339": { + "imdb_id": "tt13048312", + "title": "Eiga: Sayonara watashi no Cramer: First Touch" + }, + "44345": { + "imdb_id": "tt14402938", + "title": "Tesla Note", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44376": { + "imdb_id": "tt14134436", + "title": "RPG Fudousan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44381": { + "imdb_id": "tt14694762", + "title": "Slow Loop", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44382": { + "imdb_id": "tt15765670", + "title": "My Dress-Up Darling", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44383": { + "imdb_id": "tt14453538", + "title": "Kono Healer, Mendokusai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44391": { + "imdb_id": "tt14443540", + "title": "Yoru no Kuni", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44392": { + "imdb_id": "tt14470072", + "title": "Jahy-sama wa Kujikenai!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44393": { + "imdb_id": "tt14061838", + "title": "Sekai Saikou no Ansatsusha, Isekai Kizoku ni Tensei suru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44394": { + "imdb_id": "tt14702778", + "title": "Gekijouban Re: cycle of the Penguindrum - Movie 1" + }, + "44400": { + "imdb_id": "tt14986786", + "title": "Wanmei Shijie", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44419": { + "imdb_id": "tt15391190", + "title": "Dance Dance Danseur", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44420": { + "imdb_id": "tt14489160", + "title": "Kaginado", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45699": { + "imdb_id": "tt14489160", + "title": "Kaginado", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44422": { + "imdb_id": "tt14489118", + "title": "Dakaretai Otoko 1-i ni Odosarete Imasu. Movie: Spain-hen" + }, + "44423": { + "imdb_id": "tt14476236", + "title": "Gaikotsu Kishi-sama, Tadaima Isekai e Odekakechuu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44425": { + "imdb_id": "tt14489144", + "title": "Build Divide: Code Black", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44426": { + "imdb_id": "tt14489144", + "title": "Build Divide: Code Black", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44428": { + "imdb_id": "tt14489130", + "title": "Deaimon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44432": { + "imdb_id": "tt14476244", + "title": "Saihate no Paladin", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45657": { + "imdb_id": "tt14476244", + "title": "Saihate no Paladin", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45537": { + "imdb_id": "tt14476244", + "title": "Saihate no Paladin", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44421": { + "imdb_id": "tt35652414", + "title": "Uta No Prince-Sama: Maji Love Taboo Night Xxxx" + }, + "44494": { + "imdb_id": "tt19409404", + "title": "Healer Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44501": { + "imdb_id": "tt14642342", + "title": "Sonny Boy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44503": { + "imdb_id": "tt14976292", + "title": "Link Click", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45504": { + "imdb_id": "tt14976292", + "title": "Link Click", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48133": { + "imdb_id": "tt14976292", + "title": "Link Click", + "fromSeason": 3, + "fromEpisode": 1 + }, + "44789": { + "imdb_id": "tt14976292", + "title": "Link Click", + "fromSeason": 0, + "fromEpisode": 1 + }, + "45506": { + "imdb_id": "tt15978212", + "title": "Paripi Koumei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44511": { + "imdb_id": "tt15791550", + "title": "Mahotsukai Reimeiki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44530": { + "imdb_id": "tt14603848", + "title": "Overlord: The Sacred Kingdom" + }, + "44551": { + "imdb_id": "tt14626352", + "title": "Komi Can't Communicate", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45641": { + "imdb_id": "tt14626352", + "title": "Komi Can't Communicate", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44574": { + "imdb_id": "tt15128000", + "title": "180 Byou de Kimi no Mimi wo Shiawase ni Dekiru ka?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44575": { + "imdb_id": "tt14980764", + "title": "Sasaki to Miyano", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45655": { + "imdb_id": "tt14980764", + "title": "Sasaki to Miyano", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46268": { + "imdb_id": "tt14980764", + "title": "Sasaki to Miyano", + "fromSeason": 0, + "fromEpisode": 2 + }, + "46014": { + "imdb_id": "tt29092780", + "title": "Sasaki and Miyano: Graduation chapter" + }, + "44580": { + "imdb_id": "tt14669108", + "title": "Fantasy Bishoujo Juniku Ojisan to", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44586": { + "imdb_id": "tt14648592", + "title": "Mahou Shoujo Magical Destroyers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44595": { + "imdb_id": "tt14648632", + "title": "ArtisWitch", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44629": { + "imdb_id": "tt15792808", + "title": "Aoashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44632": { + "imdb_id": "tt14759062", + "title": "Mobile Suit Gundam SEED FREEDOM" + }, + "44637": { + "imdb_id": "tt12279682", + "title": "Kyuuketsuki Sugu Shinu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45625": { + "imdb_id": "tt12279682", + "title": "Kyuuketsuki Sugu Shinu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44689": { + "imdb_id": "tt15978968", + "title": "Shachiku-san wa Yôjo-yûrei ni iyasaretai.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44690": { + "imdb_id": "tt14825954", + "title": "Exception", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44691": { + "imdb_id": "tt14837962", + "title": "Make My Day", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44692": { + "imdb_id": "tt14837960", + "title": "Bright: Samurai Soul" + }, + "44694": { + "imdb_id": "tt10915840", + "title": "Uchuu senkan Yamato 2205: Aratanaru tabidachi" + }, + "44702": { + "imdb_id": "tt28682964", + "title": "Mignon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44706": { + "imdb_id": "tt25275610", + "title": "High Card", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47250": { + "imdb_id": "tt25275610", + "title": "High Card", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48665": { + "imdb_id": "tt25275610", + "title": "High Card", + "fromSeason": 0, + "fromEpisode": 1 + }, + "44745": { + "imdb_id": "tt14872196", + "title": "The Grimm Variations", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44755": { + "imdb_id": "tt25434854", + "title": "Deep Sea" + }, + "44773": { + "imdb_id": "tt15219320", + "title": "Isekai Ojisan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44806": { + "imdb_id": "tt13409496", + "title": "Hula Fulla Dance" + }, + "44814": { + "imdb_id": "tt14924976", + "title": "Waccha PriMagi!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44822": { + "imdb_id": "tt15128074", + "title": "Seiken Densetsu: Legend of Mana - The Teardrop Crystal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44823": { + "imdb_id": "tt14935892", + "title": "Alice to Therese no Maboroshi Kôjô" + }, + "44858": { + "imdb_id": "tt14967958", + "title": "Goodbye, DonGlees!" + }, + "44859": { + "imdb_id": "tt14979560", + "title": "Shin Ikkitousen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44876": { + "imdb_id": "tt15582924", + "title": "Kaijin Kaihatsubu no Kuroitsu-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44877": { + "imdb_id": "tt25816576", + "title": "Mou Ippon!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44900": { + "imdb_id": "tt18574004", + "title": "Isekai Yakkyoku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44913": { + "imdb_id": "tt19848112", + "title": "My Stepmom's Daughter Is My Ex", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44925": { + "imdb_id": "tt15801642", + "title": "Gekijouban Isekai Quartet: Another World" + }, + "44941": { + "imdb_id": "tt15202838", + "title": "Deji Meets Girl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44943": { + "imdb_id": "tt15176722", + "title": "Gensou Sangokushi: Tengen Reishinki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44944": { + "imdb_id": "tt16341212", + "title": "Aharen-san wa hakarenai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49095": { + "imdb_id": "tt16341212", + "title": "Aharen-san wa hakarenai", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44946": { + "imdb_id": "tt15400650", + "title": "Digimon Ghost Game", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44947": { + "imdb_id": "tt22474136", + "title": "Digimon Adventure 02: The Beginning" + }, + "44948": { + "imdb_id": "tt15715750", + "title": "Hakozume: Kouban Joshi no Gyakushuu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44954": { + "imdb_id": "tt21345930", + "title": "Uchi no Shishou wa Shippo ga Nai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44960": { + "imdb_id": "tt15202816", + "title": "Love All Play", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44961": { + "imdb_id": "tt16270300", + "title": "Hanabi-chan wa Okure-gachi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44973": { + "imdb_id": "tt15222080", + "fanartLogoId": "158814", + "title": "Blue Lock", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47245": { + "imdb_id": "tt15222080", + "fanartLogoId": "194666", + "title": "Blue Lock", + "fromSeason": 2, + "fromEpisode": 1 + }, + "44974": { + "imdb_id": "tt15684222", + "title": "Tatami Time Machine Blues", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44977": { + "imdb_id": "tt15379212", + "title": "Ganbare Douki-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44978": { + "imdb_id": "tt15529826", + "title": "Sabiiro no Armor: Reimei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44979": { + "imdb_id": "tt13398930", + "title": "Cue!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44981": { + "imdb_id": "tt15237152", + "title": "Chiyu Mahô no Machigatta Tsukai-kata: Senjô o Kakeru Kaifuku Yôin", + "fromSeason": 1, + "fromEpisode": 1 + }, + "44982": { + "imdb_id": "tt15237164", + "title": "Ningen Fushin no Bôkensha-tachi ga Sekai wo Sukû Yô Desu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45007": { + "imdb_id": "tt14924740", + "title": "Deep Insanity: The Lost Child", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45018": { + "imdb_id": "tt15310574", + "title": "Kimi to Fit Boxing", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45024": { + "imdb_id": "tt15304756", + "title": "Blue Thermal" + }, + "45030": { + "imdb_id": "tt16088380", + "title": "Gunjou no Fanfare", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45031": { + "imdb_id": "tt19873436", + "title": "Heroine Tarumono! Kiraware Heroine to Naisho no Oshigoto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45055": { + "imdb_id": "tt15356258", + "title": "Pokémon Evolutions", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45065": { + "imdb_id": "tt15353550", + "title": "Heike Monogatari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45090": { + "imdb_id": "tt15378218", + "title": "Under Ninja", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45133": { + "imdb_id": "tt21230432", + "title": "The Yakuza's Guide to Babysitting", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45149": { + "imdb_id": "tt15802804", + "title": "Atasha Kawashiri Kodama dayo: Dangerous Lifehacker no tadareta seikatsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45150": { + "imdb_id": "tt15392166", + "title": "Ghost in the Shell: SAC_2045" + }, + "45151": { + "imdb_id": "tt32281073", + "title": "Sword of the Demon Hunter: Kijin Gentosho", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45159": { + "imdb_id": "tt15414478", + "title": "Fairy Tail: 100 Years Quest", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45216": { + "imdb_id": "tt15428330", + "title": "Mobile Suit Gundam: Cucuruz Doan's Island" + }, + "45217": { + "imdb_id": "tt15433166", + "title": "Mobile Suit Gundam: The Witch from Mercury", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46561": { + "imdb_id": "tt15433166", + "title": "Mobile Suit Gundam: The Witch from Mercury", + "fromSeason": 1, + "fromEpisode": 13 + }, + "46291": { + "imdb_id": "tt15433166", + "title": "Mobile Suit Gundam: The Witch from Mercury", + "fromSeason": 0, + "fromEpisode": 1 + }, + "45218": { + "imdb_id": "tt15582422", + "title": "Black Rock Shooter: Dawn Fall", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45219": { + "imdb_id": "tt15450826", + "title": "Kimi o Aishita Hitori no Boku e" + }, + "45220": { + "imdb_id": "tt15439344", + "title": "Boku ga Aishita Subete no Kimi e" + }, + "45222": { + "imdb_id": "tt19406880", + "title": "Shinmai renkinjutsushi no tenpo keiei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45242": { + "imdb_id": "tt15483602", + "title": "Tensei shitara ken deshita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45243": { + "imdb_id": "tt28254942", + "title": "Eiyuu Kyoushitsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47755": { + "imdb_id": "tt28254942", + "title": "Eiyuu Kyoushitsu", + "fromSeason": 0, + "fromEpisode": 1 + }, + "45245": { + "imdb_id": "tt15490038", + "title": "Kotaro wa Hitori Gurashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45247": { + "imdb_id": "tt15494038", + "title": "Drifting Home" + }, + "45265": { + "imdb_id": "tt18225160", + "title": "Umisea", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45269": { + "imdb_id": "tt15533960", + "title": "Akuyaku Reijou nanode Last Boss wo Kattemimashita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45270": { + "imdb_id": "tt15538376", + "title": "Sugar Apple Fairy Tale", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47231": { + "imdb_id": "tt15538376", + "title": "Sugar Apple Fairy Tale", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45271": { + "imdb_id": "tt15529750", + "title": "Tribe Nine", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45281": { + "imdb_id": "tt19798344", + "title": "Meitantei Conan: Zero no Tea Time", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45282": { + "imdb_id": "tt26346675", + "title": "Detective Conan: The Culprit Hanzawa", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45303": { + "imdb_id": "tt6848928", + "title": "Junk Head" + }, + "45323": { + "imdb_id": "tt15715792", + "title": "Watashi ni Tenshi ga Maiorita! Precious Friends" + }, + "45328": { + "imdb_id": "tt10915840", + "title": "Uchuu senkan Yamato 2205: Aratanaru tabidachi" + }, + "45341": { + "imdb_id": "tt15723722", + "title": "Yûsha, yamemasu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45347": { + "imdb_id": "tt15737898", + "title": "Blue Giant" + }, + "45350": { + "imdb_id": "tt15739134", + "title": "The Demon Sword Master of Excalibur Academy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45367": { + "imdb_id": "tt22443832", + "fanartLogoId": "157076", + "title": "Arknights: Reimei Zensou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46880": { + "imdb_id": "tt22443832", + "fanartLogoId": "181951", + "title": "Arknights: Reimei Zensou", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45372": { + "imdb_id": "tt15758108", + "title": "Tokyo 24-ku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45387": { + "imdb_id": "tt27391405", + "title": "Isekai Shoukan wa Nidome desu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45388": { + "imdb_id": "tt15744206", + "title": "Ryman's Club", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45389": { + "imdb_id": "tt15783416", + "title": "Shine Post", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45391": { + "imdb_id": "tt15789088", + "title": "Birdie Wing: Golf Girls' Story", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46218": { + "imdb_id": "tt15789088", + "title": "Birdie Wing: Golf Girls' Story", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45394": { + "imdb_id": "tt14206996", + "title": "The Legend of Heroes: Trails of Cold Steel", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45398": { + "imdb_id": "tt13706018", + "fanartLogoId": "149905", + "title": "Spy x Family", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45619": { + "imdb_id": "tt13706018", + "fanartLogoId": "158413", + "title": "Spy x Family", + "fromSeason": 1, + "fromEpisode": 13 + }, + "46873": { + "imdb_id": "tt13706018", + "title": "Spy x Family", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45401": { + "imdb_id": "tt15830678", + "title": "Tomodachi Game", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45405": { + "imdb_id": "tt26997679", + "title": "Chiikawa", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45409": { + "imdb_id": "tt15893716", + "title": "Technoroid: Overmind", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45464": { + "imdb_id": "tt15929150", + "title": "Kunoichi Tsubaki no mune no uchi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45469": { + "imdb_id": "tt11126994", + "title": "Arcane", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45515": { + "imdb_id": "tt11126994", + "title": "Arcane", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45483": { + "imdb_id": "tt15975122", + "title": "Yofukashi no uta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45509": { + "imdb_id": "tt26140070", + "title": "Mononogatari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45512": { + "imdb_id": "tt16156736", + "title": "Chained Soldier", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45514": { + "imdb_id": "tt16148546", + "title": "Shoot! Goal to the Future", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45519": { + "imdb_id": "tt16220566", + "title": "Ensemble Stars!! Road to Show!!" + }, + "45520": { + "imdb_id": "tt16156718", + "title": "Skip to Loafer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45521": { + "imdb_id": "tt16231800", + "title": "Fuufu Ijou, Koibito Miman.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45529": { + "imdb_id": "tt16255458", + "title": "Trapped in a Dating Sim: The World of Otome Games is Tough for Mobs", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45530": { + "imdb_id": "tt16254906", + "title": "Kami Kuzu Idol", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45534": { + "imdb_id": "tt16270512", + "title": "Kitarô Tanjô: Gegege no Nazo" + }, + "45535": { + "imdb_id": "tt16270188", + "title": "Akuma-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45548": { + "imdb_id": "tt25971150", + "title": "Reborn to Master the Blade: From Hero-King to Extraordinary Squire", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45551": { + "imdb_id": "tt16409202", + "title": "Spare Me, Great Lord!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45564": { + "imdb_id": "tt16369708", + "title": "The Imaginary" + }, + "45575": { + "imdb_id": "tt13853360", + "title": "Ninjala", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45579": { + "imdb_id": "tt27845099", + "title": "Reign of the Seven Spellblades", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45581": { + "imdb_id": "tt28766864", + "title": "Buta no Liver wa Kanetsu Shiro", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45583": { + "imdb_id": "tt16418362", + "title": "Gridman Universe" + }, + "45591": { + "imdb_id": "tt21197084", + "title": "Koukyuu no Karasu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45592": { + "imdb_id": "tt29371814", + "title": "Migi to Dali", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45597": { + "imdb_id": "tt16428256", + "title": "Suzume no tojimari" + }, + "45598": { + "imdb_id": "tt17382524", + "title": "The Tunnel to Summer, the Exit of Goodbye" + }, + "45559": { + "imdb_id": "tt16360006", + "title": "Bubble" + }, + "45605": { + "imdb_id": "tt19383782", + "title": "Yu☆Gi☆Oh! Go Rush!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45609": { + "imdb_id": "tt21962510", + "title": "Ayakashi Triangle", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45616": { + "imdb_id": "tt22249034", + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48393": { + "imdb_id": "tt22249034", + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan", + "fromSeason": 2, + "fromEpisode": 1 + }, + "49716": { + "imdb_id": "tt22249034", + "title": "Rurouni Kenshin: Meiji Kenkaku Romantan", + "fromSeason": 3, + "fromEpisode": 1 + }, + "45653": { + "imdb_id": "tt16609250", + "title": "Odd Taxi: In the Woods" + }, + "45654": { + "imdb_id": "tt6043124", + "title": "Lost in the Moonlight" + }, + "45658": { + "imdb_id": "tt25721166", + "title": "Tsundere Akuyaku Reijou Liselotte to Jikkyou no Endou-kun to Kaisetsu no Kobayashi-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45694": { + "imdb_id": "tt16764368", + "title": "Urusei Yatsura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46620": { + "imdb_id": "tt16764368", + "title": "Urusei Yatsura", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45701": { + }, + "45702": { + "imdb_id": "tt16741414", + "title": "Summer Pockets", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45705": { + "imdb_id": "tt16755706", + "title": "Lycoris Recoil", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45713": { + "imdb_id": "tt28299608", + "fanartLogoId": "170472", + "title": "MF Ghost", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48337": { + "imdb_id": "tt28299608", + "fanartLogoId": "194182", + "title": "MF Ghost", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45715": { + "imdb_id": "tt19064770", + "title": "Otonari no tenshi-sama ni itsu no ma ni ka dame-ningen ni sareteita ken", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45729": { + "imdb_id": "tt18939874", + "title": "Teppen-!!!!!!!!!!!!!!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45733": { + "imdb_id": "tt18246604", + "title": "Delicious Party Precure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45746": { + "imdb_id": "tt26450257", + "title": "Kimi wa Hokago Insomnia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45787": { + "imdb_id": "tt17221100", + "title": "Ôyukiumi no Kaina", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45788": { + "imdb_id": "tt21844644", + "title": "Benriya Saitou-san, Isekai ni Iku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45789": { + "imdb_id": "tt31860621", + "title": "Kami wa Gêmu ni Ueteiru.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45794": { + "imdb_id": "tt12105800", + "title": "Hoshi no samidare", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45812": { + "imdb_id": "tt21001320", + "title": "Prima Doll", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45813": { + "imdb_id": "tt25809288", + "title": "Saikyou Onmyouji no Isekai Tenseiki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45814": { + "imdb_id": "tt17501150", + "title": "Mushikaburi-hime", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45818": { + "imdb_id": "tt21912036", + "title": "Hikari no Ô", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47194": { + "imdb_id": "tt21912036", + "title": "Hikari no Ô", + "fromSeason": 1, + "fromEpisode": 11 + }, + "45830": { + "imdb_id": "tt17736234", + "title": "Bastard!! Heavy Metal, Dark Fantasy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46234": { + "imdb_id": "tt17736234", + "title": "Bastard!! Heavy Metal, Dark Fantasy", + "fromSeason": 1, + "fromEpisode": 14 + }, + "46958": { + "imdb_id": "tt17736234", + "title": "Bastard!! Heavy Metal, Dark Fantasy", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45835": { + "imdb_id": "tt18634390", + "title": "Onipan!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45837": { + "imdb_id": "tt19037400", + "title": "Estab-Life: Great Escape", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45839": { + "imdb_id": "tt30414322", + "tvdb_id": "452593", + "title": "Yamato yo, Towa ni: Rebel 3199", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45850": { + "imdb_id": "tt9174358", + "title": "Monster Hunter: Legends of the Guild" + }, + "45855": { + "imdb_id": "tt18183882", + "title": "Extreme Hearts", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45856": { + "imdb_id": "tt21413688", + "title": "Chimimo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45876": { + "imdb_id": "tt26688817", + "title": "Helck", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45884": { + "imdb_id": "tt21249100", + "title": "Kuro no Shoukanshi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45926": { + "imdb_id": "tt18311412", + "title": "NieR: Automata Ver 1.1a", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47784": { + "imdb_id": "tt18311412", + "title": "NieR: Automata Ver 1.1a", + "fromSeason": 1, + "fromEpisode": 13 + }, + "45930": { + "imdb_id": "tt28534254", + "title": "Spice and Wolf: Merchant Meets the Wise Wolf", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45932": { + "imdb_id": "tt11247158", + "title": "The Legend of Vox Machina", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46861": { + "imdb_id": "tt11247158", + "title": "The Legend of Vox Machina", + "fromSeason": 2, + "fromEpisode": 1 + }, + "45956": { + "imdb_id": "tt18561422", + "title": "Vermeil in Gold - A Magician Pushes Through the Magical World With the Strongest Disaster", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45961": { + "imdb_id": "tt18566706", + "title": "Futoku no Guild", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45965": { + "imdb_id": "tt27462671", + "title": "Isekai One Turn Kill Nee-san: Ane Douhan no Isekai Seikatsu Hajimemashita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45966": { + "imdb_id": "tt20259190", + "title": "Spy Kyoushitsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47288": { + "imdb_id": "tt20259190", + "title": "Spy Kyoushitsu", + "fromSeason": 1, + "fromEpisode": 13 + }, + "45967": { + "imdb_id": "tt21689900", + "title": "Inu ni Nattara Suki na Hito ni Hirowareta.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45977": { + "imdb_id": "tt21826010", + "title": "C Danchi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45985": { + "imdb_id": "tt19875850", + "title": "Tekken: Bloodline", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45989": { + "imdb_id": "tt28813376", + "title": "Dead Dead Demon's Dededede Destruction Kôhen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "45995": { + "imdb_id": "tt21369972", + "fanartLogoId": "166754", + "title": "Eternal Boys", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47212": { + "imdb_id": "tt21369972", + "fanartLogoId": "169851", + "title": "Eternal Boys", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46000": { + "imdb_id": "tt28685470", + "title": "Ragna Crimson", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46001": { + "imdb_id": "tt19045110", + "title": "Bucchigire!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46002": { + "imdb_id": "tt21606344", + "title": "Renai Flops", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46003": { + "imdb_id": "tt18573684", + "title": "You0 DECO", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46004": { + "imdb_id": "tt19511674", + "title": "Opus Colors", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46011": { + "imdb_id": "tt33503859", + "title": "Grisaia Phantom Trigger", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46013": { + "imdb_id": "tt21114720", + "title": "Engage Kiss", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46015": { + "imdb_id": "tt19244410", + "title": "Level 1 Demon Lord and One Room Hero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46016": { + "imdb_id": "tt19223420", + "title": "Isekai Nonbiri Nouka", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46034": { + "imdb_id": "tt21345894", + "title": "4-nin wa Sorezore Uso wo Tsuku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46049": { + "imdb_id": "tt26699386", + "title": "The Idolm@ster Cinderella Girls U149", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46050": { + "imdb_id": "tt19869172", + "title": "Watashi no Shiawase na Kekkon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47969": { + "imdb_id": "tt19869172", + "title": "Watashi no Shiawase na Kekkon", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47800": { + "imdb_id": "tt19869172", + "title": "Watashi no Shiawase na Kekkon", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46055": { + "imdb_id": "tt26450255", + "title": "Ao no Orchestra", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46059": { + "imdb_id": "tt30177477", + "title": "Nozomanu Fushi no Bôkensha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46077": { + "imdb_id": "tt21929424", + "title": "Oniichan wa Oshimai!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46078": { + "imdb_id": "tt21345982", + "title": "Cool Doji Danshi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46079": { + "imdb_id": "tt30873755", + "tvdbId": "383837", + "fanartLogoId": "183854", + "title": "Shaman King: Flowers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46081": { + "imdb_id": "tt19893526", + "title": "The Last Summoner", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46083": { + "imdb_id": "tt21844706", + "title": "Otonari ni Ginga", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46085": { + "imdb_id": "tt19861160", + "title": "Gekijoban Bishojo Senshi Sailor Moon Cosmos" + }, + "46086": { + "imdb_id": "tt33022396", + "title": "Gunma-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46087": { + "imdb_id": "tt19853780", + "title": "Yûsha ga shinda!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46088": { + "imdb_id": "tt25531288", + "title": "Hyouken no Majutsushi ga Sekai wo Suberu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46089": { + "imdb_id": "tt27419998", + "title": "Kaminaki Sekai no Kamisama Katsudou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46090": { + "imdb_id": "tt21244528", + "title": "Yoru wa Neko to Issho", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46974": { + "imdb_id": "tt21244528", + "title": "Yoru wa Neko to Issho", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48567": { + "imdb_id": "tt21244528", + "title": "Yoru wa Neko to Issho", + "fromSeason": 3, + "fromEpisode": 1 + }, + "46099": { + "imdb_id": "tt27990591", + "title": "Level 1 dakedo Unique Skill de Saikyou desu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46107": { + "imdb_id": "tt20228550", + "title": "The Seven Deadly Sins: Four Knights of the Apocalypse", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48647": { + "imdb_id": "tt20228550", + "title": "The Seven Deadly Sins: Four Knights of the Apocalypse", + "fromSeason": 1, + "fromEpisode": 25 + }, + "46110": { + "imdb_id": "tt21844614", + "title": "Kubo-san wa Mobu o Yurusanai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46113": { + "imdb_id": "tt21237620", + "title": "KJ File", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46651": { + "imdb_id": "tt21237620", + "title": "KJ File", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46116": { + "imdb_id": "tt20234560", + "title": "Watashi no Yuri wa Oshigoto Desu!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46134": { + "imdb_id": "tt21345876", + "title": "Shinobi no Ittoki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46135": { + "imdb_id": "tt21237634", + "title": "The Maid I Hired Recently Is Mysterious", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46136": { + "imdb_id": "tt21101866", + "title": "Smile of the Arsnotoria the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46137": { + "imdb_id": "tt28100780", + "title": "Dekiru Neko wa Kyou mo Yuuutsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46139": { + "imdb_id": "tt27329086", + "title": "Konosuba: An Explosion on This Wonderful World!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46141": { + "imdb_id": "tt29514999", + "title": "Paradox Live the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46143": { + "imdb_id": "tt28466465", + "title": "Rick and Morty: The Anime", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46144": { + "imdb_id": "tt27191819", + "title": "Boku to Roboko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46158": { + "imdb_id": "tt20860298", + "title": "Tokubetsuhen Hibike! Euphonium ~Ensemble Contest~" + }, + "46168": { + "imdb_id": "tt21856734", + "title": "Junji Ito Maniac: Japanese Tales of the Macabre", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46170": { + "imdb_id": "tt21030032", + "title": "Oshi no Ko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47659": { + "imdb_id": "tt21030032", + "title": "Oshi no Ko", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46171": { + "imdb_id": "tt21345944", + "title": "Yuusha Party wo Tsuihou sareta Beast Tamer, Saikyoushu no Nekomimi Shoujo to Deau", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46173": { + "imdb_id": "tt14833612", + "title": "Castlevania: Nocturne", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48071": { + "imdb_id": "tt14833612", + "title": "Castlevania: Nocturne", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46176": { + "imdb_id": "tt20672482", + "title": "Moonrise", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46183": { + "imdb_id": "tt21216104", + "title": "Trigun Stampede", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46184": { + "imdb_id": "tt31308294", + "title": "Murai no Koi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46185": { + "imdb_id": "tt26895902", + "title": "Edomae Elf", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46187": { + "imdb_id": "tt22297732", + "title": "Shiro Seijo to Kuro Bokushi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46188": { + "imdb_id": "tt32574149", + "title": "Mononoke: Karakasa" + }, + "46192": { + "imdb_id": "tt21929398", + "title": "Koori Zokusei Danshi to Cool na Douryou Joshi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46209": { + "imdb_id": "tt22410622", + "title": "My Home Hero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46210": { + "imdb_id": "tt21929358", + "title": "Akiba Maid Sensou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46213": { + "imdb_id": "tt27117596", + "title": "Genjitsu No Yohane -Sunshine in the Mirror-", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46214": { + "imdb_id": "tt33044444", + "title": "Orb: On the Movements of the Earth", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46223": { + "imdb_id": "tt25814162", + "title": "Nokemono-tachi no Yoru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46224": { + "imdb_id": "tt28480255", + "title": "Ninja Kamui", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46225": { + "imdb_id": "tt15242330", + "title": "The First Slam Dunk" + }, + "46229": { + "imdb_id": "tt21209804", + "title": "Mashle: Magic and Muscles", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47671": { + "imdb_id": "tt21209804", + "title": "Mashle: Magic and Muscles", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47466": { + "imdb_id": "tt21209804", + "title": "Mashle: Magic and Muscles", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46231": { + "imdb_id": "tt21209876", + "fanartLogoId": "154023", + "title": "Solo Leveling", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48671": { + "imdb_id": "tt21209876", + "fanartLogoId": "195713", + "title": "Solo Leveling", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46232": { + "imdb_id": "tt21210326", + "title": "Tomo-chan Is a Girl!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46233": { + "imdb_id": "tt27484853", + "title": "Kanojo ga Koushaku-tei ni Itta Riyuu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46238": { + "imdb_id": "tt16183478", + "title": "Yowai 5000-nen no Soushoku Dragon, Iwarenaki Jaryuu Nintei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48191": { + "imdb_id": "tt16183478", + "title": "Yowai 5000-nen no Soushoku Dragon, Iwarenaki Jaryuu Nintei", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46241": { + "imdb_id": "tt28776190", + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48677": { + "imdb_id": "tt28776190", + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48438": { + "imdb_id": "tt28776190", + "title": "Shangri-La Frontier: Kusoge Hunter, Kamige ni Idoman to su", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46242": { + "imdb_id": "tt30689225", + "title": "Isekai de Mofumofu Nadenade suru Tame ni Ganbattemasu.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46243": { + "imdb_id": "tt31186547", + "title": "No Longer Allowed in Another World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46259": { + "imdb_id": "tt23055158", + "title": "Zanting! Rang Wo Cha Gonglüe", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46270": { + "imdb_id": "tt21345970", + "title": "Noumin Kanren no Skill bakka Agetetara Nazeka Tsuyoku Natta.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46271": { + "imdb_id": "tt33054444", + "title": "True Beauty", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46272": { + "imdb_id": "tt21867530", + "title": "Aru Asa Dummy Head Mic ni Natteita Ore-kun no Jinsei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46273": { + "imdb_id": "tt31811111", + "title": "HIGHSPEED Etoile", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46274": { + "imdb_id": "tt21342052", + "title": "Kaiko sareta Ankoku Heishi (30-dai) no Slow na Second Life", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46276": { + "imdb_id": "tt21975478", + "title": "Gimai Seikatsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46279": { + "imdb_id": "tt21844490", + "title": "Dark Gathering", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46299": { + "imdb_id": "tt21423786", + "title": "Boku no kokoro no yabai yatsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47634": { + "imdb_id": "tt21423786", + "title": "Boku no kokoro no yabai yatsu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48381": { + "imdb_id": "tt21423786", + "title": "Boku no kokoro no yabai yatsu", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46300": { + "imdb_id": "tt21975436", + "title": "Kaiju No. 8", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48994": { + "imdb_id": "tt21975436", + "title": "Kaiju No. 8", + "fromSeason": 2, + "fromEpisode": 1 + }, + "49103": { + "imdb_id": "tt21975436", + "title": "Kaiju No. 8", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46303": { + "imdb_id": "tt27524116", + "title": "Sasaki to Pi-chan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46304": { + "imdb_id": "tt21608762", + "title": "Rôgo ni sonaete Isekai de 8-man-mai no kinka wo tamemasu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46307": { + "imdb_id": "tt27404658", + "title": "Tensei Kizoku no Isekai Boukenroku: Jichou wo Shiranai Kamigami no Shito", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46309": { + "imdb_id": "tt27990718", + "title": "Okashi na Tensei", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46311": { + "imdb_id": "tt28100731", + "title": "Jidou Hanbaiki ni Umarekawatta Ore wa Meikyuu wo Samayou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46316": { + "imdb_id": "tt26739471", + "title": "Duel Masters WIN", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47270": { + "imdb_id": "tt26739471", + "title": "Duel Masters WIN", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48590": { + "imdb_id": "tt26739471", + "title": "Duel Masters WIN", + "fromSeason": 3, + "fromEpisode": 1 + }, + "46317": { + "imdb_id": "tt27504251", + "title": "Ranking of Kings: The Treasure Chest of Courage", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46320": { + "imdb_id": "tt21621494", + "title": "Delicious in Dungeon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46323": { + "imdb_id": "tt22445494", + "title": "Berserk: The Golden Age Arc - Memorial Edition", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46334": { + "imdb_id": "tt35346400", + "title": "Can a Boy-Girl Friendship Survive?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46335": { + "imdb_id": "tt22889156", + "title": "The Magical Revolution of the Reincarnated Princess and the Genius Young Lady", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46358": { + "imdb_id": "tt26224944", + "title": "Psycho-Pass Movie: Providence" + }, + "46369": { + "imdb_id": "tt30089363", + "title": "The Witch and the Beast", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46370": { + "imdb_id": "tt27417996", + "title": "Isekai de Cheat Skill wo Te ni Shita Ore wa, Genjitsu Sekai wo mo Musou Suru: Level Up wa Jinsei wo Kaeta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46371": { + "imdb_id": "tt21991254", + "title": "Romantic Killer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46405": { + "imdb_id": "tt13450886", + "title": "SD Gundam World Heroes", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46415": { + "imdb_id": "tt21927720", + "title": "Undead Unluck", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46434": { + "imdb_id": "tt27548413", + "title": "Konyaku Haki sareta Reijou wo Hirotta Ore ga, Ikenai Koto wo Oshiekomu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46449": { + "imdb_id": "tt21996220", + "title": "Versailles no bara" + }, + "46455": { + "imdb_id": "tt21996318", + "title": "Tearmoon Teikoku Monogatari: Dantoudai kara Hajimaru, Hime no Tensei Gyakuten Story", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46456": { + "imdb_id": "tt28254867", + "title": "Jitsu wa Ore, Saikyou deshita?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46457": { + "imdb_id": "tt29171903", + "title": "Dekoboko Majo no Oyako Jijou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46458": { + "imdb_id": "tt22087138", + "title": "Goddess Cafe Terrace", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47654": { + "imdb_id": "tt22087138", + "title": "Goddess Cafe Terrace", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46459": { + "imdb_id": "tt22017206", + "title": "Keikenzumi na Kimi to, Keiken Zero na Ore ga, Otsukiai suru Hanashi.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46463": { + "imdb_id": "tt22265884", + "title": "Human Bug Daigaku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46474": { + "imdb_id": "tt22248376", + "title": "Sousou no Frieren", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48105": { + "imdb_id": "tt22248376", + "title": "Sousou no Frieren", + "fromSeason": 0, + "fromEpisode": 1 + }, + "46477": { + "imdb_id": "tt24240038", + "title": "Shindyuariti: Noir", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47999": { + "imdb_id": "tt24240038", + "title": "Shindyuariti: Noir", + "fromSeason": 1, + "fromEpisode": 13 + }, + "46499": { + "imdb_id": "tt22171506", + "title": "Nijiyon Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48652": { + "imdb_id": "tt22171506", + "title": "Nijiyon Animation", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46509": { + "imdb_id": "tt22266604", + "title": "VazzRock the Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46510": { + "imdb_id": "tt32526678", + "title": "Mecha-ude", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46516": { + "imdb_id": "tt27442011", + "title": "Long Zu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46523": { + "imdb_id": "tt22192398", + "title": "Lupin III VS Cat's Eye" + }, + "46525": { + "imdb_id": "tt30326044", + "title": "ATRI-My Dear Moments-", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46526": { + "imdb_id": "tt25808792", + "fanartLogoId": "163853", + "title": "UniteUp!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47816": { + "imdb_id": "tt25808792", + "fanartLogoId": "197128", + "title": "UniteUp!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46527": { + "imdb_id": "tt22264336", + "title": "Fate/strange Fake: Whispers of Dawn" + }, + "46529": { + "imdb_id": "tt22297712", + "title": "Yamada-kun to Lv999 no Koi wo Suru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46541": { + "imdb_id": "tt22264252", + "title": "Onmyoji", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46543": { + "imdb_id": "tt31392336", + "title": "Rabbits Kingdom the Movie" + }, + "46544": { + }, + "46560": { + "imdb_id": "tt23812370", + "title": "Ars no Kyojuu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46562": { + "imdb_id": "tt25534100", + "title": "Revenger", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46587": { + "imdb_id": "tt11680642", + "title": "Pantheon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46589": { + "imdb_id": "tt22524872", + "title": "Shy", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48328": { + "imdb_id": "tt22524872", + "title": "Shy", + "fromSeason": 1, + "fromEpisode": 13 + }, + "46600": { + "imdb_id": "tt28101962", + "title": "Seija Musou: Salaryman, Isekai de Ikinokoru Tame ni Ayumu Michi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46601": { + "imdb_id": "tt29171939", + "title": "Hoshikuzu Telepath", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46623": { + "imdb_id": "tt31975747", + "title": "Train to the End of the World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46624": { + "imdb_id": "tt27460264", + "title": "Ojou to Banken-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46641": { + "imdb_id": "tt22817632", + "title": "Tengoku Daimakyou", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46643": { + "imdb_id": "tt34048201", + "title": "Ya She", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46644": { + "imdb_id": "tt29233201", + "title": "Bartender: Glass of God", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46647": { + "imdb_id": "tt27571597", + "title": "Uchi no Kaisha no Chiisai Senpai no Hanashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46650": { + "imdb_id": "tt22986710", + "title": "Buddy Daddies", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46652": { + "imdb_id": "tt19047064", + "title": "Rakudai Majo" + }, + "46654": { + "imdb_id": "tt22983862", + "title": "Lupin Zero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46663": { + "imdb_id": "tt23029874", + "title": "Hokkaido Gals Are Super Adorable!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46667": { + "imdb_id": "tt27617338", + "fanartLogoId": "178240", + "title": "Hyakushô Kizoku", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48336": { + "imdb_id": "tt27617338", + "fanartLogoId": "190427", + "title": "Hyakushô Kizoku", + "fromSeason": 2, + "fromEpisode": 1 + }, + "49440": { + "imdb_id": "tt27617338", + "fanartLogoId": "190427", + "title": "Hyakushô Kizoku", + "fromSeason": 0, + "fromEpisode": 2 + }, + "46676": { + "imdb_id": "tt24229160", + "title": "Tondemo Skill de Isekai Hourou Meshi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46685": { + "imdb_id": "tt28266753", + "title": "Ayaka", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46687": { + "imdb_id": "tt31940008", + "title": "An Archdemon's Dilemma: How to Love Your Elf Bride", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46688": { + "imdb_id": "tt28685497", + "title": "Bôshoku no Berserk", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46689": { + "imdb_id": "tt23132598", + "title": "Higeki no Genkyo to naru Saikyo Gedo Last Boss Joo wa Min no tame ni Tsukushimasu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46690": { + "imdb_id": "tt28102247", + "title": "Bokensha ni Naritai to Miyako ni Deteitta Musume ga S-rank ni Natteta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46704": { + "imdb_id": "tt31624309", + "title": "I Was Reincarnated as the 7th Prince So I Can Take My Time Perfecting My Magical Ability", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46731": { + "imdb_id": "tt27497540", + "title": "The Marginal Service", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46732": { + "imdb_id": "tt27427810", + "title": "Kizuna no Ariru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47672": { + "imdb_id": "tt27427810", + "title": "Kizuna no Ariru", + "fromSeason": 1, + "fromEpisode": 13 + }, + "46733": { + "imdb_id": "tt30644010", + "title": "Saijaku Tamer wa Gomi Hiroi no Tabi wo Hajimemashita.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46754": { + "imdb_id": "tt23730842", + "title": "Gamera -Rebirth-", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46760": { + "imdb_id": "tt27489241", + "title": "Dead Mount Death Play", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47195": { + "imdb_id": "tt27489241", + "title": "Dead Mount Death Play", + "fromSeason": 1, + "fromEpisode": 13 + }, + "46761": { + "imdb_id": "tt23711384", + "title": "My Clueless First Friend", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46762": { + "imdb_id": "tt29476307", + "title": "Bullbuster", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46763": { + "imdb_id": "tt28278738", + "title": "Yumemiru Danshi wa Genjitsushugisha", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46764": { + "imdb_id": "tt23844810", + "title": "Bye Bye, Earth", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49198": { + "imdb_id": "tt23844810", + "title": "Bye Bye, Earth", + "fromSeason": 1, + "fromEpisode": 10 + }, + "46780": { + "imdb_id": "tt25041020", + "title": "Violet Evergarden: Recollections" + }, + "46783": { + "imdb_id": "tt23862502", + "title": "Hirogaru Sky! Precure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46784": { + "imdb_id": "tt27246089", + "title": "Hi no tori: Eden no sora", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46856": { + "imdb_id": "tt29171914", + "title": "I'm in Love with the Villainess", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46789": { + "imdb_id": "tt19413836", + "title": "City Hunter the Movie: Angel Dust" + }, + "46801": { + "imdb_id": "tt28689252", + "title": "4 Cut Hero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46805": { + "imdb_id": "tt32986702", + "title": "Acro Trip", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46807": { + "imdb_id": "tt30146725", + "title": "Sokushi Cheat ga Saikyôsugite, Isekai no Yatsura ga Marude Aite ni Naranain Desu ga", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46808": { + "imdb_id": "tt27418288", + "title": "World Dai Star", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46809": { + "imdb_id": "tt23951384", + "title": "The Colors Within" + }, + "46840": { + "imdb_id": "tt28082379", + "title": "Go! Go! Loser Ranger!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49004": { + "imdb_id": "tt28082379", + "title": "Go! Go! Loser Ranger!", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46841": { + "imdb_id": "tt28038239", + "title": "AI no Idenshi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46842": { + "imdb_id": "tt31141567", + "title": "2.5 Dimensional Seduction", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46868": { + "imdb_id": "tt25048890", + "title": "Sando rando" + }, + "46869": { + "imdb_id": "tt31131310", + "title": "Yozakura-san Chi no Daisakusen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46874": { + "imdb_id": "tt26684398", + "title": "Spy x Family Movie: Code: White" + }, + "46876": { + "imdb_id": "tt29370857", + "title": "Kamonohashi Ron no Kindan Suiri", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48399": { + "imdb_id": "tt29370857", + "title": "Kamonohashi Ron no Kindan Suiri", + "fromSeason": 1, + "fromEpisode": 14 + }, + "46900": { + "imdb_id": "tt23749170", + "title": "Tom and Jerry", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46921": { + "imdb_id": "tt24326724", + "fanartLogoId": "170694", + "title": "Unnamed Memory", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48991": { + "imdb_id": "tt24326724", + "fanartLogoId": "197181", + "title": "Unnamed Memory", + "fromSeason": 2, + "fromEpisode": 1 + }, + "46922": { + "imdb_id": "tt29201691", + "title": "Megumi no Daigo: Kyuukoku no Orange", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46923": { + "imdb_id": "tt31940035", + "title": "The Many Sides of Voice Actor Radio", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46932": { + "imdb_id": "tt32245532", + "title": "Tosochu: The Great Mission", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46934": { + "imdb_id": "tt29143189", + "title": "16bit Sensation: Another Layer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46953": { + "imdb_id": "tt29171919", + "title": "Hikikomari Kyuuketsuki no Monmon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46954": { + "imdb_id": "tt25811262", + "title": "Zom 100: Bucket List of the Dead", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46970": { + "imdb_id": "tt28265657", + "title": "Suki na Ko ga Megane wo Wasureta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46971": { + "imdb_id": "tt30989692", + "title": "Sasayaku You ni Koi wo Utau", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46975": { + "imdb_id": "tt32083095", + "title": "Mysterious Disappearances", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46987": { + }, + "46992": { + "imdb_id": "tt27462737", + "title": "Rokudou no Onna-tachi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "46999": { + "imdb_id": "tt27571647", + "title": "TenPuru: No One Can Live on Loneliness", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48300": { + "imdb_id": "tt27571647", + "title": "TenPuru: No One Can Live on Loneliness", + "fromSeason": 0, + "fromEpisode": 1 + }, + "47004": { + "imdb_id": "tt32332792", + "title": "VTuber nanda ga Haishin Kiriwasuretara Densetsu ni Nattta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47018": { + "imdb_id": "tt27679458", + "title": "Overtake!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47019": { + "imdb_id": "tt29796288", + "title": "Dog Signal", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47020": { + "imdb_id": "tt30488398", + "title": "Tales of Wedding Rings", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47034": { + "imdb_id": "tt24548912", + "title": "Justice League x RWBY: Super Heroes and Huntsmen: Part 1" + }, + "47075": { + "imdb_id": "tt30989205", + "title": "Blue Archive: The Animation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47076": { + "imdb_id": "tt28774702", + "title": "The Kingdoms of Ruin", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47077": { + "imdb_id": "tt28769801", + "title": "Toaru Ossan no VRMMO Katsudouki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47078": { + "imdb_id": "tt26713948", + "title": "Ishura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48635": { + "imdb_id": "tt26713948", + "title": "Ishura", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47079": { + "imdb_id": "tt26674627", + "title": "Resident Evil: Death Island" + }, + "47080": { + "imdb_id": "tt27892601", + "title": "IDOLiSH7 Movie: LIVE 4bit - BEYOND THE PERiOD" + }, + "47083": { + "imdb_id": "tt26743760", + "title": "Kusuriya no Hitorigoto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48649": { + "imdb_id": "tt26743760", + "title": "Kusuriya no Hitorigoto", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47106": { + "imdb_id": "tt27724196", + "title": "Kuromi's Pretty Journey", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49302": { + "imdb_id": "tt27724196", + "title": "Kuromi's Pretty Journey", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47110": { + "imdb_id": "tt26916286", + "title": "Pokémon Concierge", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47111": { + "imdb_id": "tt28247170", + "title": "Doctor Elise", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47127": { + "imdb_id": "tt27531662", + "title": "Chibi Godzilla no Gyakushuu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48610": { + "imdb_id": "tt27531662", + "title": "Chibi Godzilla no Gyakushuu", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47152": { + "imdb_id": "tt29908328", + "title": "Kawagoe Boys Sing", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47153": { + "imdb_id": "tt29467317", + "title": "Mr Villain's Day Off", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47154": { + "imdb_id": "tt29171927", + "title": "I Shall Survive Using Potions!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47160": { + "imdb_id": "tt27450217", + "title": "Kawaisugi Crisis", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47179": { + "imdb_id": "tt28919914", + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48348": { + "imdb_id": "tt28919914", + "title": "Kimi no Koto ga Daidaidaidaidaisuki na 100-nin no Kanojo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47184": { + "imdb_id": "tt27197973", + "title": "Kibô no Chikara: Otona Precure 23", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47185": { + "imdb_id": "tt29605390", + "title": "Gushing Over Magical Girls", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47187": { + "imdb_id": "tt32832434", + "title": "Tsuma, Shougakusei ni Naru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47191": { + "imdb_id": "tt29338030", + "title": "Kinnikuman Kanpeki Chôjin Shiso-hen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49226": { + "imdb_id": "tt29338030", + "title": "Kinnikuman Kanpeki Chôjin Shiso-hen", + "fromSeason": 1, + "fromEpisode": 12 + }, + "49022": { + "imdb_id": "tt29338030", + "title": "Kinnikuman Kanpeki Chôjin Shiso-hen", + "fromSeason": 0, + "fromEpisode": 1 + }, + "47192": { + "imdb_id": "tt31131295", + "title": "Tokidoki Bosotto Russia-go de Dereru Tonari no Alya-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47197": { + "imdb_id": "tt27187054", + "title": "Nige Jouzu no Wakagimi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47199": { + "imdb_id": "tt27187053", + "title": "Raiza no Atorie: Tokoyami no Joô to Himitsu no Kakurega", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47222": { + "imdb_id": "tt31543920", + "title": "The Idolm@ster: Shiny Colors", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48603": { + "imdb_id": "tt31543920", + "title": "The Idolm@ster: Shiny Colors", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47224": { + "imdb_id": "tt28347814", + "title": "Madoigwa no Totto-chan" + }, + "47226": { + "imdb_id": "tt27206542", + "title": "Undead Girl Murder Farce", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47227": { + "imdb_id": "tt29475583", + "title": "Kamierabi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48398": { + "imdb_id": "tt29475583", + "title": "Kamierabi", + "fromSeason": 1, + "fromEpisode": 13 + }, + "47228": { + "imdb_id": "tt29510641", + "title": "Metallic Rouge", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47233": { + "imdb_id": "tt27237459", + "title": "Yoru no Kurage wa Oyogenai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47234": { + "imdb_id": "tt28261206", + "title": "Horimiya -piece-", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47236": { + "imdb_id": "tt32332918", + "title": "Quality Assurance in Another World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47237": { + "imdb_id": "tt30495119", + "title": "Akuyaku Reijou Level 99: Watashi wa Ura-Boss desu ga Maou dewa Arimasen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47238": { + "imdb_id": "tt32307386", + "title": "Senpai wa Otokonoko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47239": { + "imdb_id": "tt32542096", + "title": "Demon Lord 2099", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47240": { + "imdb_id": "tt28313387", + "title": "Kikansha no Mahou wa Tokubetsu desu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47241": { + "imdb_id": "tt27250301", + "title": "Ōoku: The Inner Chambers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47244": { + "imdb_id": "tt28671146", + "title": "Gekijô-ban Blue Lock -Episode Nagi-" + }, + "47267": { + "imdb_id": "tt31957487", + "title": "Rinkai!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47268": { + "imdb_id": "tt27250338", + "title": "Yakitori: Soldiers of Misfortune", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47269": { + "imdb_id": "tt26140070", + "title": "Mononogatari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47271": { + "imdb_id": "tt29605391", + "fanartLogoId": "183815", + "title": "Wind Breaker", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48992": { + "imdb_id": "tt29605391", + "fanartLogoId": "195482", + "title": "Wind Breaker", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47272": { + "imdb_id": "tt31596104", + "title": "Shinmai Ossan Bôkensha, Saikyô Party ni Shinu Hodo Kitaerarete Muteki ni Naru.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47291": { + "imdb_id": "tt27479417", + "title": "BanG Dream! It's MyGO!!!!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47296": { + "imdb_id": "tt32552529", + "title": "Giji Hâremu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47297": { + "imdb_id": "tt27540599", + "title": "Aiyou de Mishi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47331": { + "imdb_id": "tt29141921", + "title": "Tying the Knot with an Amagami Sister", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47347": { + "imdb_id": "tt30495098", + "title": "Oroka na Tenshi wa Akuma to Odoru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47354": { + "imdb_id": "tt28607487", + "title": "Hokkyoku Hyakkaten no Concierge San" + }, + "47356": { + "imdb_id": "tt31250134", + "title": "Girls Band Cry", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47375": { + "imdb_id": "tt32524882", + "title": "The Do-Over Damsel Conquers the Dragon Emperor", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47376": { + "imdb_id": "tt29340934", + "title": "Yuzuki-san Chi no Yon Kyoudai.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47426": { + "imdb_id": "tt27626792", + "title": "Komada Jôryûsho e Yôkoso" + }, + "47427": { + "imdb_id": "tt31957516", + "title": "Oi! Tonbo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49013": { + "imdb_id": "tt31957516", + "title": "Oi! Tonbo", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47454": { + "imdb_id": "tt33310730", + "title": "Medarisuto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47469": { + "imdb_id": "tt28454318", + "title": "Bucchigiri?!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47480": { + "imdb_id": "tt28919932", + "title": "Atarashii Joushi wa Do Tennen", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47481": { + "imdb_id": "tt31975847", + "fanartLogoId": "188549", + "title": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48979": { + "imdb_id": "tt31975847", + "fanartLogoId": "194671", + "title": "As a Reincarnated Aristocrat, I'll Use My Appraisal Skill to Rise in the World", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47483": { + "tvdb_id": "435253", + "title": "The Way of Pon" + }, + "47504": { + "imdb_id": "tt35437780", + "title": "Zatsu Tabi -That's Journey-", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47528": { + "imdb_id": "tt31490653", + "title": "Kyoukai Senki Kyokkou no Souki", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47530": { + "imdb_id": "tt29666664", + "title": "Bloody Escape" + }, + "47546": { + "imdb_id": "tt27865962", + "title": "Beyblade X", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47550": { + "imdb_id": "tt28061652", + "title": "Ikimono-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47557": { + "imdb_id": "tt28055106", + "title": "Ôyukiumi no Kaina: Hoshi no Kenja" + }, + "47574": { + "imdb_id": "tt29899598", + "title": "Hananoi-kun to Koi no Yamai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47583": { + "imdb_id": "tt30975941", + "title": "Brave Bang Bravern!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47586": { + "imdb_id": "tt27497575", + "title": "365 Days to the Wedding", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47656": { + "imdb_id": "tt30643998", + "title": "Himesama Goumon no Jikan desu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47658": { + "imdb_id": "tt36361934", + "title": "Cocoon: One Summer of Girlhood" + }, + "47682": { + "imdb_id": "tt32864316", + "title": "Fate/strange Fake", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47686": { + "imdb_id": "tt30277745", + "title": "Gundam: Requiem for Vengeance", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47687": { + "imdb_id": "tt28279848", + "title": "Suicide Squad Isekai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47691": { + "imdb_id": "tt30024091", + "title": "Yubisaki to Renren", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47692": { + "imdb_id": "tt31940099", + "title": "Henjin no Salad Bowl", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47701": { + "imdb_id": "tt28772401", + "title": "Bokura no Ameiro Protocol", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47702": { + "imdb_id": "tt32332813", + "title": "Tasogare Out Focus", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47703": { + "imdb_id": "tt31169642", + "title": "OKITSURA: Fell in Love with an Okinawan Girl, but I Just Wish I Know What She's Saying", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47711": { + "imdb_id": "tt14681924", + "title": "My Adventures with Superman", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47735": { + "imdb_id": "tt28369144", + "title": "Cherry Magic! Thirty Years of Virginity Can Make You a Wizard?!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47740": { + "imdb_id": "tt28329410", + "title": "Za Faburu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47742": { + "imdb_id": "tt28036417", + "title": "Rascal Does Not Dream of a Knapsack Kid" + }, + "47750": { + "imdb_id": "tt32333055", + "title": "Koi wa Futago de Warikirenai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47751": { + "imdb_id": "tt30691068", + "title": "The Demon Prince of Momochi House", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47752": { + "imdb_id": "tt33059860", + "title": "I May Be a Guild Receptionist, but I'll Solo Any Boss to Clock Out on Time", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47753": { + "imdb_id": "tt32513973", + "title": "Your Forma", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47778": { + "imdb_id": "tt28454008", + "title": "Lazaro", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47781": { + "imdb_id": "tt30475122", + "title": "MONSTERS: 103 Mercies Dragon Damnation", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47786": { + "imdb_id": "tt31844529", + "title": "Naze Boku no Sekai wo Daremo Oboeteinai no ka?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47796": { + "imdb_id": "tt32044229", + "title": "Tonari no Youkai-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47813": { + "imdb_id": "tt28521881", + "title": "Good Night World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47835": { + "imdb_id": "tt32645928", + "title": "Delico's Nursery", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47844": { + "imdb_id": "tt32176689", + "title": "My Hero Academia the Movie 4: You're Next" + }, + "47857": { + "imdb_id": "tt28634577", + "title": "Jiisan Baasan Wakagaeru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47858": { + "imdb_id": "tt32812118", + "title": "I'll Become a Villainess Who Goes Down in History", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47872": { + "imdb_id": "tt32832441", + "title": "Dungeon People", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47874": { + "imdb_id": "tt28685624", + "title": "Loop 7-kaime no Akuyaku Reijô wa, Moto Tekikoku de Jiyû Kimama na Hanayome Seikatsu wo Mankitsu suru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47886": { + "imdb_id": "tt32832424", + "title": "Haigakura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47887": { + "imdb_id": "tt29473209", + "title": "After-school Hanako-kun", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48212": { + "imdb_id": "tt29473209", + "title": "After-school Hanako-kun", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47891": { + "imdb_id": "tt30325850", + "fanartLogoId": "188914", + "title": "Sengoku Youko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48690": { + "imdb_id": "tt30325850", + "fanartLogoId": "191337", + "title": "Sengoku Youko", + "fromSeason": 2, + "fromEpisode": 1 + }, + "47892": { + "imdb_id": "tt32832439", + "title": "Dahlia in Bloom: Crafting a Fresh Start with Magical Tools", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47907": { + "imdb_id": "tt30836045", + "title": "Bai she: Fu sheng" + }, + "47927": { + "imdb_id": "tt31152166", + "title": "Kizumonogatari: Koyomi Vamp" + }, + "47930": { + "imdb_id": "tt32477753", + "title": "Zegapain STA" + }, + "47936": { + "imdb_id": "tt30523856", + "title": "Ao no Miburo", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47943": { + "imdb_id": "tt29135397", + "title": "BanG Dream! Ave Mujica", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47964": { + "imdb_id": "tt31514720", + "title": "Re: Monster", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47972": { + "imdb_id": "tt30494894", + "title": "Delusional Monthly Magazine", + "fromSeason": 1, + "fromEpisode": 1 + }, + "47944": { + "imdb_id": "tt33609048", + "title": "Trillion Game", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48004": { + "imdb_id": "tt16969708", + "title": "Scott Pilgrim Takes Off", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48008": { + "imdb_id": "tt29469464", + "title": "The Diary of Ochibi-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48009": { + "imdb_id": "tt31976070", + "title": "Tadaima, Okaeri", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48010": { + "imdb_id": "tt15716776", + "title": "Devil May Cry", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48018": { + "imdb_id": "tt31474158", + "title": "Meitantei Konan Hyakuman Doru no Michishirube" + }, + "48047": { + "imdb_id": "tt29402539", + "title": "T. P. Bon", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48048": { + "imdb_id": "tt32832421", + "title": "How I Attended an All-Guy's Mixer", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48049": { + "imdb_id": "tt31975268", + "title": "One Room, Hiatari Futsuu, Tenshi-tsuki.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48059": { + "imdb_id": "tt30643971", + "title": "Saikyou Tank no Meikyuu Kouryaku: Tairyoku 9999 no Rare Skill-mochi Tank, Yuusha Party wo Tsuihou sareru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48108": { + "imdb_id": "tt29485149", + "title": "Dragon Ball Daima", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48125": { + "imdb_id": "tt29521186", + "title": "Chillin' in Another World with Level 2 Super Cheat Powers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48182": { + "imdb_id": "tt32792739", + "title": "Raise wa Tanin ga Ii", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48184": { + "imdb_id": "tt29474142", + "title": "Snack Basue", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48185": { + "imdb_id": "tt32174340", + "title": "YATAGARASU: The Raven Does Not Choose Its Master", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48186": { + "imdb_id": "tt28131643", + "title": "Dekisokonai to Yobareta Moto Eiyû wa, Jikka Kara Tsuihôsareta node Suki Katte ni Ikiru Koto ni Shita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48187": { + }, + "48196": { + "imdb_id": "tt13309742", + "title": "Blue Eye Samurai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48201": { + "imdb_id": "tt32485245", + "title": "Kisaki Kyôiku kara Nigetai Watashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48202": { + "imdb_id": "tt32395862", + "title": "Ore wa Subete o Parry Suru: Gyaku Kanchigai no Sekai Saikyô wa Bôken-sha ni Naritai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48213": { + "imdb_id": "tt32332939", + "title": "Narenare -Cheer for You!-", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48214": { + "imdb_id": "tt31146105", + "title": "The New Gate", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48217": { + "imdb_id": "tt31976012", + "title": "Vampire Dormitory", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48225": { + "imdb_id": "tt14153236", + "title": "Terminator Zero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48238": { + "imdb_id": "tt30970523", + "title": "Katsute Maho Shojo to Aku wa Tekitai Shiteita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48239": { + "imdb_id": "tt32639706", + "title": "Ao no Hako", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48256": { + "imdb_id": "tt32332884", + "title": "Ramen Akaneko", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48257": { + "imdb_id": "tt30644058", + "title": "Meitou Isekai no Yu Kaitakuki: Around 40 Onsen Mania no Tensei Saki wa, Nonbiri Onsen Tengoku deshita", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48268": { + "imdb_id": "tt29958256", + "title": "Sand Land: The Series", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48269": { + "imdb_id": "tt30217403", + "title": "Dandadan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48272": { + "imdb_id": "tt30476504", + "title": "Magilumiere Magical Girls Inc.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48275": { + "imdb_id": "tt30608459", + "title": "Wonderful Precure!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48277": { + "imdb_id": "tt31078645", + "title": "Astro Note", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48312": { + "imdb_id": "tt32332831", + "title": "Makeine: Too Many Losing Heroines!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48314": { + "imdb_id": "tt32832431", + "title": "A Terrified Teacher at Ghoul School!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48359": { + "imdb_id": "tt32332992", + "title": "A Nobody's Way Up to an Exploration Hero", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48360": { + "imdb_id": "tt30648377", + "title": "Uma Musume: Pretty Derby - Beginning of a New Era" + }, + "48361": { + "imdb_id": "tt30689448", + "title": "Welcome to Japan, Ms. Elf!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48362": { + "imdb_id": "tt33058180", + "title": "From Bureaucrat to Villainess: Dad's Been Reincarnated!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48388": { + "imdb_id": "tt31976125", + "title": "Boukyaku Battery", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48390": { + "imdb_id": "tt30236310", + "title": "A Journey Through Another World: Raising Kids While Adventuring", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48391": { + "imdb_id": "tt32178571", + "title": "Nina the Starry Bride", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48392": { + "imdb_id": "tt30495035", + "title": "Meiji Gekken: 1874", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48395": { + "imdb_id": "tt30689669", + "title": "You are Ms. Servant", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48415": { + "imdb_id": "tt30844357", + "title": "Shoshimin: How to Become Ordinary", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49201": { + "imdb_id": "tt30844357", + "title": "Shoshimin: How to Become Ordinary", + "fromSeason": 1, + "fromEpisode": 11 + }, + "48417": { + "imdb_id": "tt32832433", + "title": "Tôhai ~Ura Rêto Mâjan Tôhai Roku~", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48423": { + "imdb_id": "tt32291998", + "title": "Elf-san wa Yaserarenai.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49034": { + "imdb_id": "tt32291998", + "title": "Elf-san wa Yaserarenai.", + "fromSeason": 0, + "fromEpisode": 1 + }, + "48434": { + "imdb_id": "tt30971467", + "title": "Monogatari: Off & Monster Season", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48440": { + "imdb_id": "tt32333026", + "title": "Mao-gun Saikyou no Majutsushi wa Ningen Datta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48449": { + "imdb_id": "tt32512773", + "title": "Loner Life in Another World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48450": { + "imdb_id": "tt32469108", + "title": "Hazurewaku no [Jôtai Ijô Sukiru] de Saikyô ni Natta Ore ga Subete o Jûrin Suru Made", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48460": { + "imdb_id": "tt34715295", + "title": "The Corgi and the Samurai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48464": { + "imdb_id": "tt32158870", + "title": "Himitsu no AiPri", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49353": { + "imdb_id": "tt32158870", + "title": "Himitsu no AiPri", + "fromSeason": 2, + "fromEpisode": 1 + }, + "48466": { + "imdb_id": "tt31390266", + "title": "Tasûketsu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48467": { + "imdb_id": "tt32333015", + "title": "Mayonaka Punch", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48468": { + "imdb_id": "tt32510166", + "title": "The Healer Who Was Banished from His Party, Is, in Fact, the Strongest", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48532": { + "imdb_id": "tt34621563", + "title": "Sorairo Utility", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48533": { + "imdb_id": "tt31975855", + "title": "Viral Hit", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48534": { + "imdb_id": "tt31889371", + "title": "Tsue to Tsurugi no Wistoria", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48535": { + "imdb_id": "tt32034812", + "title": "I'm Living with an Otaku NEET Kunoichi?!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48536": { + "imdb_id": "tt32160126", + "title": "Shinkalion Change the World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48541": { + "imdb_id": "tt31711040", + "title": "Look Back" + }, + "48544": { + "imdb_id": "tt35331428", + "title": "The Shiunji Family Children", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48559": { + "imdb_id": "tt32508529", + "title": "Let This Grieving Soul Retire!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48570": { + "imdb_id": "tt32581027", + "title": "Ubel Blatt", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48575": { + "imdb_id": "tt32832412", + "title": "Anyway, I'm Falling in Love with You", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48587": { + "imdb_id": "tt31528958", + "title": "Honey Lemon Soda", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48588": { + "imdb_id": "tt32332642", + "title": "Boku no Tsuma wa Kanjo ga nai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48589": { + "imdb_id": "tt34754131", + "title": "Baban Baban Ban Vampire", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48606": { + "imdb_id": "tt32524709", + "title": "The Brilliant Healer's New Life in the Shadows", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48607": { + "imdb_id": "tt32592756", + "title": "Tensui no Sakuna-hime", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48617": { + "imdb_id": "tt31788773", + "title": "My Oni Girl" + }, + "48618": { + "imdb_id": "tt32332970", + "title": "Shikanoko Nokonoko Koshitantan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48619": { + "imdb_id": "tt32832435", + "title": "Good Bye, Dragon Life.", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48620": { + "imdb_id": "tt32524468", + "title": "I'm a Noble on the Brink of Ruin, So I Might as Well Try Mastering Magic", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48628": { + "imdb_id": "tt32856718", + "title": "Beheneko: The Elf-Girl's Cat is Secretly an S-Ranked Monster!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48631": { + "imdb_id": "tt30400535", + "title": "Raijingu Inpakuto", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48636": { + "imdb_id": "tt31142500", + "title": "Trapezium" + }, + "48638": { + "imdb_id": "tt31863730", + "title": "ZENSHU", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48640": { + "imdb_id": "tt35436997", + "title": "Mono", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48644": { + "imdb_id": "tt33614026", + "title": "Neko ni Tensei Shita Ojisan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48653": { + "imdb_id": "tt15286358", + "title": "Kurayukaba" + }, + "48654": { + "imdb_id": "tt31688642", + "title": "Kurameru Kagari" + }, + "48655": { + "imdb_id": "tt30317151", + "title": "Fureru" + }, + "48691": { + "imdb_id": "tt33384314", + "title": "Ameku M.D.: Doctor Detective", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48702": { + "imdb_id": "tt32514593", + "title": "Teogonia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48837": { + "imdb_id": "tt32501772", + "title": "The Most Notorious \"Talker\" Runs the World's Greatest Clan", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48839": { + "imdb_id": "tt35351359", + "title": "Ninja to Koroshiya no Futarigurashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48840": { + "imdb_id": "tt33310997", + "title": "Momentary Lily", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48841": { + "imdb_id": "tt33332400", + "title": "Shin Samurai-den YAIBA", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48842": { + "imdb_id": "tt33478787", + "title": "Possibly the Greatest Alchemist of All Time", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48843": { + "imdb_id": "tt36270030", + "title": "Kakushite! Makina-san!!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48857": { + "imdb_id": "tt32550272", + "title": "Kuroiwa Medaka ni Watashi no Kawaî ga Tsûjinai", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48871": { + "imdb_id": "tt33613782", + "title": "Kinokoinu: Mushroom Pup", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48891": { + "imdb_id": "tt28036831", + "title": "Ghost Cat Anzu" + }, + "48892": { + "imdb_id": "tt32420174", + "title": "Dead Dead Demons Dededede Destruction", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48927": { + "imdb_id": "tt32420174", + "title": "Dead Dead Demons Dededede Destruction", + "fromSeason": 0, + "fromEpisode": 1 + }, + "49003": { + "imdb_id": "tt32809227", + "title": "Fuuto PI: Portrait of Kamen Rider Skull" + }, + "48915": { + "imdb_id": "tt17069148", + "title": "Sakamoto Days", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48924": { + "imdb_id": "tt32508210", + "title": "Batman Ninja vs. Yakuza League" + }, + "48947": { + "imdb_id": "tt32801156", + "title": "Flower and Asura", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48952": { + "imdb_id": "tt35508195", + "title": "Guilty Gear: Strive - Dual Rulers", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48971": { + "imdb_id": "tt34621467", + "title": "Promise of Wizard", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48972": { + "imdb_id": "tt34853325", + "title": "Princession Orchestra", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48973": { + "imdb_id": "tt32579866", + "title": "Bogus Skill \"Fruitmaster\" ~About That Time I Became Able to Eat Unlimited Numbers of Skill Fruits (That Kill You)~", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48981": { + "imdb_id": "tt32766897", + "title": "Ranma 1/2", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48995": { + "imdb_id": "tt32741637", + "title": "I'm Getting Married to a Girl I Hate in My Class", + "fromSeason": 1, + "fromEpisode": 1 + }, + "48996": { + "imdb_id": "tt28596452", + "title": "Grendizer U", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49005": { + "imdb_id": "tt32779862", + "title": "Aru Majo ga Shinu Made", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49043": { + "imdb_id": "tt32903600", + "title": "0-Saiji Start Dash Monogatari", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49405": { + "imdb_id": "tt32903600", + "title": "0-Saiji Start Dash Monogatari", + "fromSeason": 2, + "fromEpisode": 1 + }, + "49054": { + "imdb_id": "tt35436553", + "title": "Rock wa Lady no Tashinamideshite", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49058": { + "imdb_id": "tt34621609", + "title": "Tasokare Hotel", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49059": { + "imdb_id": "tt34620612", + "title": "Fugoushoku (Kanteishi) ga Jitsu wa Saikyou Datta", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49060": { + "imdb_id": "tt35636200", + "title": "Classic Stars", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49063": { + "imdb_id": "tt34621291", + "title": "Magic Maker -Isekai Mahou no Tsukurikata", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49065": { + "imdb_id": "tt33021990", + "title": "Headhunted to Another World: From Salaryman to Big Four!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49066": { + "imdb_id": "tt33349897", + "title": "Kono Kaisha ni Suki na Hito ga Imasu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49068": { + "imdb_id": "tt34602994", + "title": "Binan Kouko Chikyuu Bouei-bu Eternal Love!" + }, + "49086": { + "imdb_id": "tt35301440", + "title": "Mononoke Movie 2: Hinezumi" + }, + "49088": { + "imdb_id": "tt35436364", + "title": "Please Put Them On, Takamine-san", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49092": { + "imdb_id": "tt33050528", + "title": "Gekijôban Project Sekai: Kowareta Sekai to Utaenai Miku" + }, + "49102": { + "imdb_id": "tt35636950", + "title": "Kaiju No. 8: Mission Recon" + }, + "49117": { + "imdb_id": "tt33054366", + "title": "Negative Positive Angler", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49119": { + "imdb_id": "tt35346717", + "title": "Katainaka no Ossan, Kensei ni Naru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49121": { + "imdb_id": "tt33084834", + "title": "Sentai Reddo Isekai de Bôkensha ni Naru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49124": { + "imdb_id": "tt34621652", + "title": "The Daily Life of a Middle-Aged Online Shopper in Another World", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49129": { + "imdb_id": "tt33175825", + "title": "Attack on Titan the Movie: The Last Attack" + }, + "49136": { + "imdb_id": "tt33165027", + "title": "WITCH WATCH", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49143": { + "imdb_id": "tt35437675", + "title": "Uma Musume: Cinderella Gray", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49179": { + "imdb_id": "tt33615810", + "title": "I Left My A-Rank Party to Help My Former Students Reach the Dungeon Depths!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49182": { + "imdb_id": "tt35351289", + "title": "Maebashi Witches", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49185": { + "imdb_id": "tt35437763", + "title": "Yandere Dark Elf: She Chased Me All the Way from Another World!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49193": { + "imdb_id": "tt33613789", + "title": "Lockdown Zone: Lv. X", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49283": { + "imdb_id": "tt33613789", + "title": "Lockdown Zone: Lv. X", + "fromSeason": 2, + "fromEpisode": 1 + }, + "49207": { + "imdb_id": "tt35014649", + "title": "Virgin Punk: Clockwork Girl" + }, + "49214": { + "imdb_id": "tt33458087", + "title": "Murder Mystery of the Dead", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49215": { + }, + "49220": { + "imdb_id": "tt33428606", + "title": "Solo Leveling: ReAwakening" + }, + "49233": { + "imdb_id": "tt33507588", + "title": "Senpai wa Otokonoko: Ame Nochi Hare" + }, + "49234": { + "imdb_id": "tt33498499", + "title": "Puniru wa Kawaii Slime", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49261": { + "imdb_id": "tt33568259", + "title": "Hamidashi Creative", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49277": { + "imdb_id": "tt33999377", + "title": "Kowloon Generic Romance", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49281": { + "imdb_id": "tt33992229", + "title": "One Piece Log: Fish-Man Island Saga", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49294": { + "imdb_id": "tt34119820", + "title": "Saikyô no Ôsama, Nidome no Jinsei wa Nani wo Suru?", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49298": { + "imdb_id": "tt35437319", + "title": "Kanpeki Sugite Kawaige ga Nai to Konyaku Haki Sareta Seijo wa Ringoku ni Urareru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49322": { + "imdb_id": "tt33614031", + "title": "Okaimono Panda!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49324": { + "imdb_id": "tt34623148", + "title": "KagakuxBouken Survival!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49333": { + "imdb_id": "tt34621220", + "title": "Farmagia", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49336": { + "imdb_id": "tt35994065", + "title": "Ballpark de Tsukamaete!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49360": { + "imdb_id": "tt34702901", + "title": "Anne Shirley", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49373": { + "imdb_id": "tt34818628", + "title": "The Dinner Table Detective", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49377": { + "imdb_id": "tt34852961", + "title": "Kimi to Idol Precure", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49379": { + "imdb_id": "tt35331840", + "title": "Uchuujin Muumuu", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49386": { + "imdb_id": "tt34880941", + "title": "Mobile Suit Gundam GQuuuuuuX", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49435": { + "imdb_id": "tt35636246", + "title": "My Hero Academia: Vigilantes", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49537": { + "imdb_id": "tt35636155", + "title": "Apocalypse Hotel", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49539": { + "imdb_id": "tt35444710", + "title": "Detective Conan Movie 28: One-Eyed Flashback" + }, + "49739": { + "imdb_id": "tt28197251", + "title": "Chao Neng Lifang", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49740": { + "imdb_id": "tt35014218", + "title": "Kanchigai no Atelier Meister: Eiyuu Party no Moto Zatsuyou-Gakari ga, Jitsu wa Sentou Igai ga SSS Rank Datta to Iu Yoku Aru Hanashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49742": { + "imdb_id": "tt34814625", + "title": "I'm the Evil Lord of an Intergalactic Empire!", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49757": { + "imdb_id": "tt36269978", + "title": "Hibi wa Sugiredo Meshi Umashi", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49779": { + "imdb_id": "tt36415390", + "title": "Twins Hinahima" + }, + "49819": { + "imdb_id": "tt35346410", + "title": "Everyday Host", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49821": { + "imdb_id": "tt35348180", + "title": "Gorilla no Kami Kara Kago Sareta Reijo wa Oritsu Kishdan de Kawaigareru", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49825": { + "imdb_id": "tt35346388", + "title": "#Compass 2.0 Combat Providence Analysis System", + "fromSeason": 1, + "fromEpisode": 1 + }, + "49826": { + "imdb_id": "tt35437053", + "title": "Chuuzenji-sensei Mononoke Kougiroku: Sensei ga Nazo o Toite Shimaukara", + "fromSeason": 1, + "fromEpisode": 1 + } +} \ No newline at end of file